/* ========== Base ========== */
*{
  font-family:rb !important;
}
@font-face {
  font-family: "rbbold"; /* set name */
  src: url(assets/rbbold.ttf); /* url of the font */
}
@font-face {
  font-family: "rb"; /* set name */
  src: url(assets/rb.ttf); /* url of the font */
}

:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18,18,18,.65);
  --border: rgba(18,18,18,.12);
  --shadow: 0 12px 28px rgba(18,18,18,.12);
  --radius: 16px;
  --max: 1180px;

  --primary: #111827;     /* change to Masnad brand */
  --primary-2: #0b1220;
  --accent: #2563eb;      /* change to Masnad brand */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;

  /* font-family: "rb"; */
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{color:inherit;text-decoration:none;}
a:hover{
  text-decoration:underline;
  color:#AB6953 !important;
}
img{max-width:100%;display:block;/* height: 53px; */}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

/* ========== Buttons ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:650;
  cursor:pointer;
  white-space:nowrap;
}

.btn--sm{ padding:.55rem .85rem; font-size:.9rem; }

.btn--primary{
  background: #BC8E6C;;
  color:#fff;
  box-shadow: 0 10px 18px rgba(37,99,235,.25);
}
.btn--primary:hover{ filter:brightness(.95); text-decoration:none; }

.btn--secondary{
  background: transparent;
  border-color: var(--border);
}
.btn--secondary:hover{ background: rgba(18,18,18,.04); text-decoration:none; }

.btn--ghost{
  background: transparent;
  border-color: transparent;
}
.btn--ghost:hover{ background: rgba(255,255,255,.18); text-decoration:none; }

/* ========== Topbar + Header ========== */
.topbar{
  background: #AB6953;
  /* background: #3e4c33; */
  color: rgba(255,255,255,.9);
  font-size:.92rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.55rem 0;
  gap:1rem;
  color: #edd1c5;
}
.topbar__left, .topbar__right{ display:flex; align-items:center; gap:.85rem; }
.topbar__sep{ opacity:.5; }
.topbar__link{ opacity:.9; }
.topbar__link:hover{ opacity:1; text-decoration:none; }

.header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 10px;
  gap:1rem;
  background-color: #edd1c5;
  width: 100%;
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  letter-spacing:.2px;
}
.logo__mark{
  width:34px; height:34px;
  border-radius: 10px;
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
}
.logo--footer .logo__mark{ background:#fff; color:var(--primary); }

.nav{
  display:flex;
  gap:1.1rem;
  align-items:center;
}
.nav__link{
  font-weight:600;
  color: rgba(18,18,18,.8);
  padding:.35rem .25rem;
  color: rgb(62 76 51);
}
.nav__link:hover{ color: var(--text); text-decoration:none; }

.header__actions{
  display:flex;
  gap:.6rem;
  align-items:center;
}
.icon-btn{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(18,18,18,.03); }

.menu-btn{
  display:none;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background: #3d4d33;
  cursor:pointer;
}
.menu-btn__bar{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background: rgb(237 209 197);
  border-radius: 2px;
}

/* ========== Hero ========== */
.hero{
  position:relative;
  padding: clamp(28px, 4vw, 54px) 0 64px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgb(62 76 51), rgba(0, 0, 0, .15)), url(assets/images/homepage-banner.png);
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 40px);
  align-items:start;
  color:#fff;
}

.hero__content{
  padding-top: 20px;
  max-width: 560px;
}
.hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:750;
  opacity:.9;
  margin:0 0 .65rem;
  font-size:.85rem;
}
.hero__title{
  margin:0 0 .7rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height:1.05;
}
.hero__subtitle{
  margin:0 0 1.2rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}
.hero__ctas{ display:flex; gap:.8rem; flex-wrap:wrap; }

/* Booking widget */
.booking{
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  align-self:end;
}
.booking__row{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr .85fr auto;
  gap: 10px;
  align-items:end;
}
.field{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.field__label{
  font-size:.83rem;
  color: var(--muted);
  font-weight:650;
}
.field__input{
  height: 44px;
  border-radius: 12px;
  border:1px solid var(--border);
  padding: 0 12px;
  font-size: .98rem;
  outline:none;
  background:#fff;
}
.field__input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

.booking__submit{
  height: 44px;
  border-radius: 12px;
  width: 100%;
}

.booking__meta{
  margin-top: 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  font-size:.92rem;
  color: var(--muted);
}
.check{ display:flex; align-items:center; gap:.5rem; }
.booking__link{ font-weight:650; color: rgba(17,24,39,.9); }
.booking__link:hover{ text-decoration:underline; }

/* ========== Sections ========== */
.section{ padding: 54px 0; }
.section--alt{ background: rgba(18,18,18,.03); }

.section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap: 1rem;
  margin-bottom: 18px;
}
.section__title{
  margin:0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height:1.15;
  color: #3e4c33;
}
.section__desc{
  margin:.35rem 0 0;
  color: var(--muted);
  max-width: 68ch;
}
.section__link{
  font-weight:700;
  color: #BC8E6C;
}

.masnad-stats {
  padding: 80px 0;
  background: #3e4c33; /* soft corporate background */
}

.masnad-stats__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.masnad-stats__header h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: #f8eeea;
}

.masnad-stats__header p {
  font-size: 1rem;
  color: #f8eeea;
  line-height: 1.6;
}

.masnad-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ab6953;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f8eeea;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #f8eeea;
  font-weight: 500;
}

.masnad-stats__disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9ca3af;
}
/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: #edd1c55e;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.card__media{
  height: 170px;
  background-size:cover;
  background-position:center;
}
.card__body{ padding: 16px; }
.card__title{margin:0 0 .4rem;font-size:1.1rem;color: #3e4c33;}
.card__text{ margin:0 0 .8rem; color: var(--muted); }
.card__link{font-weight:700;color: #BC8E6C;}

/* Brands grid */
.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.brand{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 92px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: .25rem;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.brand:hover{ text-decoration:none; transform: translateY(-1px); }
.brand__name{ font-weight:800; }
.brand__tag{ color: var(--muted); font-weight:650; font-size:.95rem; }

/* Promo */
.promo{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items:center;
}
.promo__actions{ display:flex; gap:.8rem; flex-wrap:wrap; margin-top: 12px; }

.promo__media{
  position:relative;
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(17,24,39,.06));
  border: 1px solid var(--border);
  overflow:hidden;
}
.phone{
  position:absolute;
  width: 220px;
  height: 320px;
  border-radius: 26px;
  border: 10px solid rgba(17,24,39,.9);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  right: 28px;
  top: 18px;
  box-shadow: var(--shadow);
}
.phone--back{
  right: 120px;
  top: 54px;
  opacity:.75;
  transform: scale(.95);
}

/* Footer */
.footer{
  background: #AB6953;
  color: rgba(255,255,255,.88);
  padding: 46px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer__title{
  margin: 0 0 .6rem;
  font-size: 1rem;
}
.footer__link{
  display:block;
  padding:.22rem 0;
  opacity:.88;
}
.footer__link:hover{ opacity:1; text-decoration:none; }
.footer__small{ margin:.9rem 0 0; opacity:.75; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .masnad-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* @media (max-width: 980px){ */
@media (max-width: 700px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .booking__row{ grid-template-columns: 1fr 1fr; }
  .booking__submit{ grid-column: 1 / -1; }
  .cards{ grid-template-columns: 1fr; }
  .brand-grid{ grid-template-columns: 1fr; }
  .promo{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .booking__row{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .masnad-stats {
    padding: 60px 0;
  }

  .masnad-stats__grid {
    grid-template-columns: 1fr;
  }
}




/* -------------------------------------Portfolio Page ------------------------------------*/




/* Page hero */
.page-hero{
  background: #BC8E6C;
  border-bottom: 1px solid rgba(18,18,18,.08);
  padding: 54px 0 34px;
}
.page-hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.page-hero__eyebrow{
  margin:0 0 8px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #3E4C33;
  font-size: .82rem;
}
.page-hero__title{
  margin:0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #3E4C33;
}
.page-hero__subtitle{
  margin:0;
  max-width: 70ch;
  color: rgba(62,76,51,.88);
  font-size: 1.05rem;
}

/* Small note card */
.note-card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 16px;
  padding: 16px;
}
.note-card__title{
  font-weight: 850;
  color: #3E4C33;
  margin-bottom: 8px;
}
.note-card__text{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

/* Toolbar */
.section--tight{ padding: 26px 0; }

.portfolio-toolbar{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.tabs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab{
  appearance:none;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.60);
  color: #3E4C33;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  cursor:pointer;
}
.tab.is-active{
  background: #3E4C33;
  color: #EDD1C5;
  border-color: rgba(62,76,51,.75);
}

.search{
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.75);
  min-width: 240px;
  outline: none;
}
.search:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Portfolio cards */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.p-card__media{
  height: 170px;
  background-size: cover;
  background-position: center;
}

.p-card__body{
  padding: 16px;
}

.p-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-card__title{
  margin:0;
  font-size: 1.08rem;
  color: #3E4C33;
  font-weight: 850;
}

.badge{
  font-size: .82rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(171,105,83,.16);
  color: #AB6953;
  border: 1px solid rgba(171,105,83,.22);
  white-space: nowrap;
}

.p-card__desc{
  margin: 0 0 14px;
  color: rgba(18,18,18,.68);
  line-height: 1.6;
}

.p-card__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 10px;
}
.kpi__v{
  display:block;
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 4px;
}
.kpi__k{
  display:block;
  font-size: .85rem;
  color: rgba(18,18,18,.60);
  font-weight: 650;
}

.p-card__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.p-link{
  font-weight: 850;
  color: #BC8E6C;
}
.p-link--muted{
  color: rgba(62,76,51,.85);
}

/* CTA card */
.p-card--cta{
  background: #3E4C33;
  color: #EDD1C5;
}
.p-card--cta .p-card__body{ padding: 22px; }
.cta-box__title{
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
}
.cta-box__text{
  margin: 0 0 14px;
  color: rgba(237,209,197,.90);
  line-height: 1.6;
}
.cta-box__fine{
  margin: 12px 0 0;
  font-size: .85rem;
  color: rgba(237,209,197,.70);
}

/* Responsive */
@media (max-width: 980px){
  .page-hero__inner{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .p-card__kpis{ grid-template-columns: 1fr; }
  .search{ width: 100%; }
}



/* ----------------------------------  Our Team Page  -------------------------------------*/


/* =========================
   Team Page (Masnad)
   Add to bottom of style.css
========================= */

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-grid--compact{
  grid-template-columns: repeat(3, 1fr);
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.avatar--soft{
  background: rgba(62,76,51,.92);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 700;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  background: rgba(171,105,83,.14);
  border: 1px solid rgba(171,105,83,.20);
  color: #AB6953;
}

.t-card__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.team-note{
  margin-top: 18px;
  color: rgba(18,18,18,.60);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .team-grid,
  .team-grid--compact{
    grid-template-columns: 1fr;
  }
  .t-card{ padding: 16px; }
}


/* ----------------------------------- About US Page -------------------------------------*/



/* =========================
   About Page (Masnad)
   Add to bottom of style.css
========================= */

.about-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-nav__link{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.about-nav__link:hover{
  background: rgba(171,105,83,.14);
  border-color: rgba(171,105,83,.22);
  color: #3E4C33;
  text-decoration:none;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:start;
}

.about-text{
  margin: 12px 0 0;
  color: rgba(18,18,18,.72);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-pills{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-panel{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.about-panel__block{
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.06);
  margin-bottom: 10px;
}

.about-panel__label{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.about-panel__value{
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.about-panel__fine{
  margin-top: 10px;
  color: rgba(18,18,18,.55);
  font-size: .92rem;
}

.about-highlights{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight{
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.04);
}

.highlight__title{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 8px;
}

.highlight__text{
  color: rgba(18,18,18,.68);
  line-height: 1.65;
}

/* Team cards (reused from team page idea, kept here) */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 750;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.team-note{
  margin-top: 16px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Governance */
.gov-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gov-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.gov-card__title{
  margin: 0 0 8px;
  color: #3E4C33;
  font-weight: 950;
}

.gov-card__text{
  margin: 0 0 10px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.gov-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(18,18,18,.68);
  line-height: 1.7;
}

.gov-committees{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
}

.committee__title{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 10px;
}

.committee__items{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gov-note{
  margin-top: 12px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-highlights{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .gov-grid{ grid-template-columns: 1fr; }
}

/* --------------------- Contact Us ------------------------  */

/* =========================
   Contact Page (Masnad)
   Add to bottom of style.css
========================= */

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.contact-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.contact-card--soft{
  background: rgba(237,209,197,.35);
}

.contact-card__head{
  margin-bottom: 12px;
}

.contact-form{
  margin-top: 8px;
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}

.c-field__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .92rem;
}

.c-field__input{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.78);
  padding: 0 12px;
  outline:none;
  font-size: 1rem;
}

.c-field__textarea{
  height: auto;
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.c-field__input:focus{
  border-color: rgba(171,105,83,.55);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.contact-actions{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.contact-fine{
  margin:0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.5;
}

/* Side column */
.contact-side{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.contact-side__title{
  margin:0 0 10px;
  color: #3E4C33;
  font-weight: 950;
}

.contact-side__text{
  margin: 0 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.contact-info{
  display:grid;
  gap: 10px;
}

.info-item{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 12px;
}

.info-item__k{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.info-item__v{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

.info-item__v a{
  color: #BC8E6C;
  font-weight: 850;
  text-decoration:none;
}

.info-item__v a:hover{
  text-decoration: underline;
}

.divider{
  height:1px;
  background: rgba(18,18,18,.10);
  margin: 14px 0;
}

/* Map placeholder */
.map-card{
  padding: 0;
  overflow:hidden;
}

.map-card__top{
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  border-bottom: 1px solid rgba(18,18,18,.08);
  background: rgba(237,209,197,.35);
}

.map-badge{
  font-weight: 900;
  color: #3E4C33;
}

.map-text{
  color: rgba(18,18,18,.60);
  font-weight: 650;
  font-size: .92rem;
}

.map-box{
  height: 220px;
  background:
    linear-gradient(135deg, rgba(62,76,51,.18), rgba(171,105,83,.12)),
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.45), transparent 40%);
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-row{
    grid-template-columns: 1fr;
  }
}


/* Contact us updated overide */


/* =========================
   Contact Form FIX (Override)
   Paste at VERY BOTTOM of style.css
========================= */

.contact-card,
.contact-card * {
  box-sizing: border-box;
}

.contact-form {
  margin-top: 14px;
}

/* Force 2-column layout on desktop */
.contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-bottom: 12px;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Make each field block + vertical */
.contact-form .c-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100%;
}

/* Label style */
.contact-form .c-field__label {
  display: block !important;
  font-weight: 850;
  color: #3E4C33;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Input / select / textarea consistent */
.contact-form .c-field__input {
  width: 100% !important;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.78);
  outline: none;
  font-size: 1rem;
  color: rgba(18,18,18,.78);
}

/* Select fixes */
.contact-form select.c-field__input {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(62,76,51,.75) 50%),
    linear-gradient(135deg, rgba(62,76,51,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* Textarea fixes */
.contact-form .c-field__textarea {
  height: auto !important;
  min-height: 160px !important;
  padding: 12px 14px !important;
  resize: vertical;
  line-height: 1.6;
}

/* Focus state matches Masnad accent */
.contact-form .c-field__input:focus {
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Checkbox row */
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 16px;
  color: rgba(18,18,18,.70);
  font-weight: 650;
  line-height: 1.4;
}

.contact-form .check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #3E4C33;
}

/* Button area */
.contact-form .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make the submit button look premium & aligned */
.contact-form .btn.btn--primary {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
}

/* Small note */
.contact-form .contact-fine {
  margin: 0;
  color: rgba(18,18,18,.58);
  font-size: 0.92rem;
  line-height: 1.5;
}



/* coming soon page  */


/* =========================
   Coming Soon Page — Masnad
   Paste at bottom of style.css
========================= */

/* ========== Base ========== */

@font-face {
  font-family: "rbbold"; /* set name */
  src: url(assets/rbbold.ttf); /* url of the font */
}
@font-face {
  font-family: "rb"; /* set name */
  src: url(assets/rb.ttf); /* url of the font */
}

:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18,18,18,.65);
  --border: rgba(18,18,18,.12);
  --shadow: 0 12px 28px rgba(18,18,18,.12);
  --radius: 16px;
  --max: 1180px;

  --primary: #111827;     /* change to Masnad brand */
  --primary-2: #0b1220;
  --accent: #2563eb;      /* change to Masnad brand */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;

  /* font-family: "rb"; */
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{color:inherit;text-decoration:none;}
a:hover{
  text-decoration:underline;
  color:#AB6953 !important;
}
img{max-width:100%;display:block;/* height: 53px; */}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

/* ========== Buttons ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:650;
  cursor:pointer;
  white-space:nowrap;
}

.btn--sm{ padding:.55rem .85rem; font-size:.9rem; }

.btn--primary{
  background: #BC8E6C;;
  color:#fff;
  box-shadow: 0 10px 18px rgba(37,99,235,.25);
}
.btn--primary:hover{ filter:brightness(.95); text-decoration:none; }

.btn--secondary{
  background: transparent;
  border-color: var(--border);
}
.btn--secondary:hover{ background: rgba(18,18,18,.04); text-decoration:none; }

.btn--ghost{
  background: transparent;
  border-color: transparent;
}
.btn--ghost:hover{ background: rgba(255,255,255,.18); text-decoration:none; }

/* ========== Topbar + Header ========== */
.topbar{
  background: #AB6953;
  /* background: #3e4c33; */
  color: rgba(255,255,255,.9);
  font-size:.92rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.55rem 0;
  gap:1rem;
  color: #edd1c5;
}
.topbar__left, .topbar__right{ display:flex; align-items:center; gap:.85rem; }
.topbar__sep{ opacity:.5; }
.topbar__link{ opacity:.9; }
.topbar__link:hover{ opacity:1; text-decoration:none; }

.header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 10px;
  gap:1rem;
  background-color: #edd1c5;
  width: 100%;
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  letter-spacing:.2px;
}
.logo__mark{
  width:34px; height:34px;
  border-radius: 10px;
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
}
.logo--footer .logo__mark{ background:#fff; color:var(--primary); }

.nav{
  display:flex;
  gap:1.1rem;
  align-items:center;
}
.nav__link{
  font-weight:600;
  color: rgba(18,18,18,.8);
  padding:.35rem .25rem;
  color: rgb(62 76 51);
}
.nav__link:hover{ color: var(--text); text-decoration:none; }

.header__actions{
  display:flex;
  gap:.6rem;
  align-items:center;
}
.icon-btn{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(18,18,18,.03); }

.menu-btn{
  display:none;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background: #3d4d33;
  cursor:pointer;
}
.menu-btn__bar{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background: rgb(237 209 197);
  border-radius: 2px;
}

/* ========== Hero ========== */
.hero{
  position:relative;
  padding: clamp(28px, 4vw, 54px) 0 64px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgb(62 76 51), rgba(0, 0, 0, .15)), url(assets/images/homepage-banner.png);
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 40px);
  align-items:start;
  color:#fff;
}

.hero__content{
  padding-top: 20px;
  max-width: 560px;
}
.hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:750;
  opacity:.9;
  margin:0 0 .65rem;
  font-size:.85rem;
}
.hero__title{
  margin:0 0 .7rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height:1.05;
}
.hero__subtitle{
  margin:0 0 1.2rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}
.hero__ctas{ display:flex; gap:.8rem; flex-wrap:wrap; }

/* Booking widget */
.booking{
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  align-self:end;
}
.booking__row{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr .85fr auto;
  gap: 10px;
  align-items:end;
}
.field{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.field__label{
  font-size:.83rem;
  color: var(--muted);
  font-weight:650;
}
.field__input{
  height: 44px;
  border-radius: 12px;
  border:1px solid var(--border);
  padding: 0 12px;
  font-size: .98rem;
  outline:none;
  background:#fff;
}
.field__input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

.booking__submit{
  height: 44px;
  border-radius: 12px;
  width: 100%;
}

.booking__meta{
  margin-top: 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  font-size:.92rem;
  color: var(--muted);
}
.check{ display:flex; align-items:center; gap:.5rem; }
.booking__link{ font-weight:650; color: rgba(17,24,39,.9); }
.booking__link:hover{ text-decoration:underline; }

/* ========== Sections ========== */
.section{ padding: 54px 0; }
.section--alt{ background: rgba(18,18,18,.03); }

.section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap: 1rem;
  margin-bottom: 18px;
}
.section__title{
  margin:0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height:1.15;
  color: #3e4c33;
}
.section__desc{
  margin:.35rem 0 0;
  color: var(--muted);
  max-width: 68ch;
}
.section__link{
  font-weight:700;
  color: #BC8E6C;
}

.masnad-stats {
  padding: 80px 0;
  background: #3e4c33; /* soft corporate background */
}

.masnad-stats__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.masnad-stats__header h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: #f8eeea;
}

.masnad-stats__header p {
  font-size: 1rem;
  color: #f8eeea;
  line-height: 1.6;
}

.masnad-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ab6953;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f8eeea;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #f8eeea;
  font-weight: 500;
}

.masnad-stats__disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9ca3af;
}
/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: #edd1c55e;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.card__media{
  height: 170px;
  background-size:cover;
  background-position:center;
}
.card__body{ padding: 16px; }
.card__title{margin:0 0 .4rem;font-size:1.1rem;color: #3e4c33;}
.card__text{ margin:0 0 .8rem; color: var(--muted); }
.card__link{font-weight:700;color: #BC8E6C;}

/* Brands grid */
.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.brand{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 92px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: .25rem;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.brand:hover{ text-decoration:none; transform: translateY(-1px); }
.brand__name{ font-weight:800; }
.brand__tag{ color: var(--muted); font-weight:650; font-size:.95rem; }

/* Promo */
.promo{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items:center;
}
.promo__actions{ display:flex; gap:.8rem; flex-wrap:wrap; margin-top: 12px; }

.promo__media{
  position:relative;
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(17,24,39,.06));
  border: 1px solid var(--border);
  overflow:hidden;
}
.phone{
  position:absolute;
  width: 220px;
  height: 320px;
  border-radius: 26px;
  border: 10px solid rgba(17,24,39,.9);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  right: 28px;
  top: 18px;
  box-shadow: var(--shadow);
}
.phone--back{
  right: 120px;
  top: 54px;
  opacity:.75;
  transform: scale(.95);
}

/* Footer */
.footer{
  background: #AB6953;
  color: rgba(255,255,255,.88);
  padding: 46px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer__title{
  margin: 0 0 .6rem;
  font-size: 1rem;
}
.footer__link{
  display:block;
  padding:.22rem 0;
  opacity:.88;
}
.footer__link:hover{ opacity:1; text-decoration:none; }
.footer__small{ margin:.9rem 0 0; opacity:.75; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .masnad-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* @media (max-width: 980px){ */
@media (max-width: 700px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .booking__row{ grid-template-columns: 1fr 1fr; }
  .booking__submit{ grid-column: 1 / -1; }
  .cards{ grid-template-columns: 1fr; }
  .brand-grid{ grid-template-columns: 1fr; }
  .promo{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .booking__row{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .masnad-stats {
    padding: 60px 0;
  }

  .masnad-stats__grid {
    grid-template-columns: 1fr;
  }
}




/* -------------------------------------Portfolio Page ------------------------------------*/




/* Page hero */
.page-hero{
  background: #BC8E6C;
  border-bottom: 1px solid rgba(18,18,18,.08);
  padding: 54px 0 34px;
}
.page-hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.page-hero__eyebrow{
  margin:0 0 8px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #edd1c5;
  font-size: .82rem;
}
.page-hero__title{
  margin:0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #ffffff;
}
.page-hero__subtitle{
  margin:0;
  max-width: 70ch;
  color: rgb(255 255 255);
  font-size: 1.05rem;
}

/* Small note card */
.note-card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 16px;
  padding: 16px;
}
.note-card__title{
  font-weight: 850;
  color: #3E4C33;
  margin-bottom: 8px;
}
.note-card__text{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

/* Toolbar */
.section--tight{ padding: 26px 0; }

.portfolio-toolbar{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.tabs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab{
  appearance:none;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.60);
  color: #3E4C33;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  cursor:pointer;
}
.tab.is-active{
  background: #3E4C33;
  color: #EDD1C5;
  border-color: rgba(62,76,51,.75);
}

.search{
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.75);
  min-width: 240px;
  outline: none;
}
.search:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Portfolio cards */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.p-card__media{
  height: 170px;
  background-size: cover;
  background-position: center;
}

.p-card__body{
  padding: 16px;
}

.p-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-card__title{
  margin:0;
  font-size: 1.08rem;
  color: #3E4C33;
  font-weight: 850;
}

.badge{
  font-size: .82rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(171,105,83,.16);
  color: #AB6953;
  border: 1px solid rgba(171,105,83,.22);
  white-space: nowrap;
}

.p-card__desc{
  margin: 0 0 14px;
  color: rgba(18,18,18,.68);
  line-height: 1.6;
}

.p-card__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 10px;
}
.kpi__v{
  display:block;
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 4px;
}
.kpi__k{
  display:block;
  font-size: .85rem;
  color: rgba(18,18,18,.60);
  font-weight: 650;
}

.p-card__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.p-link{
  font-weight: 850;
  color: #BC8E6C;
}
.p-link--muted{
  color: rgba(62,76,51,.85);
}

/* CTA card */
.p-card--cta{
  background: #3E4C33;
  color: #EDD1C5;
}
.p-card--cta .p-card__body{ padding: 22px; }
.cta-box__title{
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
}
.cta-box__text{
  margin: 0 0 14px;
  color: rgba(237,209,197,.90);
  line-height: 1.6;
}
.cta-box__fine{
  margin: 12px 0 0;
  font-size: .85rem;
  color: rgba(237,209,197,.70);
}

/* Responsive */
@media (max-width: 980px){
  .page-hero__inner{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .p-card__kpis{ grid-template-columns: 1fr; }
  .search{ width: 100%; }
}



/* ----------------------------------  Our Team Page  -------------------------------------*/


/* =========================
   Team Page (Masnad)
   Add to bottom of style.css
========================= */

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-grid--compact{
  grid-template-columns: repeat(3, 1fr);
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.avatar--soft{
  background: rgba(62,76,51,.92);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 700;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  background: rgba(171,105,83,.14);
  border: 1px solid rgba(171,105,83,.20);
  color: #AB6953;
}

.t-card__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.team-note{
  margin-top: 18px;
  color: rgba(18,18,18,.60);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .team-grid,
  .team-grid--compact{
    grid-template-columns: 1fr;
  }
  .t-card{ padding: 16px; }
}


/* ----------------------------------- About US Page -------------------------------------*/



/* =========================
   About Page (Masnad)
   Add to bottom of style.css
========================= */

.about-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-nav__link{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.about-nav__link:hover{
  background: rgba(171,105,83,.14);
  border-color: rgba(171,105,83,.22);
  color: #3E4C33;
  text-decoration:none;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:start;
}

.about-text{
  margin: 12px 0 0;
  color: rgba(18,18,18,.72);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-pills{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-panel{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.about-panel__block{
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.06);
  margin-bottom: 10px;
}

.about-panel__label{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.about-panel__value{
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.about-panel__fine{
  margin-top: 10px;
  color: rgba(18,18,18,.55);
  font-size: .92rem;
}

.about-highlights{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight{
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.04);
}

.highlight__title{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 8px;
}

.highlight__text{
  color: rgba(18,18,18,.68);
  line-height: 1.65;
}

/* Team cards (reused from team page idea, kept here) */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 750;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.team-note{
  margin-top: 16px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Governance */
.gov-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gov-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.gov-card__title{
  margin: 0 0 8px;
  color: #3E4C33;
  font-weight: 950;
}

.gov-card__text{
  margin: 0 0 10px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.gov-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(18,18,18,.68);
  line-height: 1.7;
}

.gov-committees{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
}

.committee__title{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 10px;
}

.committee__items{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gov-note{
  margin-top: 12px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-highlights{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .gov-grid{ grid-template-columns: 1fr; }
}

/* --------------------- Contact Us ------------------------  */

/* =========================
   Contact Page (Masnad)
   Add to bottom of style.css
========================= */

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.contact-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.contact-card--soft{
  background: rgba(237,209,197,.35);
}

.contact-card__head{
  margin-bottom: 12px;
}

.contact-form{
  margin-top: 8px;
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}

.c-field__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .92rem;
}

.c-field__input{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.78);
  padding: 0 12px;
  outline:none;
  font-size: 1rem;
}

.c-field__textarea{
  height: auto;
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.c-field__input:focus{
  border-color: rgba(171,105,83,.55);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.contact-actions{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.contact-fine{
  margin:0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.5;
}

/* Side column */
.contact-side{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.contact-side__title{
  margin:0 0 10px;
  color: #3E4C33;
  font-weight: 950;
}

.contact-side__text{
  margin: 0 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.contact-info{
  display:grid;
  gap: 10px;
}

.info-item{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 12px;
}

.info-item__k{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.info-item__v{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

.info-item__v a{
  color: #BC8E6C;
  font-weight: 850;
  text-decoration:none;
}

.info-item__v a:hover{
  text-decoration: underline;
}

.divider{
  height:1px;
  background: rgba(18,18,18,.10);
  margin: 14px 0;
}

/* Map placeholder */
.map-card{
  padding: 0;
  overflow:hidden;
}

.map-card__top{
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  border-bottom: 1px solid rgba(18,18,18,.08);
  background: rgba(237,209,197,.35);
}

.map-badge{
  font-weight: 900;
  color: #3E4C33;
}

.map-text{
  color: rgba(18,18,18,.60);
  font-weight: 650;
  font-size: .92rem;
}

.map-box{
  height: 220px;
  background:
    linear-gradient(135deg, rgba(62,76,51,.18), rgba(171,105,83,.12)),
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.45), transparent 40%);
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-row{
    grid-template-columns: 1fr;
  }
}


/* Contact us updated overide */


/* =========================
   Contact Form FIX (Override)
   Paste at VERY BOTTOM of style.css
========================= */

.contact-card,
.contact-card * {
  box-sizing: border-box;
}

.contact-form {
  margin-top: 14px;
}

/* Force 2-column layout on desktop */
.contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-bottom: 12px;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Make each field block + vertical */
.contact-form .c-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100%;
}

/* Label style */
.contact-form .c-field__label {
  display: block !important;
  font-weight: 850;
  color: #3E4C33;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Input / select / textarea consistent */
.contact-form .c-field__input {
  width: 100% !important;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.78);
  outline: none;
  font-size: 1rem;
  color: rgba(18,18,18,.78);
}

/* Select fixes */
.contact-form select.c-field__input {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(62,76,51,.75) 50%),
    linear-gradient(135deg, rgba(62,76,51,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* Textarea fixes */
.contact-form .c-field__textarea {
  height: auto !important;
  min-height: 160px !important;
  padding: 12px 14px !important;
  resize: vertical;
  line-height: 1.6;
}

/* Focus state matches Masnad accent */
.contact-form .c-field__input:focus {
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Checkbox row */
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 16px;
  color: rgba(18,18,18,.70);
  font-weight: 650;
  line-height: 1.4;
}

.contact-form .check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #3E4C33;
}

/* Button area */
.contact-form .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make the submit button look premium & aligned */
.contact-form .btn.btn--primary {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
}

/* Small note */
.contact-form .contact-fine {
  margin: 0;
  color: rgba(18,18,18,.58);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ------------------------------------------ Latest News Page ---------------------------*/
/* =========================
   Latest News Page — Masnad
   Paste at bottom of style.css
========================= */

.news-head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.news-head__right{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.news-pill{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
}

.news-pill--soft{
  background: rgba(171,105,83,.12);
  border-color: rgba(171,105,83,.20);
  color: #AB6953;
}

.news-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.news-card{
  display:block;
  text-decoration:none;
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 16px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.news-card:hover{
  transform: translateY(-2px);
  border-color: rgba(171,105,83,.26);
  box-shadow: 0 14px 24px rgba(18,18,18,.08);
}

.news-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.news-source{
  font-weight: 900;
  color: #3E4C33;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: .85rem;
}

.news-time{
  color: rgba(18,18,18,.55);
  font-weight: 800;
  font-size: .85rem;
}

.news-title{
  color: rgba(18,18,18,.80);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 10px;
}

.news-link{
  color: #BC8E6C;
  font-weight: 900;
}

.news-empty{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  padding: 18px;
  color: rgba(18,18,18,.70);
}

.news-footnote{
  margin-top: 14px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px){
  .news-grid{ grid-template-columns: 1fr; }
}


/* coming soon page  */


/* =========================
   Coming Soon Page — Masnad
   Paste at bottom of style.css
========================= */

.coming-page{
  background: #faf1ee45;
}

.coming{
  min-height: 100vh;
  display: grid;
  place-items: center;
  /* padding: 28px 16px; */
  /* background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 82% 75%, rgba(255,255,255,.35), transparent 42%),
    linear-gradient(180deg, rgba(62,76,51,.06), rgba(171,105,83,.04)); */
}

.coming__shell{
  width: min(1040px, 100%);
  /* border-radius: 26px; */
  border: 3px solid #414e35;
  background: rgb(237 209 197);
  box-shadow: 0 18px 40px rgba(18,18,18,.08);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

/* subtle brand corner accent */
.coming__shell::before{
  content:"";
  position:absolute;
  inset: -40% -30% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(62,76,51,.18), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(171,105,83,.16), transparent 55%);
  transform: rotate(18deg);
  pointer-events: none;
}

.coming__top{
  display: block;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  position: relative;
}

.coming__logo{
  height: 120px;
  margin: 30px auto;
  width: auto;
  display:block;
}

.coming__meta{
  display:flex;
  gap: 10px;
  align-items:center;
}

.coming__pill{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(237,209,197,.55);
  border: 1px solid rgba(18,18,18,.10);
}

.coming__lang{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-weight: 900;
  color: #3E4C33;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.coming__lang:hover{
  background: rgba(171,105,83,.14);
}

.coming__content{
  padding: 00 18px;
  /* position: relative; */
}

.coming__title{
  text-align: center;
  margin: 20px;
  color: #edd1c5;
  font-weight: 950;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
}

.coming__subtitle{
  margin: 20px auto 22px;
  color: rgb(237 209 197);
  line-height: 1.7;
  max-width: 70ch;
  font-size: 1.05rem;
}

.coming__card{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 22px rgba(18,18,18,.06);
  max-width: 620px;
  margin: auto;
}

.coming__card-head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.coming__card-title{
  font-weight: 950;
  color: #3E4C33;
}

.coming__card-note{
  color: rgba(18,18,18,.55);
  font-weight: 700;
  font-size: .92rem;
}

.coming__form{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items:end;
}

.coming__field{
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.coming__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .95rem;
}

.coming__input{
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.85);
  padding: 0 14px;
  outline: none;
  font-size: 1rem;
}

.coming__input:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.coming__btn{
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(18,18,18,.12);
  background: #3E4C33;
  color: #EDD1C5;
  font-weight: 900;
  cursor:pointer;
  white-space: nowrap;
}
.coming__btn:hover{
  filter: brightness(1.03);
}

.coming__fine{
  margin: 12px 0 0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.55;
}

.coming__info{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 820px;
}

.coming__info-item{
  background: rgba(237,209,197,.45);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 14px;
}

.coming__k{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 8px;
}

.coming__v{
  color: rgba(18,18,18,.68);
  font-weight: 700;
}

.coming__v a{
  color: #BC8E6C;
  text-decoration:none;
  font-weight: 900;
}
.coming__v a:hover{ text-decoration: underline; }

.coming__footer{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(18,18,18,.10);
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.coming__footer-left{
  color: rgba(18,18,18,.62);
  font-weight: 700;
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
}

.coming__dot{
  opacity: .7;
}

.coming__footer-link{
  color: rgba(18,18,18,.62);
  text-decoration:none;
  font-weight: 800;
}
.coming__footer-link:hover{
  color: #3E4C33;
  text-decoration: underline;
}

.coming__footer-right{
  display:flex;
  gap: 12px;
  align-items:center;
}

.coming__social{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  color: #3E4C33;
  font-weight: 900;
  text-decoration:none;
}
.coming__social:hover{
  background: rgba(171,105,83,.14);
}

/* Responsive */
@media (max-width: 860px){
  .coming__shell{ padding: 18px; }
  .coming__info{ grid-template-columns: 1fr; }
  .coming__form{ grid-template-columns: 1fr; }
  .coming__btn{ width: 100%; }
}


/* New Coming Soon Page */


/* =========================
   Coming Soon (Map Layout)
   Masnad palette:
   #3E4C33 #EDD1C5 #BC8E6C #AB6953
========================= */

/* =========================
   Masnad Coming Soon Page
========================= */



/* ========== Base ========== */
*{
  font-family:rb !important;
}
@font-face {
  font-family: "rbbold"; /* set name */
  src: url(assets/rbbold.ttf); /* url of the font */
}
@font-face {
  font-family: "rb"; /* set name */
  src: url(assets/rb.ttf); /* url of the font */
}

:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18,18,18,.65);
  --border: rgba(18,18,18,.12);
  --shadow: 0 12px 28px rgba(18,18,18,.12);
  --radius: 16px;
  --max: 1180px;

  --primary: #111827;     /* change to Masnad brand */
  --primary-2: #0b1220;
  --accent: #2563eb;      /* change to Masnad brand */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;

  /* font-family: "rb"; */
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{color:inherit;text-decoration:none;}
a:hover{
  text-decoration:underline;
  color:#AB6953 !important;
}
img{max-width:100%;display:block;/* height: 53px; */}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

/* ========== Buttons ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:650;
  cursor:pointer;
  white-space:nowrap;
}

.btn--sm{ padding:.55rem .85rem; font-size:.9rem; }

.btn--primary{
  background: #BC8E6C;;
  color:#fff;
  box-shadow: 0 10px 18px rgba(37,99,235,.25);
}
.btn--primary:hover{ filter:brightness(.95); text-decoration:none; }

.btn--secondary{
  background: transparent;
  border-color: var(--border);
}
.btn--secondary:hover{ background: rgba(18,18,18,.04); text-decoration:none; }

.btn--ghost{
  background: transparent;
  border-color: transparent;
}
.btn--ghost:hover{ background: rgba(255,255,255,.18); text-decoration:none; }

/* ========== Topbar + Header ========== */
.topbar{
  background: #AB6953;
  /* background: #3e4c33; */
  color: rgba(255,255,255,.9);
  font-size:.92rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.55rem 0;
  gap:1rem;
  color: #edd1c5;
}
.topbar__left, .topbar__right{ display:flex; align-items:center; gap:.85rem; }
.topbar__sep{ opacity:.5; }
.topbar__link{ opacity:.9; }
.topbar__link:hover{ opacity:1; text-decoration:none; }

.header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 10px;
  gap:1rem;
  background-color: #edd1c5;
  width: 100%;
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  letter-spacing:.2px;
}
.logo__mark{
  width:34px; height:34px;
  border-radius: 10px;
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
}
.logo--footer .logo__mark{ background:#fff; color:var(--primary); }

.nav{
  display:flex;
  gap:1.1rem;
  align-items:center;
}
.nav__link{
  font-weight:600;
  color: rgba(18,18,18,.8);
  padding:.35rem .25rem;
  color: rgb(62 76 51);
}
.nav__link:hover{ color: var(--text); text-decoration:none; }

.header__actions{
  display:flex;
  gap:.6rem;
  align-items:center;
}
.icon-btn{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(18,18,18,.03); }

.menu-btn{
  display:none;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background: #3d4d33;
  cursor:pointer;
}
.menu-btn__bar{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background: rgb(237 209 197);
  border-radius: 2px;
}

/* ========== Hero ========== */
.hero{
  position:relative;
  padding: clamp(28px, 4vw, 54px) 0 64px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgb(62 76 51), rgba(0, 0, 0, .15)), url(assets/images/homepage-banner.png);
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 40px);
  align-items:start;
  color:#fff;
}

.hero__content{
  padding-top: 20px;
  max-width: 560px;
}
.hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:750;
  opacity:.9;
  margin:0 0 .65rem;
  font-size:.85rem;
}
.hero__title{
  margin:0 0 .7rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height:1.05;
}
.hero__subtitle{
  margin:0 0 1.2rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}
.hero__ctas{ display:flex; gap:.8rem; flex-wrap:wrap; }

/* Booking widget */
.booking{
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  align-self:end;
}
.booking__row{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr .85fr auto;
  gap: 10px;
  align-items:end;
}
.field{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.field__label{
  font-size:.83rem;
  color: var(--muted);
  font-weight:650;
}
.field__input{
  height: 44px;
  border-radius: 12px;
  border:1px solid var(--border);
  padding: 0 12px;
  font-size: .98rem;
  outline:none;
  background:#fff;
}
.field__input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

.booking__submit{
  height: 44px;
  border-radius: 12px;
  width: 100%;
}

.booking__meta{
  margin-top: 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  font-size:.92rem;
  color: var(--muted);
}
.check{ display:flex; align-items:center; gap:.5rem; }
.booking__link{ font-weight:650; color: rgba(17,24,39,.9); }
.booking__link:hover{ text-decoration:underline; }

/* ========== Sections ========== */
.section{ padding: 54px 0; }
.section--alt{ background: rgba(18,18,18,.03); }

.section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap: 1rem;
  margin-bottom: 18px;
}
.section__title{
  margin:0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height:1.15;
  color: #3e4c33;
}
.section__desc{
  margin:.35rem 0 0;
  color: var(--muted);
  max-width: 68ch;
}
.section__link{
  font-weight:700;
  color: #BC8E6C;
}

.masnad-stats {
  padding: 80px 0;
  background: #3e4c33; /* soft corporate background */
}

.masnad-stats__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.masnad-stats__header h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: #f8eeea;
}

.masnad-stats__header p {
  font-size: 1rem;
  color: #f8eeea;
  line-height: 1.6;
}

.masnad-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ab6953;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f8eeea;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #f8eeea;
  font-weight: 500;
}

.masnad-stats__disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9ca3af;
}
/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: #edd1c55e;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.card__media{
  height: 170px;
  background-size:cover;
  background-position:center;
}
.card__body{ padding: 16px; }
.card__title{margin:0 0 .4rem;font-size:1.1rem;color: #3e4c33;}
.card__text{ margin:0 0 .8rem; color: var(--muted); }
.card__link{font-weight:700;color: #BC8E6C;}

/* Brands grid */
.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.brand{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 92px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: .25rem;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.brand:hover{ text-decoration:none; transform: translateY(-1px); }
.brand__name{ font-weight:800; }
.brand__tag{ color: var(--muted); font-weight:650; font-size:.95rem; }

/* Promo */
.promo{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items:center;
}
.promo__actions{ display:flex; gap:.8rem; flex-wrap:wrap; margin-top: 12px; }

.promo__media{
  position:relative;
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(17,24,39,.06));
  border: 1px solid var(--border);
  overflow:hidden;
}
.phone{
  position:absolute;
  width: 220px;
  height: 320px;
  border-radius: 26px;
  border: 10px solid rgba(17,24,39,.9);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  right: 28px;
  top: 18px;
  box-shadow: var(--shadow);
}
.phone--back{
  right: 120px;
  top: 54px;
  opacity:.75;
  transform: scale(.95);
}

/* Footer */
.footer{
  background: #AB6953;
  color: rgba(255,255,255,.88);
  padding: 46px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer__title{
  margin: 0 0 .6rem;
  font-size: 1rem;
}
.footer__link{
  display:block;
  padding:.22rem 0;
  opacity:.88;
}
.footer__link:hover{ opacity:1; text-decoration:none; }
.footer__small{ margin:.9rem 0 0; opacity:.75; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .masnad-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* @media (max-width: 980px){ */
@media (max-width: 700px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .booking__row{ grid-template-columns: 1fr 1fr; }
  .booking__submit{ grid-column: 1 / -1; }
  .cards{ grid-template-columns: 1fr; }
  .brand-grid{ grid-template-columns: 1fr; }
  .promo{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .booking__row{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .masnad-stats {
    padding: 60px 0;
  }

  .masnad-stats__grid {
    grid-template-columns: 1fr;
  }
}




/* -------------------------------------Portfolio Page ------------------------------------*/




/* Page hero */
.page-hero{
  background: #BC8E6C;
  border-bottom: 1px solid rgba(18,18,18,.08);
  padding: 54px 0 34px;
}
.page-hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.page-hero__eyebrow{
  margin:0 0 8px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #3E4C33;
  font-size: .82rem;
}
.page-hero__title{
  margin:0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #3E4C33;
}
.page-hero__subtitle{
  margin:0;
  max-width: 70ch;
  color: rgba(62,76,51,.88);
  font-size: 1.05rem;
}

/* Small note card */
.note-card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 16px;
  padding: 16px;
}
.note-card__title{
  font-weight: 850;
  color: #3E4C33;
  margin-bottom: 8px;
}
.note-card__text{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

/* Toolbar */
.section--tight{ padding: 26px 0; }

.portfolio-toolbar{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.tabs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab{
  appearance:none;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.60);
  color: #3E4C33;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  cursor:pointer;
}
.tab.is-active{
  background: #3E4C33;
  color: #EDD1C5;
  border-color: rgba(62,76,51,.75);
}

.search{
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.75);
  min-width: 240px;
  outline: none;
}
.search:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Portfolio cards */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.p-card__media{
  height: 170px;
  background-size: cover;
  background-position: center;
}

.p-card__body{
  padding: 16px;
}

.p-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-card__title{
  margin:0;
  font-size: 1.08rem;
  color: #3E4C33;
  font-weight: 850;
}

.badge{
  font-size: .82rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(171,105,83,.16);
  color: #AB6953;
  border: 1px solid rgba(171,105,83,.22);
  white-space: nowrap;
}

.p-card__desc{
  margin: 0 0 14px;
  color: rgba(18,18,18,.68);
  line-height: 1.6;
}

.p-card__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 10px;
}
.kpi__v{
  display:block;
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 4px;
}
.kpi__k{
  display:block;
  font-size: .85rem;
  color: rgba(18,18,18,.60);
  font-weight: 650;
}

.p-card__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.p-link{
  font-weight: 850;
  color: #BC8E6C;
}
.p-link--muted{
  color: rgba(62,76,51,.85);
}

/* CTA card */
.p-card--cta{
  background: #3E4C33;
  color: #EDD1C5;
}
.p-card--cta .p-card__body{ padding: 22px; }
.cta-box__title{
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
}
.cta-box__text{
  margin: 0 0 14px;
  color: rgba(237,209,197,.90);
  line-height: 1.6;
}
.cta-box__fine{
  margin: 12px 0 0;
  font-size: .85rem;
  color: rgba(237,209,197,.70);
}

/* Responsive */
@media (max-width: 980px){
  .page-hero__inner{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .p-card__kpis{ grid-template-columns: 1fr; }
  .search{ width: 100%; }
}



/* ----------------------------------  Our Team Page  -------------------------------------*/


/* =========================
   Team Page (Masnad)
   Add to bottom of style.css
========================= */

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-grid--compact{
  grid-template-columns: repeat(3, 1fr);
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.avatar--soft{
  background: rgba(62,76,51,.92);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 700;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  background: rgba(171,105,83,.14);
  border: 1px solid rgba(171,105,83,.20);
  color: #AB6953;
}

.t-card__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.team-note{
  margin-top: 18px;
  color: rgba(18,18,18,.60);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .team-grid,
  .team-grid--compact{
    grid-template-columns: 1fr;
  }
  .t-card{ padding: 16px; }
}


/* ----------------------------------- About US Page -------------------------------------*/



/* =========================
   About Page (Masnad)
   Add to bottom of style.css
========================= */

.about-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-nav__link{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.about-nav__link:hover{
  background: rgba(171,105,83,.14);
  border-color: rgba(171,105,83,.22);
  color: #3E4C33;
  text-decoration:none;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:start;
}

.about-text{
  margin: 12px 0 0;
  color: rgba(18,18,18,.72);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-pills{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-panel{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.about-panel__block{
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.06);
  margin-bottom: 10px;
}

.about-panel__label{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.about-panel__value{
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.about-panel__fine{
  margin-top: 10px;
  color: rgba(18,18,18,.55);
  font-size: .92rem;
}

.about-highlights{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight{
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.04);
}

.highlight__title{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 8px;
}

.highlight__text{
  color: rgba(18,18,18,.68);
  line-height: 1.65;
}

/* Team cards (reused from team page idea, kept here) */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 750;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.team-note{
  margin-top: 16px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Governance */
.gov-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gov-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.gov-card__title{
  margin: 0 0 8px;
  color: #3E4C33;
  font-weight: 950;
}

.gov-card__text{
  margin: 0 0 10px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.gov-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(18,18,18,.68);
  line-height: 1.7;
}

.gov-committees{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
}

.committee__title{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 10px;
}

.committee__items{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gov-note{
  margin-top: 12px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-highlights{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .gov-grid{ grid-template-columns: 1fr; }
}

/* --------------------- Contact Us ------------------------  */

/* =========================
   Contact Page (Masnad)
   Add to bottom of style.css
========================= */

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.contact-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.contact-card--soft{
  background: rgba(237,209,197,.35);
}

.contact-card__head{
  margin-bottom: 12px;
}

.contact-form{
  margin-top: 8px;
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}

.c-field__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .92rem;
}

.c-field__input{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.78);
  padding: 0 12px;
  outline:none;
  font-size: 1rem;
}

.c-field__textarea{
  height: auto;
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.c-field__input:focus{
  border-color: rgba(171,105,83,.55);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.contact-actions{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.contact-fine{
  margin:0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.5;
}

/* Side column */
.contact-side{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.contact-side__title{
  margin:0 0 10px;
  color: #3E4C33;
  font-weight: 950;
}

.contact-side__text{
  margin: 0 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.contact-info{
  display:grid;
  gap: 10px;
}

.info-item{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 12px;
}

.info-item__k{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.info-item__v{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

.info-item__v a{
  color: #BC8E6C;
  font-weight: 850;
  text-decoration:none;
}

.info-item__v a:hover{
  text-decoration: underline;
}

.divider{
  height:1px;
  background: rgba(18,18,18,.10);
  margin: 14px 0;
}

/* Map placeholder */
.map-card{
  padding: 0;
  overflow:hidden;
}

.map-card__top{
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  border-bottom: 1px solid rgba(18,18,18,.08);
  background: rgba(237,209,197,.35);
}

.map-badge{
  font-weight: 900;
  color: #3E4C33;
}

.map-text{
  color: rgba(18,18,18,.60);
  font-weight: 650;
  font-size: .92rem;
}

.map-box{
  height: 220px;
  background:
    linear-gradient(135deg, rgba(62,76,51,.18), rgba(171,105,83,.12)),
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.45), transparent 40%);
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-row{
    grid-template-columns: 1fr;
  }
}


/* Contact us updated overide */


/* =========================
   Contact Form FIX (Override)
   Paste at VERY BOTTOM of style.css
========================= */

.contact-card,
.contact-card * {
  box-sizing: border-box;
}

.contact-form {
  margin-top: 14px;
}

/* Force 2-column layout on desktop */
.contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-bottom: 12px;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Make each field block + vertical */
.contact-form .c-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100%;
}

/* Label style */
.contact-form .c-field__label {
  display: block !important;
  font-weight: 850;
  color: #3E4C33;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Input / select / textarea consistent */
.contact-form .c-field__input {
  width: 100% !important;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.78);
  outline: none;
  font-size: 1rem;
  color: rgba(18,18,18,.78);
}

/* Select fixes */
.contact-form select.c-field__input {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(62,76,51,.75) 50%),
    linear-gradient(135deg, rgba(62,76,51,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* Textarea fixes */
.contact-form .c-field__textarea {
  height: auto !important;
  min-height: 160px !important;
  padding: 12px 14px !important;
  resize: vertical;
  line-height: 1.6;
}

/* Focus state matches Masnad accent */
.contact-form .c-field__input:focus {
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Checkbox row */
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 16px;
  color: rgba(18,18,18,.70);
  font-weight: 650;
  line-height: 1.4;
}

.contact-form .check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #3E4C33;
}

/* Button area */
.contact-form .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make the submit button look premium & aligned */
.contact-form .btn.btn--primary {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
}

/* Small note */
.contact-form .contact-fine {
  margin: 0;
  color: rgba(18,18,18,.58);
  font-size: 0.92rem;
  line-height: 1.5;
}



/* coming soon page  */


/* =========================
   Coming Soon Page — Masnad
   Paste at bottom of style.css
========================= */

/* ========== Base ========== */

@font-face {
  font-family: "rbbold"; /* set name */
  src: url(assets/rbbold.ttf); /* url of the font */
}
@font-face {
  font-family: "rb"; /* set name */
  src: url(assets/rb.ttf); /* url of the font */
}

:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18,18,18,.65);
  --border: rgba(18,18,18,.12);
  --shadow: 0 12px 28px rgba(18,18,18,.12);
  --radius: 16px;
  --max: 1180px;

  --primary: #111827;     /* change to Masnad brand */
  --primary-2: #0b1220;
  --accent: #2563eb;      /* change to Masnad brand */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;

  /* font-family: "rb"; */
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{color:inherit;text-decoration:none;}
a:hover{
  text-decoration:underline;
  color:#AB6953 !important;
}
img{max-width:100%;display:block;/* height: 53px; */}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

/* ========== Buttons ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:650;
  cursor:pointer;
  white-space:nowrap;
}

.btn--sm{ padding:.55rem .85rem; font-size:.9rem; }

.btn--primary{
  background: #BC8E6C;;
  color:#fff;
  box-shadow: 0 10px 18px rgba(37,99,235,.25);
}
.btn--primary:hover{ filter:brightness(.95); text-decoration:none; }

.btn--secondary{
  background: transparent;
  border-color: var(--border);
}
.btn--secondary:hover{ background: rgba(18,18,18,.04); text-decoration:none; }

.btn--ghost{
  background: transparent;
  border-color: transparent;
}
.btn--ghost:hover{ background: rgba(255,255,255,.18); text-decoration:none; }

/* ========== Topbar + Header ========== */
.topbar{
  background: #AB6953;
  /* background: #3e4c33; */
  color: rgba(255,255,255,.9);
  font-size:.92rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.55rem 0;
  gap:1rem;
  color: #edd1c5;
}
.topbar__left, .topbar__right{ display:flex; align-items:center; gap:.85rem; }
.topbar__sep{ opacity:.5; }
.topbar__link{ opacity:.9; }
.topbar__link:hover{ opacity:1; text-decoration:none; }

.header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 10px;
  gap:1rem;
  background-color: #edd1c5;
  width: 100%;
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  letter-spacing:.2px;
}
.logo__mark{
  width:34px; height:34px;
  border-radius: 10px;
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
}
.logo--footer .logo__mark{ background:#fff; color:var(--primary); }

.nav{
  display:flex;
  gap:1.1rem;
  align-items:center;
}
.nav__link{
  font-weight:600;
  color: rgba(18,18,18,.8);
  padding:.35rem .25rem;
  color: rgb(62 76 51);
}
.nav__link:hover{ color: var(--text); text-decoration:none; }

.header__actions{
  display:flex;
  gap:.6rem;
  align-items:center;
}
.icon-btn{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(18,18,18,.03); }

.menu-btn{
  display:none;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background: #3d4d33;
  cursor:pointer;
}
.menu-btn__bar{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background: rgb(237 209 197);
  border-radius: 2px;
}

/* ========== Hero ========== */
.hero{
  position:relative;
  padding: clamp(28px, 4vw, 54px) 0 64px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgb(62 76 51), rgba(0, 0, 0, .15)), url(assets/images/homepage-banner.png);
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 40px);
  align-items:start;
  color:#fff;
}

.hero__content{
  padding-top: 20px;
  max-width: 560px;
}
.hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:750;
  opacity:.9;
  margin:0 0 .65rem;
  font-size:.85rem;
}
.hero__title{
  margin:0 0 .7rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height:1.05;
}
.hero__subtitle{
  margin:0 0 1.2rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}
.hero__ctas{ display:flex; gap:.8rem; flex-wrap:wrap; }

/* Booking widget */
.booking{
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  align-self:end;
}
.booking__row{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr .85fr auto;
  gap: 10px;
  align-items:end;
}
.field{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.field__label{
  font-size:.83rem;
  color: var(--muted);
  font-weight:650;
}
.field__input{
  height: 44px;
  border-radius: 12px;
  border:1px solid var(--border);
  padding: 0 12px;
  font-size: .98rem;
  outline:none;
  background:#fff;
}
.field__input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

.booking__submit{
  height: 44px;
  border-radius: 12px;
  width: 100%;
}

.booking__meta{
  margin-top: 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  font-size:.92rem;
  color: var(--muted);
}
.check{ display:flex; align-items:center; gap:.5rem; }
.booking__link{ font-weight:650; color: rgba(17,24,39,.9); }
.booking__link:hover{ text-decoration:underline; }

/* ========== Sections ========== */
.section{ padding: 54px 0; }
.section--alt{ background: rgba(18,18,18,.03); }

.section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap: 1rem;
  margin-bottom: 18px;
}
.section__title{
  margin:0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height:1.15;
  color: #3e4c33;
}
.section__desc{
  margin:.35rem 0 0;
  color: var(--muted);
  max-width: 68ch;
}
.section__link{
  font-weight:700;
  color: #BC8E6C;
}

.masnad-stats {
  padding: 80px 0;
  background: #3e4c33; /* soft corporate background */
}

.masnad-stats__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.masnad-stats__header h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: #f8eeea;
}

.masnad-stats__header p {
  font-size: 1rem;
  color: #f8eeea;
  line-height: 1.6;
}

.masnad-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ab6953;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f8eeea;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #f8eeea;
  font-weight: 500;
}

.masnad-stats__disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9ca3af;
}
/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: #edd1c55e;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.card__media{
  height: 170px;
  background-size:cover;
  background-position:center;
}
.card__body{ padding: 16px; }
.card__title{margin:0 0 .4rem;font-size:1.1rem;color: #3e4c33;}
.card__text{ margin:0 0 .8rem; color: var(--muted); }
.card__link{font-weight:700;color: #BC8E6C;}

/* Brands grid */
.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.brand{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 92px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: .25rem;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.brand:hover{ text-decoration:none; transform: translateY(-1px); }
.brand__name{ font-weight:800; }
.brand__tag{ color: var(--muted); font-weight:650; font-size:.95rem; }

/* Promo */
.promo{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items:center;
}
.promo__actions{ display:flex; gap:.8rem; flex-wrap:wrap; margin-top: 12px; }

.promo__media{
  position:relative;
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(17,24,39,.06));
  border: 1px solid var(--border);
  overflow:hidden;
}
.phone{
  position:absolute;
  width: 220px;
  height: 320px;
  border-radius: 26px;
  border: 10px solid rgba(17,24,39,.9);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  right: 28px;
  top: 18px;
  box-shadow: var(--shadow);
}
.phone--back{
  right: 120px;
  top: 54px;
  opacity:.75;
  transform: scale(.95);
}

/* Footer */
.footer{
  background: #AB6953;
  color: rgba(255,255,255,.88);
  padding: 46px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer__title{
  margin: 0 0 .6rem;
  font-size: 1rem;
}
.footer__link{
  display:block;
  padding:.22rem 0;
  opacity:.88;
}
.footer__link:hover{ opacity:1; text-decoration:none; }
.footer__small{ margin:.9rem 0 0; opacity:.75; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .masnad-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* @media (max-width: 980px){ */
@media (max-width: 700px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .booking__row{ grid-template-columns: 1fr 1fr; }
  .booking__submit{ grid-column: 1 / -1; }
  .cards{ grid-template-columns: 1fr; }
  .brand-grid{ grid-template-columns: 1fr; }
  .promo{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .booking__row{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .masnad-stats {
    padding: 60px 0;
  }

  .masnad-stats__grid {
    grid-template-columns: 1fr;
  }
}




/* -------------------------------------Portfolio Page ------------------------------------*/




/* Page hero */
.page-hero{
  background: #BC8E6C;
  border-bottom: 1px solid rgba(18,18,18,.08);
  padding: 54px 0 34px;
}
.page-hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.page-hero__eyebrow{
  margin:0 0 8px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #edd1c5;
  font-size: .82rem;
}
.page-hero__title{
  margin:0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #ffffff;
}
.page-hero__subtitle{
  margin:0;
  max-width: 70ch;
  color: rgb(255 255 255);
  font-size: 1.05rem;
}

/* Small note card */
.note-card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 16px;
  padding: 16px;
}
.note-card__title{
  font-weight: 850;
  color: #3E4C33;
  margin-bottom: 8px;
}
.note-card__text{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

/* Toolbar */
.section--tight{ padding: 26px 0; }

.portfolio-toolbar{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.tabs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab{
  appearance:none;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.60);
  color: #3E4C33;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  cursor:pointer;
}
.tab.is-active{
  background: #3E4C33;
  color: #EDD1C5;
  border-color: rgba(62,76,51,.75);
}

.search{
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.75);
  min-width: 240px;
  outline: none;
}
.search:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Portfolio cards */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.p-card__media{
  height: 170px;
  background-size: cover;
  background-position: center;
}

.p-card__body{
  padding: 16px;
}

.p-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-card__title{
  margin:0;
  font-size: 1.08rem;
  color: #3E4C33;
  font-weight: 850;
}

.badge{
  font-size: .82rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(171,105,83,.16);
  color: #AB6953;
  border: 1px solid rgba(171,105,83,.22);
  white-space: nowrap;
}

.p-card__desc{
  margin: 0 0 14px;
  color: rgba(18,18,18,.68);
  line-height: 1.6;
}

.p-card__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 10px;
}
.kpi__v{
  display:block;
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 4px;
}
.kpi__k{
  display:block;
  font-size: .85rem;
  color: rgba(18,18,18,.60);
  font-weight: 650;
}

.p-card__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.p-link{
  font-weight: 850;
  color: #BC8E6C;
}
.p-link--muted{
  color: rgba(62,76,51,.85);
}

/* CTA card */
.p-card--cta{
  background: #3E4C33;
  color: #EDD1C5;
}
.p-card--cta .p-card__body{ padding: 22px; }
.cta-box__title{
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
}
.cta-box__text{
  margin: 0 0 14px;
  color: rgba(237,209,197,.90);
  line-height: 1.6;
}
.cta-box__fine{
  margin: 12px 0 0;
  font-size: .85rem;
  color: rgba(237,209,197,.70);
}

/* Responsive */
@media (max-width: 980px){
  .page-hero__inner{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .p-card__kpis{ grid-template-columns: 1fr; }
  .search{ width: 100%; }
}



/* ----------------------------------  Our Team Page  -------------------------------------*/


/* =========================
   Team Page (Masnad)
   Add to bottom of style.css
========================= */

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-grid--compact{
  grid-template-columns: repeat(3, 1fr);
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.avatar--soft{
  background: rgba(62,76,51,.92);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 700;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  background: rgba(171,105,83,.14);
  border: 1px solid rgba(171,105,83,.20);
  color: #AB6953;
}

.t-card__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.team-note{
  margin-top: 18px;
  color: rgba(18,18,18,.60);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .team-grid,
  .team-grid--compact{
    grid-template-columns: 1fr;
  }
  .t-card{ padding: 16px; }
}


/* ----------------------------------- About US Page -------------------------------------*/



/* =========================
   About Page (Masnad)
   Add to bottom of style.css
========================= */

.about-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-nav__link{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.about-nav__link:hover{
  background: rgba(171,105,83,.14);
  border-color: rgba(171,105,83,.22);
  color: #3E4C33;
  text-decoration:none;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:start;
}

.about-text{
  margin: 12px 0 0;
  color: rgba(18,18,18,.72);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-pills{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-panel{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.about-panel__block{
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.06);
  margin-bottom: 10px;
}

.about-panel__label{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.about-panel__value{
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.about-panel__fine{
  margin-top: 10px;
  color: rgba(18,18,18,.55);
  font-size: .92rem;
}

.about-highlights{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight{
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.04);
}

.highlight__title{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 8px;
}

.highlight__text{
  color: rgba(18,18,18,.68);
  line-height: 1.65;
}

/* Team cards (reused from team page idea, kept here) */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 750;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.team-note{
  margin-top: 16px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Governance */
.gov-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gov-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.gov-card__title{
  margin: 0 0 8px;
  color: #3E4C33;
  font-weight: 950;
}

.gov-card__text{
  margin: 0 0 10px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.gov-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(18,18,18,.68);
  line-height: 1.7;
}

.gov-committees{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
}

.committee__title{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 10px;
}

.committee__items{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gov-note{
  margin-top: 12px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-highlights{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .gov-grid{ grid-template-columns: 1fr; }
}

/* --------------------- Contact Us ------------------------  */

/* =========================
   Contact Page (Masnad)
   Add to bottom of style.css
========================= */

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.contact-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.contact-card--soft{
  background: rgba(237,209,197,.35);
}

.contact-card__head{
  margin-bottom: 12px;
}

.contact-form{
  margin-top: 8px;
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}

.c-field__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .92rem;
}

.c-field__input{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.78);
  padding: 0 12px;
  outline:none;
  font-size: 1rem;
}

.c-field__textarea{
  height: auto;
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.c-field__input:focus{
  border-color: rgba(171,105,83,.55);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.contact-actions{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.contact-fine{
  margin:0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.5;
}

/* Side column */
.contact-side{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.contact-side__title{
  margin:0 0 10px;
  color: #3E4C33;
  font-weight: 950;
}

.contact-side__text{
  margin: 0 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.contact-info{
  display:grid;
  gap: 10px;
}

.info-item{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 12px;
}

.info-item__k{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.info-item__v{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

.info-item__v a{
  color: #BC8E6C;
  font-weight: 850;
  text-decoration:none;
}

.info-item__v a:hover{
  text-decoration: underline;
}

.divider{
  height:1px;
  background: rgba(18,18,18,.10);
  margin: 14px 0;
}

/* Map placeholder */
.map-card{
  padding: 0;
  overflow:hidden;
}

.map-card__top{
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  border-bottom: 1px solid rgba(18,18,18,.08);
  background: rgba(237,209,197,.35);
}

.map-badge{
  font-weight: 900;
  color: #3E4C33;
}

.map-text{
  color: rgba(18,18,18,.60);
  font-weight: 650;
  font-size: .92rem;
}

.map-box{
  height: 220px;
  background:
    linear-gradient(135deg, rgba(62,76,51,.18), rgba(171,105,83,.12)),
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.45), transparent 40%);
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-row{
    grid-template-columns: 1fr;
  }
}


/* Contact us updated overide */


/* =========================
   Contact Form FIX (Override)
   Paste at VERY BOTTOM of style.css
========================= */

.contact-card,
.contact-card * {
  box-sizing: border-box;
}

.contact-form {
  margin-top: 14px;
}

/* Force 2-column layout on desktop */
.contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-bottom: 12px;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Make each field block + vertical */
.contact-form .c-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100%;
}

/* Label style */
.contact-form .c-field__label {
  display: block !important;
  font-weight: 850;
  color: #3E4C33;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Input / select / textarea consistent */
.contact-form .c-field__input {
  width: 100% !important;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.78);
  outline: none;
  font-size: 1rem;
  color: rgba(18,18,18,.78);
}

/* Select fixes */
.contact-form select.c-field__input {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(62,76,51,.75) 50%),
    linear-gradient(135deg, rgba(62,76,51,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* Textarea fixes */
.contact-form .c-field__textarea {
  height: auto !important;
  min-height: 160px !important;
  padding: 12px 14px !important;
  resize: vertical;
  line-height: 1.6;
}

/* Focus state matches Masnad accent */
.contact-form .c-field__input:focus {
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Checkbox row */
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 16px;
  color: rgba(18,18,18,.70);
  font-weight: 650;
  line-height: 1.4;
}

.contact-form .check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #3E4C33;
}

/* Button area */
.contact-form .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make the submit button look premium & aligned */
.contact-form .btn.btn--primary {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
}

/* Small note */
.contact-form .contact-fine {
  margin: 0;
  color: rgba(18,18,18,.58);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ------------------------------------------ Latest News Page ---------------------------*/
/* =========================
   Latest News Page — Masnad
   Paste at bottom of style.css
========================= */

.news-head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.news-head__right{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.news-pill{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
}

.news-pill--soft{
  background: rgba(171,105,83,.12);
  border-color: rgba(171,105,83,.20);
  color: #AB6953;
}

.news-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.news-card{
  display:block;
  text-decoration:none;
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 16px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.news-card:hover{
  transform: translateY(-2px);
  border-color: rgba(171,105,83,.26);
  box-shadow: 0 14px 24px rgba(18,18,18,.08);
}

.news-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.news-source{
  font-weight: 900;
  color: #3E4C33;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: .85rem;
}

.news-time{
  color: rgba(18,18,18,.55);
  font-weight: 800;
  font-size: .85rem;
}

.news-title{
  color: rgba(18,18,18,.80);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 10px;
}

.news-link{
  color: #BC8E6C;
  font-weight: 900;
}

.news-empty{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  padding: 18px;
  color: rgba(18,18,18,.70);
}

.news-footnote{
  margin-top: 14px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px){
  .news-grid{ grid-template-columns: 1fr; }
}


/* coming soon page  */


/* =========================
   Coming Soon Page — Masnad
   Paste at bottom of style.css
========================= */

.coming-page{
  background: #faf1ee45;
}

.coming{
  min-height: 100vh;
  display: grid;
  place-items: center;
  /* padding: 28px 16px; */
  /* background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 82% 75%, rgba(255,255,255,.35), transparent 42%),
    linear-gradient(180deg, rgba(62,76,51,.06), rgba(171,105,83,.04)); */
}

.coming__shell{
  width: min(1040px, 100%);
  /* border-radius: 26px; */
  border: 3px solid #414e35;
  background: rgb(237 209 197);
  box-shadow: 0 18px 40px rgba(18,18,18,.08);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

/* subtle brand corner accent */
.coming__shell::before{
  content:"";
  position:absolute;
  inset: -40% -30% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(62,76,51,.18), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(171,105,83,.16), transparent 55%);
  transform: rotate(18deg);
  pointer-events: none;
}

.coming__top{
  display: block;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  position: relative;
}

.coming__logo{
  height: 120px;
  margin: 30px auto;
  width: auto;
  display:block;
}

.coming__meta{
  display:flex;
  gap: 10px;
  align-items:center;
}

.coming__pill{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(237,209,197,.55);
  border: 1px solid rgba(18,18,18,.10);
}

.coming__lang{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-weight: 900;
  color: #3E4C33;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.coming__lang:hover{
  background: rgba(171,105,83,.14);
}

.coming__content{
  padding: 00 18px;
  /* position: relative; */
}

.coming__title{
  text-align: center;
  margin: 20px;
  color: #edd1c5;
  font-weight: 950;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
}

.coming__subtitle{
  margin: 20px auto 22px;
  color: rgb(237 209 197);
  line-height: 1.7;
  max-width: 70ch;
  font-size: 1.05rem;
}

.coming__card{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 22px rgba(18,18,18,.06);
  max-width: 620px;
  margin: auto;
}

.coming__card-head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.coming__card-title{
  font-weight: 950;
  color: #3E4C33;
}

.coming__card-note{
  color: rgba(18,18,18,.55);
  font-weight: 700;
  font-size: .92rem;
}

.coming__form{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items:end;
}

.coming__field{
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.coming__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .95rem;
}

.coming__input{
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.85);
  padding: 0 14px;
  outline: none;
  font-size: 1rem;
}

.coming__input:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.coming__btn{
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(18,18,18,.12);
  background: #3E4C33;
  color: #EDD1C5;
  font-weight: 900;
  cursor:pointer;
  white-space: nowrap;
}
.coming__btn:hover{
  filter: brightness(1.03);
}

.coming__fine{
  margin: 12px 0 0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.55;
}

.coming__info{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 820px;
}

.coming__info-item{
  background: rgba(237,209,197,.45);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 14px;
}

.coming__k{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 8px;
}

.coming__v{
  color: rgba(18,18,18,.68);
  font-weight: 700;
}

.coming__v a{
  color: #BC8E6C;
  text-decoration:none;
  font-weight: 900;
}
.coming__v a:hover{ text-decoration: underline; }

.coming__footer{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(18,18,18,.10);
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.coming__footer-left{
  color: rgba(18,18,18,.62);
  font-weight: 700;
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
}

.coming__dot{
  opacity: .7;
}

.coming__footer-link{
  color: rgba(18,18,18,.62);
  text-decoration:none;
  font-weight: 800;
}
.coming__footer-link:hover{
  color: #3E4C33;
  text-decoration: underline;
}

.coming__footer-right{
  display:flex;
  gap: 12px;
  align-items:center;
}

.coming__social{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  color: #3E4C33;
  font-weight: 900;
  text-decoration:none;
}
.coming__social:hover{
  background: rgba(171,105,83,.14);
}

/* Responsive */
@media (max-width: 860px){
  .coming__shell{ padding: 18px; }
  .coming__info{ grid-template-columns: 1fr; }
  .coming__form{ grid-template-columns: 1fr; }
  .coming__btn{ width: 100%; }
}


/* New Coming Soon Page */


/* =========================
   Coming Soon (Map Layout)
   Masnad palette:
   #3E4C33 #EDD1C5 #BC8E6C #AB6953
========================= */

/* =========================
   Masnad Coming Soon Page
========================= */
/* ========== Base ========== */
*{
  font-family:rb !important;
}
@font-face {
  font-family: "rbbold"; /* set name */
  src: url(assets/rbbold.ttf); /* url of the font */
}
@font-face {
  font-family: "rb"; /* set name */
  src: url(assets/rb.ttf); /* url of the font */
}

:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18,18,18,.65);
  --border: rgba(18,18,18,.12);
  --shadow: 0 12px 28px rgba(18,18,18,.12);
  --radius: 16px;
  --max: 1180px;

  --primary: #111827;     /* change to Masnad brand */
  --primary-2: #0b1220;
  --accent: #2563eb;      /* change to Masnad brand */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;

  /* font-family: "rb"; */
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{color:inherit;text-decoration:none;}
a:hover{
  text-decoration:underline;
  color:#AB6953 !important;
}
img{max-width:100%;display:block;/* height: 53px; */}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

/* ========== Buttons ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:650;
  cursor:pointer;
  white-space:nowrap;
}

.btn--sm{ padding:.55rem .85rem; font-size:.9rem; }

.btn--primary{
  background: #BC8E6C;;
  color:#fff;
  box-shadow: 0 10px 18px rgba(37,99,235,.25);
}
.btn--primary:hover{ filter:brightness(.95); text-decoration:none; }

.btn--secondary{
  background: transparent;
  border-color: var(--border);
}
.btn--secondary:hover{ background: rgba(18,18,18,.04); text-decoration:none; }

.btn--ghost{
  background: transparent;
  border-color: transparent;
}
.btn--ghost:hover{ background: rgba(255,255,255,.18); text-decoration:none; }

/* ========== Topbar + Header ========== */
.topbar{
  background: #AB6953;
  /* background: #3e4c33; */
  color: rgba(255,255,255,.9);
  font-size:.92rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.55rem 0;
  gap:1rem;
  color: #edd1c5;
}
.topbar__left, .topbar__right{ display:flex; align-items:center; gap:.85rem; }
.topbar__sep{ opacity:.5; }
.topbar__link{ opacity:.9; }
.topbar__link:hover{ opacity:1; text-decoration:none; }

.header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 10px;
  gap:1rem;
  background-color: #edd1c5;
  width: 100%;
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  letter-spacing:.2px;
}
.logo__mark{
  width:34px; height:34px;
  border-radius: 10px;
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
}
.logo--footer .logo__mark{ background:#fff; color:var(--primary); }

.nav{
  display:flex;
  gap:1.1rem;
  align-items:center;
}
.nav__link{
  font-weight:600;
  color: rgba(18,18,18,.8);
  padding:.35rem .25rem;
  color: rgb(62 76 51);
}
.nav__link:hover{ color: var(--text); text-decoration:none; }

.header__actions{
  display:flex;
  gap:.6rem;
  align-items:center;
}
.icon-btn{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(18,18,18,.03); }

.menu-btn{
  display:none;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background: #3d4d33;
  cursor:pointer;
}
.menu-btn__bar{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background: rgb(237 209 197);
  border-radius: 2px;
}

/* ========== Hero ========== */
.hero{
  position:relative;
  padding: clamp(28px, 4vw, 54px) 0 64px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgb(62 76 51), rgba(0, 0, 0, .15)), url(assets/images/homepage-banner.png);
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 40px);
  align-items:start;
  color:#fff;
}

.hero__content{
  padding-top: 20px;
  max-width: 560px;
}
.hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:750;
  opacity:.9;
  margin:0 0 .65rem;
  font-size:.85rem;
}
.hero__title{
  margin:0 0 .7rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height:1.05;
}
.hero__subtitle{
  margin:0 0 1.2rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}
.hero__ctas{ display:flex; gap:.8rem; flex-wrap:wrap; }

/* Booking widget */
.booking{
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  align-self:end;
}
.booking__row{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr .85fr auto;
  gap: 10px;
  align-items:end;
}
.field{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.field__label{
  font-size:.83rem;
  color: var(--muted);
  font-weight:650;
}
.field__input{
  height: 44px;
  border-radius: 12px;
  border:1px solid var(--border);
  padding: 0 12px;
  font-size: .98rem;
  outline:none;
  background:#fff;
}
.field__input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

.booking__submit{
  height: 44px;
  border-radius: 12px;
  width: 100%;
}

.booking__meta{
  margin-top: 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  font-size:.92rem;
  color: var(--muted);
}
.check{ display:flex; align-items:center; gap:.5rem; }
.booking__link{ font-weight:650; color: rgba(17,24,39,.9); }
.booking__link:hover{ text-decoration:underline; }

/* ========== Sections ========== */
.section{ padding: 54px 0; }
.section--alt{ background: rgba(18,18,18,.03); }

.section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap: 1rem;
  margin-bottom: 18px;
}
.section__title{
  margin:0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height:1.15;
  color: #3e4c33;
}
.section__desc{
  margin:.35rem 0 0;
  color: var(--muted);
  max-width: 68ch;
}
.section__link{
  font-weight:700;
  color: #BC8E6C;
}

.masnad-stats {
  padding: 80px 0;
  background: #3e4c33; /* soft corporate background */
}

.masnad-stats__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.masnad-stats__header h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: #f8eeea;
}

.masnad-stats__header p {
  font-size: 1rem;
  color: #f8eeea;
  line-height: 1.6;
}

.masnad-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ab6953;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f8eeea;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #f8eeea;
  font-weight: 500;
}

.masnad-stats__disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9ca3af;
}
/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: #edd1c55e;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.card__media{
  height: 170px;
  background-size:cover;
  background-position:center;
}
.card__body{ padding: 16px; }
.card__title{margin:0 0 .4rem;font-size:1.1rem;color: #3e4c33;}
.card__text{ margin:0 0 .8rem; color: var(--muted); }
.card__link{font-weight:700;color: #BC8E6C;}

/* Brands grid */
.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.brand{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 92px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: .25rem;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.brand:hover{ text-decoration:none; transform: translateY(-1px); }
.brand__name{ font-weight:800; }
.brand__tag{ color: var(--muted); font-weight:650; font-size:.95rem; }

/* Promo */
.promo{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items:center;
}
.promo__actions{ display:flex; gap:.8rem; flex-wrap:wrap; margin-top: 12px; }

.promo__media{
  position:relative;
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(17,24,39,.06));
  border: 1px solid var(--border);
  overflow:hidden;
}
.phone{
  position:absolute;
  width: 220px;
  height: 320px;
  border-radius: 26px;
  border: 10px solid rgba(17,24,39,.9);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  right: 28px;
  top: 18px;
  box-shadow: var(--shadow);
}
.phone--back{
  right: 120px;
  top: 54px;
  opacity:.75;
  transform: scale(.95);
}

/* Footer */
.footer{
  background: #AB6953;
  color: rgba(255,255,255,.88);
  padding: 46px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer__title{
  margin: 0 0 .6rem;
  font-size: 1rem;
}
.footer__link{
  display:block;
  padding:.22rem 0;
  opacity:.88;
}
.footer__link:hover{ opacity:1; text-decoration:none; }
.footer__small{ margin:.9rem 0 0; opacity:.75; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .masnad-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* @media (max-width: 980px){ */
@media (max-width: 700px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .booking__row{ grid-template-columns: 1fr 1fr; }
  .booking__submit{ grid-column: 1 / -1; }
  .cards{ grid-template-columns: 1fr; }
  .brand-grid{ grid-template-columns: 1fr; }
  .promo{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .booking__row{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .masnad-stats {
    padding: 60px 0;
  }

  .masnad-stats__grid {
    grid-template-columns: 1fr;
  }
}




/* -------------------------------------Portfolio Page ------------------------------------*/




/* Page hero */
.page-hero{
  background: #BC8E6C;
  border-bottom: 1px solid rgba(18,18,18,.08);
  padding: 54px 0 34px;
}
.page-hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.page-hero__eyebrow{
  margin:0 0 8px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #3E4C33;
  font-size: .82rem;
}
.page-hero__title{
  margin:0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #3E4C33;
}
.page-hero__subtitle{
  margin:0;
  max-width: 70ch;
  color: rgba(62,76,51,.88);
  font-size: 1.05rem;
}

/* Small note card */
.note-card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 16px;
  padding: 16px;
}
.note-card__title{
  font-weight: 850;
  color: #3E4C33;
  margin-bottom: 8px;
}
.note-card__text{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

/* Toolbar */
.section--tight{ padding: 26px 0; }

.portfolio-toolbar{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.tabs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab{
  appearance:none;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.60);
  color: #3E4C33;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  cursor:pointer;
}
.tab.is-active{
  background: #3E4C33;
  color: #EDD1C5;
  border-color: rgba(62,76,51,.75);
}

.search{
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.75);
  min-width: 240px;
  outline: none;
}
.search:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Portfolio cards */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.p-card__media{
  height: 170px;
  background-size: cover;
  background-position: center;
}

.p-card__body{
  padding: 16px;
}

.p-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-card__title{
  margin:0;
  font-size: 1.08rem;
  color: #3E4C33;
  font-weight: 850;
}

.badge{
  font-size: .82rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(171,105,83,.16);
  color: #AB6953;
  border: 1px solid rgba(171,105,83,.22);
  white-space: nowrap;
}

.p-card__desc{
  margin: 0 0 14px;
  color: rgba(18,18,18,.68);
  line-height: 1.6;
}

.p-card__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 10px;
}
.kpi__v{
  display:block;
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 4px;
}
.kpi__k{
  display:block;
  font-size: .85rem;
  color: rgba(18,18,18,.60);
  font-weight: 650;
}

.p-card__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.p-link{
  font-weight: 850;
  color: #BC8E6C;
}
.p-link--muted{
  color: rgba(62,76,51,.85);
}

/* CTA card */
.p-card--cta{
  background: #3E4C33;
  color: #EDD1C5;
}
.p-card--cta .p-card__body{ padding: 22px; }
.cta-box__title{
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
}
.cta-box__text{
  margin: 0 0 14px;
  color: rgba(237,209,197,.90);
  line-height: 1.6;
}
.cta-box__fine{
  margin: 12px 0 0;
  font-size: .85rem;
  color: rgba(237,209,197,.70);
}

/* Responsive */
@media (max-width: 980px){
  .page-hero__inner{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .p-card__kpis{ grid-template-columns: 1fr; }
  .search{ width: 100%; }
}



/* ----------------------------------  Our Team Page  -------------------------------------*/


/* =========================
   Team Page (Masnad)
   Add to bottom of style.css
========================= */

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-grid--compact{
  grid-template-columns: repeat(3, 1fr);
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.avatar--soft{
  background: rgba(62,76,51,.92);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 700;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  background: rgba(171,105,83,.14);
  border: 1px solid rgba(171,105,83,.20);
  color: #AB6953;
}

.t-card__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.team-note{
  margin-top: 18px;
  color: rgba(18,18,18,.60);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .team-grid,
  .team-grid--compact{
    grid-template-columns: 1fr;
  }
  .t-card{ padding: 16px; }
}


/* ----------------------------------- About US Page -------------------------------------*/



/* =========================
   About Page (Masnad)
   Add to bottom of style.css
========================= */

.about-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-nav__link{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.about-nav__link:hover{
  background: rgba(171,105,83,.14);
  border-color: rgba(171,105,83,.22);
  color: #3E4C33;
  text-decoration:none;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:start;
}

.about-text{
  margin: 12px 0 0;
  color: rgba(18,18,18,.72);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-pills{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-panel{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.about-panel__block{
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.06);
  margin-bottom: 10px;
}

.about-panel__label{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.about-panel__value{
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.about-panel__fine{
  margin-top: 10px;
  color: rgba(18,18,18,.55);
  font-size: .92rem;
}

.about-highlights{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight{
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.04);
}

.highlight__title{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 8px;
}

.highlight__text{
  color: rgba(18,18,18,.68);
  line-height: 1.65;
}

/* Team cards (reused from team page idea, kept here) */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 750;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.team-note{
  margin-top: 16px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Governance */
.gov-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gov-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.gov-card__title{
  margin: 0 0 8px;
  color: #3E4C33;
  font-weight: 950;
}

.gov-card__text{
  margin: 0 0 10px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.gov-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(18,18,18,.68);
  line-height: 1.7;
}

.gov-committees{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
}

.committee__title{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 10px;
}

.committee__items{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gov-note{
  margin-top: 12px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-highlights{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .gov-grid{ grid-template-columns: 1fr; }
}

/* --------------------- Contact Us ------------------------  */

/* =========================
   Contact Page (Masnad)
   Add to bottom of style.css
========================= */

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.contact-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.contact-card--soft{
  background: rgba(237,209,197,.35);
}

.contact-card__head{
  margin-bottom: 12px;
}

.contact-form{
  margin-top: 8px;
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}

.c-field__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .92rem;
}

.c-field__input{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.78);
  padding: 0 12px;
  outline:none;
  font-size: 1rem;
}

.c-field__textarea{
  height: auto;
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.c-field__input:focus{
  border-color: rgba(171,105,83,.55);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.contact-actions{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.contact-fine{
  margin:0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.5;
}

/* Side column */
.contact-side{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.contact-side__title{
  margin:0 0 10px;
  color: #3E4C33;
  font-weight: 950;
}

.contact-side__text{
  margin: 0 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.contact-info{
  display:grid;
  gap: 10px;
}

.info-item{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 12px;
}

.info-item__k{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.info-item__v{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

.info-item__v a{
  color: #BC8E6C;
  font-weight: 850;
  text-decoration:none;
}

.info-item__v a:hover{
  text-decoration: underline;
}

.divider{
  height:1px;
  background: rgba(18,18,18,.10);
  margin: 14px 0;
}

/* Map placeholder */
.map-card{
  padding: 0;
  overflow:hidden;
}

.map-card__top{
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  border-bottom: 1px solid rgba(18,18,18,.08);
  background: rgba(237,209,197,.35);
}

.map-badge{
  font-weight: 900;
  color: #3E4C33;
}

.map-text{
  color: rgba(18,18,18,.60);
  font-weight: 650;
  font-size: .92rem;
}

.map-box{
  height: 220px;
  background:
    linear-gradient(135deg, rgba(62,76,51,.18), rgba(171,105,83,.12)),
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.45), transparent 40%);
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-row{
    grid-template-columns: 1fr;
  }
}


/* Contact us updated overide */


/* =========================
   Contact Form FIX (Override)
   Paste at VERY BOTTOM of style.css
========================= */

.contact-card,
.contact-card * {
  box-sizing: border-box;
}

.contact-form {
  margin-top: 14px;
}

/* Force 2-column layout on desktop */
.contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-bottom: 12px;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Make each field block + vertical */
.contact-form .c-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100%;
}

/* Label style */
.contact-form .c-field__label {
  display: block !important;
  font-weight: 850;
  color: #3E4C33;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Input / select / textarea consistent */
.contact-form .c-field__input {
  width: 100% !important;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.78);
  outline: none;
  font-size: 1rem;
  color: rgba(18,18,18,.78);
}

/* Select fixes */
.contact-form select.c-field__input {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(62,76,51,.75) 50%),
    linear-gradient(135deg, rgba(62,76,51,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* Textarea fixes */
.contact-form .c-field__textarea {
  height: auto !important;
  min-height: 160px !important;
  padding: 12px 14px !important;
  resize: vertical;
  line-height: 1.6;
}

/* Focus state matches Masnad accent */
.contact-form .c-field__input:focus {
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Checkbox row */
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 16px;
  color: rgba(18,18,18,.70);
  font-weight: 650;
  line-height: 1.4;
}

.contact-form .check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #3E4C33;
}

/* Button area */
.contact-form .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make the submit button look premium & aligned */
.contact-form .btn.btn--primary {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
}

/* Small note */
.contact-form .contact-fine {
  margin: 0;
  color: rgba(18,18,18,.58);
  font-size: 0.92rem;
  line-height: 1.5;
}



/* coming soon page  */


/* =========================
   Coming Soon Page — Masnad
   Paste at bottom of style.css
========================= */

/* ========== Base ========== */

@font-face {
  font-family: "rbbold"; /* set name */
  src: url(assets/rbbold.ttf); /* url of the font */
}
@font-face {
  font-family: "rb"; /* set name */
  src: url(assets/rb.ttf); /* url of the font */
}

:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18,18,18,.65);
  --border: rgba(18,18,18,.12);
  --shadow: 0 12px 28px rgba(18,18,18,.12);
  --radius: 16px;
  --max: 1180px;

  --primary: #111827;     /* change to Masnad brand */
  --primary-2: #0b1220;
  --accent: #2563eb;      /* change to Masnad brand */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;

  /* font-family: "rb"; */
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{color:inherit;text-decoration:none;}
a:hover{
  text-decoration:underline;
  color:#AB6953 !important;
}
img{max-width:100%;display:block;/* height: 53px; */}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

/* ========== Buttons ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:650;
  cursor:pointer;
  white-space:nowrap;
}

.btn--sm{ padding:.55rem .85rem; font-size:.9rem; }

.btn--primary{
  background: #BC8E6C;;
  color:#fff;
  box-shadow: 0 10px 18px rgba(37,99,235,.25);
}
.btn--primary:hover{ filter:brightness(.95); text-decoration:none; }

.btn--secondary{
  background: transparent;
  border-color: var(--border);
}
.btn--secondary:hover{ background: rgba(18,18,18,.04); text-decoration:none; }

.btn--ghost{
  background: transparent;
  border-color: transparent;
}
.btn--ghost:hover{ background: rgba(255,255,255,.18); text-decoration:none; }

/* ========== Topbar + Header ========== */
.topbar{
  background: #AB6953;
  /* background: #3e4c33; */
  color: rgba(255,255,255,.9);
  font-size:.92rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.55rem 0;
  gap:1rem;
  color: #edd1c5;
}
.topbar__left, .topbar__right{ display:flex; align-items:center; gap:.85rem; }
.topbar__sep{ opacity:.5; }
.topbar__link{ opacity:.9; }
.topbar__link:hover{ opacity:1; text-decoration:none; }

.header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 10px;
  gap:1rem;
  background-color: #edd1c5;
  width: 100%;
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  letter-spacing:.2px;
}
.logo__mark{
  width:34px; height:34px;
  border-radius: 10px;
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
}
.logo--footer .logo__mark{ background:#fff; color:var(--primary); }

.nav{
  display:flex;
  gap:1.1rem;
  align-items:center;
}
.nav__link{
  font-weight:600;
  color: rgba(18,18,18,.8);
  padding:.35rem .25rem;
  color: rgb(62 76 51);
}
.nav__link:hover{ color: var(--text); text-decoration:none; }

.header__actions{
  display:flex;
  gap:.6rem;
  align-items:center;
}
.icon-btn{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(18,18,18,.03); }

.menu-btn{
  display:none;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background: #3d4d33;
  cursor:pointer;
}
.menu-btn__bar{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background: rgb(237 209 197);
  border-radius: 2px;
}

/* ========== Hero ========== */
.hero{
  position:relative;
  padding: clamp(28px, 4vw, 54px) 0 64px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgb(62 76 51), rgba(0, 0, 0, .15)), url(assets/images/homepage-banner.png);
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 40px);
  align-items:start;
  color:#fff;
}

.hero__content{
  padding-top: 20px;
  max-width: 560px;
}
.hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:750;
  opacity:.9;
  margin:0 0 .65rem;
  font-size:.85rem;
}
.hero__title{
  margin:0 0 .7rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height:1.05;
}
.hero__subtitle{
  margin:0 0 1.2rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}
.hero__ctas{ display:flex; gap:.8rem; flex-wrap:wrap; }

/* Booking widget */
.booking{
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  align-self:end;
}
.booking__row{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr .85fr auto;
  gap: 10px;
  align-items:end;
}
.field{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.field__label{
  font-size:.83rem;
  color: var(--muted);
  font-weight:650;
}
.field__input{
  height: 44px;
  border-radius: 12px;
  border:1px solid var(--border);
  padding: 0 12px;
  font-size: .98rem;
  outline:none;
  background:#fff;
}
.field__input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

.booking__submit{
  height: 44px;
  border-radius: 12px;
  width: 100%;
}

.booking__meta{
  margin-top: 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  font-size:.92rem;
  color: var(--muted);
}
.check{ display:flex; align-items:center; gap:.5rem; }
.booking__link{ font-weight:650; color: rgba(17,24,39,.9); }
.booking__link:hover{ text-decoration:underline; }

/* ========== Sections ========== */
.section{ padding: 54px 0; }
.section--alt{ background: rgba(18,18,18,.03); }

.section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap: 1rem;
  margin-bottom: 18px;
}
.section__title{
  margin:0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height:1.15;
  color: #3e4c33;
}
.section__desc{
  margin:.35rem 0 0;
  color: var(--muted);
  max-width: 68ch;
}
.section__link{
  font-weight:700;
  color: #BC8E6C;
}

.masnad-stats {
  padding: 80px 0;
  background: #3e4c33; /* soft corporate background */
}

.masnad-stats__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.masnad-stats__header h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: #f8eeea;
}

.masnad-stats__header p {
  font-size: 1rem;
  color: #f8eeea;
  line-height: 1.6;
}

.masnad-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ab6953;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f8eeea;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #f8eeea;
  font-weight: 500;
}

.masnad-stats__disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9ca3af;
}
/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: #edd1c55e;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.card__media{
  height: 170px;
  background-size:cover;
  background-position:center;
}
.card__body{ padding: 16px; }
.card__title{margin:0 0 .4rem;font-size:1.1rem;color: #3e4c33;}
.card__text{ margin:0 0 .8rem; color: var(--muted); }
.card__link{font-weight:700;color: #BC8E6C;}

/* Brands grid */
.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.brand{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 92px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: .25rem;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.brand:hover{ text-decoration:none; transform: translateY(-1px); }
.brand__name{ font-weight:800; }
.brand__tag{ color: var(--muted); font-weight:650; font-size:.95rem; }

/* Promo */
.promo{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items:center;
}
.promo__actions{ display:flex; gap:.8rem; flex-wrap:wrap; margin-top: 12px; }

.promo__media{
  position:relative;
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(17,24,39,.06));
  border: 1px solid var(--border);
  overflow:hidden;
}
.phone{
  position:absolute;
  width: 220px;
  height: 320px;
  border-radius: 26px;
  border: 10px solid rgba(17,24,39,.9);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  right: 28px;
  top: 18px;
  box-shadow: var(--shadow);
}
.phone--back{
  right: 120px;
  top: 54px;
  opacity:.75;
  transform: scale(.95);
}

/* Footer */
.footer{
  background: #AB6953;
  color: rgba(255,255,255,.88);
  padding: 46px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer__title{
  margin: 0 0 .6rem;
  font-size: 1rem;
}
.footer__link{
  display:block;
  padding:.22rem 0;
  opacity:.88;
}
.footer__link:hover{ opacity:1; text-decoration:none; }
.footer__small{ margin:.9rem 0 0; opacity:.75; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .masnad-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* @media (max-width: 980px){ */
@media (max-width: 700px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .booking__row{ grid-template-columns: 1fr 1fr; }
  .booking__submit{ grid-column: 1 / -1; }
  .cards{ grid-template-columns: 1fr; }
  .brand-grid{ grid-template-columns: 1fr; }
  .promo{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .booking__row{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .masnad-stats {
    padding: 60px 0;
  }

  .masnad-stats__grid {
    grid-template-columns: 1fr;
  }
}




/* -------------------------------------Portfolio Page ------------------------------------*/




/* Page hero */
.page-hero{
  background: #BC8E6C;
  border-bottom: 1px solid rgba(18,18,18,.08);
  padding: 54px 0 34px;
}
.page-hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.page-hero__eyebrow{
  margin:0 0 8px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #edd1c5;
  font-size: .82rem;
}
.page-hero__title{
  margin:0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #ffffff;
}
.page-hero__subtitle{
  margin:0;
  max-width: 70ch;
  color: rgb(255 255 255);
  font-size: 1.05rem;
}

/* Small note card */
.note-card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 16px;
  padding: 16px;
}
.note-card__title{
  font-weight: 850;
  color: #3E4C33;
  margin-bottom: 8px;
}
.note-card__text{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

/* Toolbar */
.section--tight{ padding: 26px 0; }

.portfolio-toolbar{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.tabs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab{
  appearance:none;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.60);
  color: #3E4C33;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  cursor:pointer;
}
.tab.is-active{
  background: #3E4C33;
  color: #EDD1C5;
  border-color: rgba(62,76,51,.75);
}

.search{
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.75);
  min-width: 240px;
  outline: none;
}
.search:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Portfolio cards */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.p-card__media{
  height: 170px;
  background-size: cover;
  background-position: center;
}

.p-card__body{
  padding: 16px;
}

.p-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-card__title{
  margin:0;
  font-size: 1.08rem;
  color: #3E4C33;
  font-weight: 850;
}

.badge{
  font-size: .82rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(171,105,83,.16);
  color: #AB6953;
  border: 1px solid rgba(171,105,83,.22);
  white-space: nowrap;
}

.p-card__desc{
  margin: 0 0 14px;
  color: rgba(18,18,18,.68);
  line-height: 1.6;
}

.p-card__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 10px;
}
.kpi__v{
  display:block;
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 4px;
}
.kpi__k{
  display:block;
  font-size: .85rem;
  color: rgba(18,18,18,.60);
  font-weight: 650;
}

.p-card__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.p-link{
  font-weight: 850;
  color: #BC8E6C;
}
.p-link--muted{
  color: rgba(62,76,51,.85);
}

/* CTA card */
.p-card--cta{
  background: #3E4C33;
  color: #EDD1C5;
}
.p-card--cta .p-card__body{ padding: 22px; }
.cta-box__title{
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
}
.cta-box__text{
  margin: 0 0 14px;
  color: rgba(237,209,197,.90);
  line-height: 1.6;
}
.cta-box__fine{
  margin: 12px 0 0;
  font-size: .85rem;
  color: rgba(237,209,197,.70);
}

/* Responsive */
@media (max-width: 980px){
  .page-hero__inner{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .p-card__kpis{ grid-template-columns: 1fr; }
  .search{ width: 100%; }
}



/* ----------------------------------  Our Team Page  -------------------------------------*/


/* =========================
   Team Page (Masnad)
   Add to bottom of style.css
========================= */

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-grid--compact{
  grid-template-columns: repeat(3, 1fr);
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.avatar--soft{
  background: rgba(62,76,51,.92);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 700;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  background: rgba(171,105,83,.14);
  border: 1px solid rgba(171,105,83,.20);
  color: #AB6953;
}

.t-card__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.team-note{
  margin-top: 18px;
  color: rgba(18,18,18,.60);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .team-grid,
  .team-grid--compact{
    grid-template-columns: 1fr;
  }
  .t-card{ padding: 16px; }
}


/* ----------------------------------- About US Page -------------------------------------*/



/* =========================
   About Page (Masnad)
   Add to bottom of style.css
========================= */

.about-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-nav__link{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.about-nav__link:hover{
  background: rgba(171,105,83,.14);
  border-color: rgba(171,105,83,.22);
  color: #3E4C33;
  text-decoration:none;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:start;
}

.about-text{
  margin: 12px 0 0;
  color: rgba(18,18,18,.72);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-pills{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-panel{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.about-panel__block{
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.06);
  margin-bottom: 10px;
}

.about-panel__label{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.about-panel__value{
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.about-panel__fine{
  margin-top: 10px;
  color: rgba(18,18,18,.55);
  font-size: .92rem;
}

.about-highlights{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight{
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.04);
}

.highlight__title{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 8px;
}

.highlight__text{
  color: rgba(18,18,18,.68);
  line-height: 1.65;
}

/* Team cards (reused from team page idea, kept here) */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 750;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.team-note{
  margin-top: 16px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Governance */
.gov-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gov-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.gov-card__title{
  margin: 0 0 8px;
  color: #3E4C33;
  font-weight: 950;
}

.gov-card__text{
  margin: 0 0 10px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.gov-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(18,18,18,.68);
  line-height: 1.7;
}

.gov-committees{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
}

.committee__title{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 10px;
}

.committee__items{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gov-note{
  margin-top: 12px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-highlights{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .gov-grid{ grid-template-columns: 1fr; }
}

/* --------------------- Contact Us ------------------------  */

/* =========================
   Contact Page (Masnad)
   Add to bottom of style.css
========================= */

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.contact-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.contact-card--soft{
  background: rgba(237,209,197,.35);
}

.contact-card__head{
  margin-bottom: 12px;
}

.contact-form{
  margin-top: 8px;
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}

.c-field__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .92rem;
}

.c-field__input{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.78);
  padding: 0 12px;
  outline:none;
  font-size: 1rem;
}

.c-field__textarea{
  height: auto;
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.c-field__input:focus{
  border-color: rgba(171,105,83,.55);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.contact-actions{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.contact-fine{
  margin:0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.5;
}

/* Side column */
.contact-side{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.contact-side__title{
  margin:0 0 10px;
  color: #3E4C33;
  font-weight: 950;
}

.contact-side__text{
  margin: 0 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.contact-info{
  display:grid;
  gap: 10px;
}

.info-item{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 12px;
}

.info-item__k{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.info-item__v{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

.info-item__v a{
  color: #BC8E6C;
  font-weight: 850;
  text-decoration:none;
}

.info-item__v a:hover{
  text-decoration: underline;
}

.divider{
  height:1px;
  background: rgba(18,18,18,.10);
  margin: 14px 0;
}

/* Map placeholder */
.map-card{
  padding: 0;
  overflow:hidden;
}

.map-card__top{
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  border-bottom: 1px solid rgba(18,18,18,.08);
  background: rgba(237,209,197,.35);
}

.map-badge{
  font-weight: 900;
  color: #3E4C33;
}

.map-text{
  color: rgba(18,18,18,.60);
  font-weight: 650;
  font-size: .92rem;
}

.map-box{
  height: 220px;
  background:
    linear-gradient(135deg, rgba(62,76,51,.18), rgba(171,105,83,.12)),
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.45), transparent 40%);
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-row{
    grid-template-columns: 1fr;
  }
}


/* Contact us updated overide */


/* =========================
   Contact Form FIX (Override)
   Paste at VERY BOTTOM of style.css
========================= */

.contact-card,
.contact-card * {
  box-sizing: border-box;
}

.contact-form {
  margin-top: 14px;
}

/* Force 2-column layout on desktop */
.contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-bottom: 12px;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Make each field block + vertical */
.contact-form .c-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100%;
}

/* Label style */
.contact-form .c-field__label {
  display: block !important;
  font-weight: 850;
  color: #3E4C33;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Input / select / textarea consistent */
.contact-form .c-field__input {
  width: 100% !important;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.78);
  outline: none;
  font-size: 1rem;
  color: rgba(18,18,18,.78);
}

/* Select fixes */
.contact-form select.c-field__input {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(62,76,51,.75) 50%),
    linear-gradient(135deg, rgba(62,76,51,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* Textarea fixes */
.contact-form .c-field__textarea {
  height: auto !important;
  min-height: 160px !important;
  padding: 12px 14px !important;
  resize: vertical;
  line-height: 1.6;
}

/* Focus state matches Masnad accent */
.contact-form .c-field__input:focus {
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Checkbox row */
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 16px;
  color: rgba(18,18,18,.70);
  font-weight: 650;
  line-height: 1.4;
}

.contact-form .check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #3E4C33;
}

/* Button area */
.contact-form .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make the submit button look premium & aligned */
.contact-form .btn.btn--primary {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
}

/* Small note */
.contact-form .contact-fine {
  margin: 0;
  color: rgba(18,18,18,.58);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ------------------------------------------ Latest News Page ---------------------------*/
/* =========================
   Latest News Page — Masnad
   Paste at bottom of style.css
========================= */

.news-head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.news-head__right{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.news-pill{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
}

.news-pill--soft{
  background: rgba(171,105,83,.12);
  border-color: rgba(171,105,83,.20);
  color: #AB6953;
}

.news-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.news-card{
  display:block;
  text-decoration:none;
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 16px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.news-card:hover{
  transform: translateY(-2px);
  border-color: rgba(171,105,83,.26);
  box-shadow: 0 14px 24px rgba(18,18,18,.08);
}

.news-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.news-source{
  font-weight: 900;
  color: #3E4C33;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: .85rem;
}

.news-time{
  color: rgba(18,18,18,.55);
  font-weight: 800;
  font-size: .85rem;
}

.news-title{
  color: rgba(18,18,18,.80);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 10px;
}

.news-link{
  color: #BC8E6C;
  font-weight: 900;
}

.news-empty{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  padding: 18px;
  color: rgba(18,18,18,.70);
}

.news-footnote{
  margin-top: 14px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px){
  .news-grid{ grid-template-columns: 1fr; }
}


/* coming soon page  */


/* =========================
   Coming Soon Page — Masnad
   Paste at bottom of style.css
========================= */

.coming-page{
  background: #faf1ee45;
}

.coming{
  min-height: 100vh;
  display: grid;
  place-items: center;
  /* padding: 28px 16px; */
  /* background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 82% 75%, rgba(255,255,255,.35), transparent 42%),
    linear-gradient(180deg, rgba(62,76,51,.06), rgba(171,105,83,.04)); */
}

.coming__shell{
  width: min(1040px, 100%);
  /* border-radius: 26px; */
  border: 3px solid #414e35;
  background: rgb(237 209 197);
  box-shadow: 0 18px 40px rgba(18,18,18,.08);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

/* subtle brand corner accent */
.coming__shell::before{
  content:"";
  position:absolute;
  inset: -40% -30% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(62,76,51,.18), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(171,105,83,.16), transparent 55%);
  transform: rotate(18deg);
  pointer-events: none;
}

.coming__top{
  display: block;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  position: relative;
}

.coming__logo{
  height: 120px;
  margin: 30px auto;
  width: auto;
  display:block;
}

.coming__meta{
  display:flex;
  gap: 10px;
  align-items:center;
}

.coming__pill{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(237,209,197,.55);
  border: 1px solid rgba(18,18,18,.10);
}

.coming__lang{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-weight: 900;
  color: #3E4C33;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.coming__lang:hover{
  background: rgba(171,105,83,.14);
}

.coming__content{
  padding: 00 18px;
  /* position: relative; */
}

.coming__title{
  text-align: center;
  margin: 20px;
  color: #edd1c5;
  font-weight: 950;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
}

.coming__subtitle{
  margin: 20px auto 22px;
  color: rgb(237 209 197);
  line-height: 1.7;
  max-width: 70ch;
  font-size: 1.05rem;
}

.coming__card{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 22px rgba(18,18,18,.06);
  max-width: 620px;
  margin: auto;
}

.coming__card-head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.coming__card-title{
  font-weight: 950;
  color: #3E4C33;
}

.coming__card-note{
  color: rgba(18,18,18,.55);
  font-weight: 700;
  font-size: .92rem;
}

.coming__form{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items:end;
}

.coming__field{
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.coming__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .95rem;
}

.coming__input{
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.85);
  padding: 0 14px;
  outline: none;
  font-size: 1rem;
}

.coming__input:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.coming__btn{
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(18,18,18,.12);
  background: #3E4C33;
  color: #EDD1C5;
  font-weight: 900;
  cursor:pointer;
  white-space: nowrap;
}
.coming__btn:hover{
  filter: brightness(1.03);
}

.coming__fine{
  margin: 12px 0 0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.55;
}

.coming__info{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 820px;
}

.coming__info-item{
  background: rgba(237,209,197,.45);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 14px;
}

.coming__k{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 8px;
}

.coming__v{
  color: rgba(18,18,18,.68);
  font-weight: 700;
}

.coming__v a{
  color: #BC8E6C;
  text-decoration:none;
  font-weight: 900;
}
.coming__v a:hover{ text-decoration: underline; }

.coming__footer{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(18,18,18,.10);
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.coming__footer-left{
  color: rgba(18,18,18,.62);
  font-weight: 700;
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
}

.coming__dot{
  opacity: .7;
}

.coming__footer-link{
  color: rgba(18,18,18,.62);
  text-decoration:none;
  font-weight: 800;
}
.coming__footer-link:hover{
  color: #3E4C33;
  text-decoration: underline;
}

.coming__footer-right{
  display:flex;
  gap: 12px;
  align-items:center;
}

.coming__social{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  color: #3E4C33;
  font-weight: 900;
  text-decoration:none;
}
.coming__social:hover{
  background: rgba(171,105,83,.14);
}

/* Responsive */
@media (max-width: 860px){
  .coming__shell{ padding: 18px; }
  .coming__info{ grid-template-columns: 1fr; }
  .coming__form{ grid-template-columns: 1fr; }
  .coming__btn{ width: 100%; }
}


/* New Coming Soon Page */


/* =========================
   Coming Soon (Map Layout)
   Masnad palette:
   #3E4C33 #EDD1C5 #BC8E6C #AB6953
========================= */

/* =========================
   Masnad Coming Soon Page
========================= */



/* ========== Base ========== */
*{
  font-family:rb !important;
}
@font-face {
  font-family: "rbbold"; /* set name */
  src: url(assets/rbbold.ttf); /* url of the font */
}
@font-face {
  font-family: "rb"; /* set name */
  src: url(assets/rb.ttf); /* url of the font */
}

:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18,18,18,.65);
  --border: rgba(18,18,18,.12);
  --shadow: 0 12px 28px rgba(18,18,18,.12);
  --radius: 16px;
  --max: 1180px;

  --primary: #111827;     /* change to Masnad brand */
  --primary-2: #0b1220;
  --accent: #2563eb;      /* change to Masnad brand */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;

  /* font-family: "rb"; */
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{color:inherit;text-decoration:none;}
a:hover{
  text-decoration:underline;
  color:#AB6953 !important;
}
img{max-width:100%;display:block;/* height: 53px; */}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

/* ========== Buttons ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:650;
  cursor:pointer;
  white-space:nowrap;
}

.btn--sm{ padding:.55rem .85rem; font-size:.9rem; }

.btn--primary{
  background: #BC8E6C;;
  color:#fff;
  box-shadow: 0 10px 18px rgba(37,99,235,.25);
}
.btn--primary:hover{ filter:brightness(.95); text-decoration:none; }

.btn--secondary{
  background: transparent;
  border-color: var(--border);
}
.btn--secondary:hover{ background: rgba(18,18,18,.04); text-decoration:none; }

.btn--ghost{
  background: transparent;
  border-color: transparent;
}
.btn--ghost:hover{ background: rgba(255,255,255,.18); text-decoration:none; }

/* ========== Topbar + Header ========== */
.topbar{
  background: #AB6953;
  /* background: #3e4c33; */
  color: rgba(255,255,255,.9);
  font-size:.92rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.55rem 0;
  gap:1rem;
  color: #edd1c5;
}
.topbar__left, .topbar__right{ display:flex; align-items:center; gap:.85rem; }
.topbar__sep{ opacity:.5; }
.topbar__link{ opacity:.9; }
.topbar__link:hover{ opacity:1; text-decoration:none; }

.header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 10px;
  gap:1rem;
  background-color: #edd1c5;
  width: 100%;
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  letter-spacing:.2px;
}
.logo__mark{
  width:34px; height:34px;
  border-radius: 10px;
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
}
.logo--footer .logo__mark{ background:#fff; color:var(--primary); }

.nav{
  display:flex;
  gap:1.1rem;
  align-items:center;
}
.nav__link{
  font-weight:600;
  color: rgba(18,18,18,.8);
  padding:.35rem .25rem;
  color: rgb(62 76 51);
}
.nav__link:hover{ color: var(--text); text-decoration:none; }

.header__actions{
  display:flex;
  gap:.6rem;
  align-items:center;
}
.icon-btn{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(18,18,18,.03); }

.menu-btn{
  display:none;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background: #3d4d33;
  cursor:pointer;
}
.menu-btn__bar{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background: rgb(237 209 197);
  border-radius: 2px;
}

/* ========== Hero ========== */
.hero{
  position:relative;
  padding: clamp(28px, 4vw, 54px) 0 64px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgb(62 76 51), rgba(0, 0, 0, .15)), url(assets/images/homepage-banner.png);
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 40px);
  align-items:start;
  color:#fff;
}

.hero__content{
  padding-top: 20px;
  max-width: 560px;
}
.hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:750;
  opacity:.9;
  margin:0 0 .65rem;
  font-size:.85rem;
}
.hero__title{
  margin:0 0 .7rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height:1.05;
}
.hero__subtitle{
  margin:0 0 1.2rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}
.hero__ctas{ display:flex; gap:.8rem; flex-wrap:wrap; }

/* Booking widget */
.booking{
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  align-self:end;
}
.booking__row{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr .85fr auto;
  gap: 10px;
  align-items:end;
}
.field{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.field__label{
  font-size:.83rem;
  color: var(--muted);
  font-weight:650;
}
.field__input{
  height: 44px;
  border-radius: 12px;
  border:1px solid var(--border);
  padding: 0 12px;
  font-size: .98rem;
  outline:none;
  background:#fff;
}
.field__input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

.booking__submit{
  height: 44px;
  border-radius: 12px;
  width: 100%;
}

.booking__meta{
  margin-top: 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  font-size:.92rem;
  color: var(--muted);
}
.check{ display:flex; align-items:center; gap:.5rem; }
.booking__link{ font-weight:650; color: rgba(17,24,39,.9); }
.booking__link:hover{ text-decoration:underline; }

/* ========== Sections ========== */
.section{ padding: 54px 0; }
.section--alt{ background: rgba(18,18,18,.03); }

.section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap: 1rem;
  margin-bottom: 18px;
}
.section__title{
  margin:0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height:1.15;
  color: #3e4c33;
}
.section__desc{
  margin:.35rem 0 0;
  color: var(--muted);
  max-width: 68ch;
}
.section__link{
  font-weight:700;
  color: #BC8E6C;
}

.masnad-stats {
  padding: 80px 0;
  background: #3e4c33; /* soft corporate background */
}

.masnad-stats__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.masnad-stats__header h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: #f8eeea;
}

.masnad-stats__header p {
  font-size: 1rem;
  color: #f8eeea;
  line-height: 1.6;
}

.masnad-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ab6953;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f8eeea;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #f8eeea;
  font-weight: 500;
}

.masnad-stats__disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9ca3af;
}
/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: #edd1c55e;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.card__media{
  height: 170px;
  background-size:cover;
  background-position:center;
}
.card__body{ padding: 16px; }
.card__title{margin:0 0 .4rem;font-size:1.1rem;color: #3e4c33;}
.card__text{ margin:0 0 .8rem; color: var(--muted); }
.card__link{font-weight:700;color: #BC8E6C;}

/* Brands grid */
.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.brand{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 92px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: .25rem;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.brand:hover{ text-decoration:none; transform: translateY(-1px); }
.brand__name{ font-weight:800; }
.brand__tag{ color: var(--muted); font-weight:650; font-size:.95rem; }

/* Promo */
.promo{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items:center;
}
.promo__actions{ display:flex; gap:.8rem; flex-wrap:wrap; margin-top: 12px; }

.promo__media{
  position:relative;
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(17,24,39,.06));
  border: 1px solid var(--border);
  overflow:hidden;
}
.phone{
  position:absolute;
  width: 220px;
  height: 320px;
  border-radius: 26px;
  border: 10px solid rgba(17,24,39,.9);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  right: 28px;
  top: 18px;
  box-shadow: var(--shadow);
}
.phone--back{
  right: 120px;
  top: 54px;
  opacity:.75;
  transform: scale(.95);
}

/* Footer */
.footer{
  background: #AB6953;
  color: rgba(255,255,255,.88);
  padding: 46px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer__title{
  margin: 0 0 .6rem;
  font-size: 1rem;
}
.footer__link{
  display:block;
  padding:.22rem 0;
  opacity:.88;
}
.footer__link:hover{ opacity:1; text-decoration:none; }
.footer__small{ margin:.9rem 0 0; opacity:.75; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .masnad-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* @media (max-width: 980px){ */
@media (max-width: 700px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .booking__row{ grid-template-columns: 1fr 1fr; }
  .booking__submit{ grid-column: 1 / -1; }
  .cards{ grid-template-columns: 1fr; }
  .brand-grid{ grid-template-columns: 1fr; }
  .promo{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .booking__row{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .masnad-stats {
    padding: 60px 0;
  }

  .masnad-stats__grid {
    grid-template-columns: 1fr;
  }
}




/* -------------------------------------Portfolio Page ------------------------------------*/




/* Page hero */
.page-hero{
  background: #BC8E6C;
  border-bottom: 1px solid rgba(18,18,18,.08);
  padding: 54px 0 34px;
}
.page-hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.page-hero__eyebrow{
  margin:0 0 8px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #3E4C33;
  font-size: .82rem;
}
.page-hero__title{
  margin:0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #3E4C33;
}
.page-hero__subtitle{
  margin:0;
  max-width: 70ch;
  color: rgba(62,76,51,.88);
  font-size: 1.05rem;
}

/* Small note card */
.note-card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 16px;
  padding: 16px;
}
.note-card__title{
  font-weight: 850;
  color: #3E4C33;
  margin-bottom: 8px;
}
.note-card__text{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

/* Toolbar */
.section--tight{ padding: 26px 0; }

.portfolio-toolbar{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.tabs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab{
  appearance:none;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.60);
  color: #3E4C33;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  cursor:pointer;
}
.tab.is-active{
  background: #3E4C33;
  color: #EDD1C5;
  border-color: rgba(62,76,51,.75);
}

.search{
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.75);
  min-width: 240px;
  outline: none;
}
.search:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Portfolio cards */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.p-card__media{
  height: 170px;
  background-size: cover;
  background-position: center;
}

.p-card__body{
  padding: 16px;
}

.p-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-card__title{
  margin:0;
  font-size: 1.08rem;
  color: #3E4C33;
  font-weight: 850;
}

.badge{
  font-size: .82rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(171,105,83,.16);
  color: #AB6953;
  border: 1px solid rgba(171,105,83,.22);
  white-space: nowrap;
}

.p-card__desc{
  margin: 0 0 14px;
  color: rgba(18,18,18,.68);
  line-height: 1.6;
}

.p-card__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 10px;
}
.kpi__v{
  display:block;
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 4px;
}
.kpi__k{
  display:block;
  font-size: .85rem;
  color: rgba(18,18,18,.60);
  font-weight: 650;
}

.p-card__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.p-link{
  font-weight: 850;
  color: #BC8E6C;
}
.p-link--muted{
  color: rgba(62,76,51,.85);
}

/* CTA card */
.p-card--cta{
  background: #3E4C33;
  color: #EDD1C5;
}
.p-card--cta .p-card__body{ padding: 22px; }
.cta-box__title{
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
}
.cta-box__text{
  margin: 0 0 14px;
  color: rgba(237,209,197,.90);
  line-height: 1.6;
}
.cta-box__fine{
  margin: 12px 0 0;
  font-size: .85rem;
  color: rgba(237,209,197,.70);
}

/* Responsive */
@media (max-width: 980px){
  .page-hero__inner{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .p-card__kpis{ grid-template-columns: 1fr; }
  .search{ width: 100%; }
}



/* ----------------------------------  Our Team Page  -------------------------------------*/


/* =========================
   Team Page (Masnad)
   Add to bottom of style.css
========================= */

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-grid--compact{
  grid-template-columns: repeat(3, 1fr);
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.avatar--soft{
  background: rgba(62,76,51,.92);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 700;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  background: rgba(171,105,83,.14);
  border: 1px solid rgba(171,105,83,.20);
  color: #AB6953;
}

.t-card__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.team-note{
  margin-top: 18px;
  color: rgba(18,18,18,.60);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .team-grid,
  .team-grid--compact{
    grid-template-columns: 1fr;
  }
  .t-card{ padding: 16px; }
}


/* ----------------------------------- About US Page -------------------------------------*/



/* =========================
   About Page (Masnad)
   Add to bottom of style.css
========================= */

.about-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-nav__link{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.about-nav__link:hover{
  background: rgba(171,105,83,.14);
  border-color: rgba(171,105,83,.22);
  color: #3E4C33;
  text-decoration:none;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:start;
}

.about-text{
  margin: 12px 0 0;
  color: rgba(18,18,18,.72);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-pills{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-panel{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.about-panel__block{
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.06);
  margin-bottom: 10px;
}

.about-panel__label{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.about-panel__value{
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.about-panel__fine{
  margin-top: 10px;
  color: rgba(18,18,18,.55);
  font-size: .92rem;
}

.about-highlights{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight{
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.04);
}

.highlight__title{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 8px;
}

.highlight__text{
  color: rgba(18,18,18,.68);
  line-height: 1.65;
}

/* Team cards (reused from team page idea, kept here) */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 750;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.team-note{
  margin-top: 16px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Governance */
.gov-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gov-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.gov-card__title{
  margin: 0 0 8px;
  color: #3E4C33;
  font-weight: 950;
}

.gov-card__text{
  margin: 0 0 10px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.gov-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(18,18,18,.68);
  line-height: 1.7;
}

.gov-committees{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
}

.committee__title{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 10px;
}

.committee__items{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gov-note{
  margin-top: 12px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-highlights{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .gov-grid{ grid-template-columns: 1fr; }
}

/* --------------------- Contact Us ------------------------  */

/* =========================
   Contact Page (Masnad)
   Add to bottom of style.css
========================= */

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.contact-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.contact-card--soft{
  background: rgba(237,209,197,.35);
}

.contact-card__head{
  margin-bottom: 12px;
}

.contact-form{
  margin-top: 8px;
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}

.c-field__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .92rem;
}

.c-field__input{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.78);
  padding: 0 12px;
  outline:none;
  font-size: 1rem;
}

.c-field__textarea{
  height: auto;
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.c-field__input:focus{
  border-color: rgba(171,105,83,.55);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.contact-actions{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.contact-fine{
  margin:0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.5;
}

/* Side column */
.contact-side{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.contact-side__title{
  margin:0 0 10px;
  color: #3E4C33;
  font-weight: 950;
}

.contact-side__text{
  margin: 0 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.contact-info{
  display:grid;
  gap: 10px;
}

.info-item{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 12px;
}

.info-item__k{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.info-item__v{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

.info-item__v a{
  color: #BC8E6C;
  font-weight: 850;
  text-decoration:none;
}

.info-item__v a:hover{
  text-decoration: underline;
}

.divider{
  height:1px;
  background: rgba(18,18,18,.10);
  margin: 14px 0;
}

/* Map placeholder */
.map-card{
  padding: 0;
  overflow:hidden;
}

.map-card__top{
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  border-bottom: 1px solid rgba(18,18,18,.08);
  background: rgba(237,209,197,.35);
}

.map-badge{
  font-weight: 900;
  color: #3E4C33;
}

.map-text{
  color: rgba(18,18,18,.60);
  font-weight: 650;
  font-size: .92rem;
}

.map-box{
  height: 220px;
  background:
    linear-gradient(135deg, rgba(62,76,51,.18), rgba(171,105,83,.12)),
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.45), transparent 40%);
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-row{
    grid-template-columns: 1fr;
  }
}


/* Contact us updated overide */


/* =========================
   Contact Form FIX (Override)
   Paste at VERY BOTTOM of style.css
========================= */

.contact-card,
.contact-card * {
  box-sizing: border-box;
}

.contact-form {
  margin-top: 14px;
}

/* Force 2-column layout on desktop */
.contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-bottom: 12px;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Make each field block + vertical */
.contact-form .c-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100%;
}

/* Label style */
.contact-form .c-field__label {
  display: block !important;
  font-weight: 850;
  color: #3E4C33;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Input / select / textarea consistent */
.contact-form .c-field__input {
  width: 100% !important;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.78);
  outline: none;
  font-size: 1rem;
  color: rgba(18,18,18,.78);
}

/* Select fixes */
.contact-form select.c-field__input {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(62,76,51,.75) 50%),
    linear-gradient(135deg, rgba(62,76,51,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* Textarea fixes */
.contact-form .c-field__textarea {
  height: auto !important;
  min-height: 160px !important;
  padding: 12px 14px !important;
  resize: vertical;
  line-height: 1.6;
}

/* Focus state matches Masnad accent */
.contact-form .c-field__input:focus {
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Checkbox row */
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 16px;
  color: rgba(18,18,18,.70);
  font-weight: 650;
  line-height: 1.4;
}

.contact-form .check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #3E4C33;
}

/* Button area */
.contact-form .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make the submit button look premium & aligned */
.contact-form .btn.btn--primary {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
}

/* Small note */
.contact-form .contact-fine {
  margin: 0;
  color: rgba(18,18,18,.58);
  font-size: 0.92rem;
  line-height: 1.5;
}



/* coming soon page  */


/* =========================
   Coming Soon Page — Masnad
   Paste at bottom of style.css
========================= */

/* ========== Base ========== */

@font-face {
  font-family: "rbbold"; /* set name */
  src: url(assets/rbbold.ttf); /* url of the font */
}
@font-face {
  font-family: "rb"; /* set name */
  src: url(assets/rb.ttf); /* url of the font */
}

:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18,18,18,.65);
  --border: rgba(18,18,18,.12);
  --shadow: 0 12px 28px rgba(18,18,18,.12);
  --radius: 16px;
  --max: 1180px;

  --primary: #111827;     /* change to Masnad brand */
  --primary-2: #0b1220;
  --accent: #2563eb;      /* change to Masnad brand */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;

  /* font-family: "rb"; */
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{color:inherit;text-decoration:none;}
a:hover{
  text-decoration:underline;
  color:#AB6953 !important;
}
img{max-width:100%;display:block;/* height: 53px; */}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

/* ========== Buttons ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:650;
  cursor:pointer;
  white-space:nowrap;
}

.btn--sm{ padding:.55rem .85rem; font-size:.9rem; }

.btn--primary{
  background: #BC8E6C;;
  color:#fff;
  box-shadow: 0 10px 18px rgba(37,99,235,.25);
}
.btn--primary:hover{ filter:brightness(.95); text-decoration:none; }

.btn--secondary{
  background: transparent;
  border-color: var(--border);
}
.btn--secondary:hover{ background: rgba(18,18,18,.04); text-decoration:none; }

.btn--ghost{
  background: transparent;
  border-color: transparent;
}
.btn--ghost:hover{ background: rgba(255,255,255,.18); text-decoration:none; }

/* ========== Topbar + Header ========== */
.topbar{
  background: #AB6953;
  /* background: #3e4c33; */
  color: rgba(255,255,255,.9);
  font-size:.92rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.55rem 0;
  gap:1rem;
  color: #edd1c5;
}
.topbar__left, .topbar__right{ display:flex; align-items:center; gap:.85rem; }
.topbar__sep{ opacity:.5; }
.topbar__link{ opacity:.9; }
.topbar__link:hover{ opacity:1; text-decoration:none; }

.header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 10px;
  gap:1rem;
  background-color: #edd1c5;
  width: 100%;
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  letter-spacing:.2px;
}
.logo__mark{
  width:34px; height:34px;
  border-radius: 10px;
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
}
.logo--footer .logo__mark{ background:#fff; color:var(--primary); }

.nav{
  display:flex;
  gap:1.1rem;
  align-items:center;
}
.nav__link{
  font-weight:600;
  color: rgba(18,18,18,.8);
  padding:.35rem .25rem;
  color: rgb(62 76 51);
}
.nav__link:hover{ color: var(--text); text-decoration:none; }

.header__actions{
  display:flex;
  gap:.6rem;
  align-items:center;
}
.icon-btn{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(18,18,18,.03); }

.menu-btn{
  display:none;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background: #3d4d33;
  cursor:pointer;
}
.menu-btn__bar{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background: rgb(237 209 197);
  border-radius: 2px;
}

/* ========== Hero ========== */
.hero{
  position:relative;
  padding: clamp(28px, 4vw, 54px) 0 64px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgb(62 76 51), rgba(0, 0, 0, .15)), url(assets/images/homepage-banner.png);
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 40px);
  align-items:start;
  color:#fff;
}

.hero__content{
  padding-top: 20px;
  max-width: 560px;
}
.hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:750;
  opacity:.9;
  margin:0 0 .65rem;
  font-size:.85rem;
}
.hero__title{
  margin:0 0 .7rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height:1.05;
}
.hero__subtitle{
  margin:0 0 1.2rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}
.hero__ctas{ display:flex; gap:.8rem; flex-wrap:wrap; }

/* Booking widget */
.booking{
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  align-self:end;
}
.booking__row{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr .85fr auto;
  gap: 10px;
  align-items:end;
}
.field{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.field__label{
  font-size:.83rem;
  color: var(--muted);
  font-weight:650;
}
.field__input{
  height: 44px;
  border-radius: 12px;
  border:1px solid var(--border);
  padding: 0 12px;
  font-size: .98rem;
  outline:none;
  background:#fff;
}
.field__input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

.booking__submit{
  height: 44px;
  border-radius: 12px;
  width: 100%;
}

.booking__meta{
  margin-top: 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  font-size:.92rem;
  color: var(--muted);
}
.check{ display:flex; align-items:center; gap:.5rem; }
.booking__link{ font-weight:650; color: rgba(17,24,39,.9); }
.booking__link:hover{ text-decoration:underline; }

/* ========== Sections ========== */
.section{ padding: 54px 0; }
.section--alt{ background: rgba(18,18,18,.03); }

.section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap: 1rem;
  margin-bottom: 18px;
}
.section__title{
  margin:0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height:1.15;
  color: #3e4c33;
}
.section__desc{
  margin:.35rem 0 0;
  color: var(--muted);
  max-width: 68ch;
}
.section__link{
  font-weight:700;
  color: #BC8E6C;
}

.masnad-stats {
  padding: 80px 0;
  background: #3e4c33; /* soft corporate background */
}

.masnad-stats__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.masnad-stats__header h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: #f8eeea;
}

.masnad-stats__header p {
  font-size: 1rem;
  color: #f8eeea;
  line-height: 1.6;
}

.masnad-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ab6953;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f8eeea;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #f8eeea;
  font-weight: 500;
}

.masnad-stats__disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9ca3af;
}
/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: #edd1c55e;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.card__media{
  height: 170px;
  background-size:cover;
  background-position:center;
}
.card__body{ padding: 16px; }
.card__title{margin:0 0 .4rem;font-size:1.1rem;color: #3e4c33;}
.card__text{ margin:0 0 .8rem; color: var(--muted); }
.card__link{font-weight:700;color: #BC8E6C;}

/* Brands grid */
.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.brand{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 92px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: .25rem;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.brand:hover{ text-decoration:none; transform: translateY(-1px); }
.brand__name{ font-weight:800; }
.brand__tag{ color: var(--muted); font-weight:650; font-size:.95rem; }

/* Promo */
.promo{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items:center;
}
.promo__actions{ display:flex; gap:.8rem; flex-wrap:wrap; margin-top: 12px; }

.promo__media{
  position:relative;
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(17,24,39,.06));
  border: 1px solid var(--border);
  overflow:hidden;
}
.phone{
  position:absolute;
  width: 220px;
  height: 320px;
  border-radius: 26px;
  border: 10px solid rgba(17,24,39,.9);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  right: 28px;
  top: 18px;
  box-shadow: var(--shadow);
}
.phone--back{
  right: 120px;
  top: 54px;
  opacity:.75;
  transform: scale(.95);
}

/* Footer */
.footer{
  background: #AB6953;
  color: rgba(255,255,255,.88);
  padding: 46px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer__title{
  margin: 0 0 .6rem;
  font-size: 1rem;
}
.footer__link{
  display:block;
  padding:.22rem 0;
  opacity:.88;
}
.footer__link:hover{ opacity:1; text-decoration:none; }
.footer__small{ margin:.9rem 0 0; opacity:.75; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .masnad-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* @media (max-width: 980px){ */
@media (max-width: 700px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .booking__row{ grid-template-columns: 1fr 1fr; }
  .booking__submit{ grid-column: 1 / -1; }
  .cards{ grid-template-columns: 1fr; }
  .brand-grid{ grid-template-columns: 1fr; }
  .promo{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .booking__row{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .masnad-stats {
    padding: 60px 0;
  }

  .masnad-stats__grid {
    grid-template-columns: 1fr;
  }
}




/* -------------------------------------Portfolio Page ------------------------------------*/




/* Page hero */
.page-hero{
  background: #BC8E6C;
  border-bottom: 1px solid rgba(18,18,18,.08);
  padding: 54px 0 34px;
}
.page-hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.page-hero__eyebrow{
  margin:0 0 8px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #edd1c5;
  font-size: .82rem;
}
.page-hero__title{
  margin:0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #ffffff;
}
.page-hero__subtitle{
  margin:0;
  max-width: 70ch;
  color: rgb(255 255 255);
  font-size: 1.05rem;
}

/* Small note card */
.note-card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 16px;
  padding: 16px;
}
.note-card__title{
  font-weight: 850;
  color: #3E4C33;
  margin-bottom: 8px;
}
.note-card__text{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

/* Toolbar */
.section--tight{ padding: 26px 0; }

.portfolio-toolbar{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.tabs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab{
  appearance:none;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.60);
  color: #3E4C33;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  cursor:pointer;
}
.tab.is-active{
  background: #3E4C33;
  color: #EDD1C5;
  border-color: rgba(62,76,51,.75);
}

.search{
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.75);
  min-width: 240px;
  outline: none;
}
.search:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Portfolio cards */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.p-card__media{
  height: 170px;
  background-size: cover;
  background-position: center;
}

.p-card__body{
  padding: 16px;
}

.p-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-card__title{
  margin:0;
  font-size: 1.08rem;
  color: #3E4C33;
  font-weight: 850;
}

.badge{
  font-size: .82rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(171,105,83,.16);
  color: #AB6953;
  border: 1px solid rgba(171,105,83,.22);
  white-space: nowrap;
}

.p-card__desc{
  margin: 0 0 14px;
  color: rgba(18,18,18,.68);
  line-height: 1.6;
}

.p-card__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 10px;
}
.kpi__v{
  display:block;
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 4px;
}
.kpi__k{
  display:block;
  font-size: .85rem;
  color: rgba(18,18,18,.60);
  font-weight: 650;
}

.p-card__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.p-link{
  font-weight: 850;
  color: #BC8E6C;
}
.p-link--muted{
  color: rgba(62,76,51,.85);
}

/* CTA card */
.p-card--cta{
  background: #3E4C33;
  color: #EDD1C5;
}
.p-card--cta .p-card__body{ padding: 22px; }
.cta-box__title{
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
}
.cta-box__text{
  margin: 0 0 14px;
  color: rgba(237,209,197,.90);
  line-height: 1.6;
}
.cta-box__fine{
  margin: 12px 0 0;
  font-size: .85rem;
  color: rgba(237,209,197,.70);
}

/* Responsive */
@media (max-width: 980px){
  .page-hero__inner{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .p-card__kpis{ grid-template-columns: 1fr; }
  .search{ width: 100%; }
}



/* ----------------------------------  Our Team Page  -------------------------------------*/


/* =========================
   Team Page (Masnad)
   Add to bottom of style.css
========================= */

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-grid--compact{
  grid-template-columns: repeat(3, 1fr);
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.avatar--soft{
  background: rgba(62,76,51,.92);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 700;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  background: rgba(171,105,83,.14);
  border: 1px solid rgba(171,105,83,.20);
  color: #AB6953;
}

.t-card__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.team-note{
  margin-top: 18px;
  color: rgba(18,18,18,.60);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .team-grid,
  .team-grid--compact{
    grid-template-columns: 1fr;
  }
  .t-card{ padding: 16px; }
}


/* ----------------------------------- About US Page -------------------------------------*/



/* =========================
   About Page (Masnad)
   Add to bottom of style.css
========================= */

.about-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-nav__link{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.about-nav__link:hover{
  background: rgba(171,105,83,.14);
  border-color: rgba(171,105,83,.22);
  color: #3E4C33;
  text-decoration:none;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:start;
}

.about-text{
  margin: 12px 0 0;
  color: rgba(18,18,18,.72);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-pills{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-panel{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.about-panel__block{
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.06);
  margin-bottom: 10px;
}

.about-panel__label{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.about-panel__value{
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.about-panel__fine{
  margin-top: 10px;
  color: rgba(18,18,18,.55);
  font-size: .92rem;
}

.about-highlights{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight{
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.04);
}

.highlight__title{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 8px;
}

.highlight__text{
  color: rgba(18,18,18,.68);
  line-height: 1.65;
}

/* Team cards (reused from team page idea, kept here) */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 750;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.team-note{
  margin-top: 16px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Governance */
.gov-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gov-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.gov-card__title{
  margin: 0 0 8px;
  color: #3E4C33;
  font-weight: 950;
}

.gov-card__text{
  margin: 0 0 10px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.gov-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(18,18,18,.68);
  line-height: 1.7;
}

.gov-committees{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
}

.committee__title{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 10px;
}

.committee__items{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gov-note{
  margin-top: 12px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-highlights{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .gov-grid{ grid-template-columns: 1fr; }
}

/* --------------------- Contact Us ------------------------  */

/* =========================
   Contact Page (Masnad)
   Add to bottom of style.css
========================= */

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.contact-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.contact-card--soft{
  background: rgba(237,209,197,.35);
}

.contact-card__head{
  margin-bottom: 12px;
}

.contact-form{
  margin-top: 8px;
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}

.c-field__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .92rem;
}

.c-field__input{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.78);
  padding: 0 12px;
  outline:none;
  font-size: 1rem;
}

.c-field__textarea{
  height: auto;
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.c-field__input:focus{
  border-color: rgba(171,105,83,.55);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.contact-actions{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.contact-fine{
  margin:0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.5;
}

/* Side column */
.contact-side{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.contact-side__title{
  margin:0 0 10px;
  color: #3E4C33;
  font-weight: 950;
}

.contact-side__text{
  margin: 0 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.contact-info{
  display:grid;
  gap: 10px;
}

.info-item{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 12px;
}

.info-item__k{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.info-item__v{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

.info-item__v a{
  color: #BC8E6C;
  font-weight: 850;
  text-decoration:none;
}

.info-item__v a:hover{
  text-decoration: underline;
}

.divider{
  height:1px;
  background: rgba(18,18,18,.10);
  margin: 14px 0;
}

/* Map placeholder */
.map-card{
  padding: 0;
  overflow:hidden;
}

.map-card__top{
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  border-bottom: 1px solid rgba(18,18,18,.08);
  background: rgba(237,209,197,.35);
}

.map-badge{
  font-weight: 900;
  color: #3E4C33;
}

.map-text{
  color: rgba(18,18,18,.60);
  font-weight: 650;
  font-size: .92rem;
}

.map-box{
  height: 220px;
  background:
    linear-gradient(135deg, rgba(62,76,51,.18), rgba(171,105,83,.12)),
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.45), transparent 40%);
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-row{
    grid-template-columns: 1fr;
  }
}


/* Contact us updated overide */


/* =========================
   Contact Form FIX (Override)
   Paste at VERY BOTTOM of style.css
========================= */

.contact-card,
.contact-card * {
  box-sizing: border-box;
}

.contact-form {
  margin-top: 14px;
}

/* Force 2-column layout on desktop */
.contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-bottom: 12px;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Make each field block + vertical */
.contact-form .c-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100%;
}

/* Label style */
.contact-form .c-field__label {
  display: block !important;
  font-weight: 850;
  color: #3E4C33;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Input / select / textarea consistent */
.contact-form .c-field__input {
  width: 100% !important;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.78);
  outline: none;
  font-size: 1rem;
  color: rgba(18,18,18,.78);
}

/* Select fixes */
.contact-form select.c-field__input {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(62,76,51,.75) 50%),
    linear-gradient(135deg, rgba(62,76,51,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* Textarea fixes */
.contact-form .c-field__textarea {
  height: auto !important;
  min-height: 160px !important;
  padding: 12px 14px !important;
  resize: vertical;
  line-height: 1.6;
}

/* Focus state matches Masnad accent */
.contact-form .c-field__input:focus {
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Checkbox row */
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 16px;
  color: rgba(18,18,18,.70);
  font-weight: 650;
  line-height: 1.4;
}

.contact-form .check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #3E4C33;
}

/* Button area */
.contact-form .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make the submit button look premium & aligned */
.contact-form .btn.btn--primary {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
}

/* Small note */
.contact-form .contact-fine {
  margin: 0;
  color: rgba(18,18,18,.58);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ------------------------------------------ Latest News Page ---------------------------*/
/* =========================
   Latest News Page — Masnad
   Paste at bottom of style.css
========================= */

.news-head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.news-head__right{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.news-pill{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
}

.news-pill--soft{
  background: rgba(171,105,83,.12);
  border-color: rgba(171,105,83,.20);
  color: #AB6953;
}

.news-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.news-card{
  display:block;
  text-decoration:none;
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 16px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.news-card:hover{
  transform: translateY(-2px);
  border-color: rgba(171,105,83,.26);
  box-shadow: 0 14px 24px rgba(18,18,18,.08);
}

.news-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.news-source{
  font-weight: 900;
  color: #3E4C33;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: .85rem;
}

.news-time{
  color: rgba(18,18,18,.55);
  font-weight: 800;
  font-size: .85rem;
}

.news-title{
  color: rgba(18,18,18,.80);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 10px;
}

.news-link{
  color: #BC8E6C;
  font-weight: 900;
}

.news-empty{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  padding: 18px;
  color: rgba(18,18,18,.70);
}

.news-footnote{
  margin-top: 14px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px){
  .news-grid{ grid-template-columns: 1fr; }
}


/* coming soon page  */
/* ========== Base ========== */
*{
  font-family:rb !important;
}
@font-face {
  font-family: "rbbold"; /* set name */
  src: url(assets/rbbold.ttf); /* url of the font */
}
@font-face {
  font-family: "rb"; /* set name */
  src: url(assets/rb.ttf); /* url of the font */
}

:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18,18,18,.65);
  --border: rgba(18,18,18,.12);
  --shadow: 0 12px 28px rgba(18,18,18,.12);
  --radius: 16px;
  --max: 1180px;

  --primary: #111827;     /* change to Masnad brand */
  --primary-2: #0b1220;
  --accent: #2563eb;      /* change to Masnad brand */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;

  /* font-family: "rb"; */
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{color:inherit;text-decoration:none;}
a:hover{
  text-decoration:underline;
  color:#AB6953 !important;
}
img{max-width:100%;display:block;/* height: 53px; */}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

/* ========== Buttons ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:650;
  cursor:pointer;
  white-space:nowrap;
}

.btn--sm{ padding:.55rem .85rem; font-size:.9rem; }

.btn--primary{
  background: #BC8E6C;;
  color:#fff;
  box-shadow: 0 10px 18px rgba(37,99,235,.25);
}
.btn--primary:hover{ filter:brightness(.95); text-decoration:none; }

.btn--secondary{
  background: transparent;
  border-color: var(--border);
}
.btn--secondary:hover{ background: rgba(18,18,18,.04); text-decoration:none; }

.btn--ghost{
  background: transparent;
  border-color: transparent;
}
.btn--ghost:hover{ background: rgba(255,255,255,.18); text-decoration:none; }

/* ========== Topbar + Header ========== */
.topbar{
  background: #AB6953;
  /* background: #3e4c33; */
  color: rgba(255,255,255,.9);
  font-size:.92rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.55rem 0;
  gap:1rem;
  color: #edd1c5;
}
.topbar__left, .topbar__right{ display:flex; align-items:center; gap:.85rem; }
.topbar__sep{ opacity:.5; }
.topbar__link{ opacity:.9; }
.topbar__link:hover{ opacity:1; text-decoration:none; }

.header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 10px;
  gap:1rem;
  background-color: #edd1c5;
  width: 100%;
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  letter-spacing:.2px;
}
.logo__mark{
  width:34px; height:34px;
  border-radius: 10px;
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
}
.logo--footer .logo__mark{ background:#fff; color:var(--primary); }

.nav{
  display:flex;
  gap:1.1rem;
  align-items:center;
}
.nav__link{
  font-weight:600;
  color: rgba(18,18,18,.8);
  padding:.35rem .25rem;
  color: rgb(62 76 51);
}
.nav__link:hover{ color: var(--text); text-decoration:none; }

.header__actions{
  display:flex;
  gap:.6rem;
  align-items:center;
}
.icon-btn{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(18,18,18,.03); }

.menu-btn{
  display:none;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background: #3d4d33;
  cursor:pointer;
}
.menu-btn__bar{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background: rgb(237 209 197);
  border-radius: 2px;
}

/* ========== Hero ========== */
.hero{
  position:relative;
  padding: clamp(28px, 4vw, 54px) 0 64px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgb(62 76 51), rgba(0, 0, 0, .15)), url(assets/images/homepage-banner.png);
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 40px);
  align-items:start;
  color:#fff;
}

.hero__content{
  padding-top: 20px;
  max-width: 560px;
}
.hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:750;
  opacity:.9;
  margin:0 0 .65rem;
  font-size:.85rem;
}
.hero__title{
  margin:0 0 .7rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height:1.05;
}
.hero__subtitle{
  margin:0 0 1.2rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}
.hero__ctas{ display:flex; gap:.8rem; flex-wrap:wrap; }

/* Booking widget */
.booking{
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  align-self:end;
}
.booking__row{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr .85fr auto;
  gap: 10px;
  align-items:end;
}
.field{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.field__label{
  font-size:.83rem;
  color: var(--muted);
  font-weight:650;
}
.field__input{
  height: 44px;
  border-radius: 12px;
  border:1px solid var(--border);
  padding: 0 12px;
  font-size: .98rem;
  outline:none;
  background:#fff;
}
.field__input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

.booking__submit{
  height: 44px;
  border-radius: 12px;
  width: 100%;
}

.booking__meta{
  margin-top: 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  font-size:.92rem;
  color: var(--muted);
}
.check{ display:flex; align-items:center; gap:.5rem; }
.booking__link{ font-weight:650; color: rgba(17,24,39,.9); }
.booking__link:hover{ text-decoration:underline; }

/* ========== Sections ========== */
.section{ padding: 54px 0; }
.section--alt{ background: rgba(18,18,18,.03); }

.section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap: 1rem;
  margin-bottom: 18px;
}
.section__title{
  margin:0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height:1.15;
  color: #3e4c33;
}
.section__desc{
  margin:.35rem 0 0;
  color: var(--muted);
  max-width: 68ch;
}
.section__link{
  font-weight:700;
  color: #BC8E6C;
}

.masnad-stats {
  padding: 80px 0;
  background: #3e4c33; /* soft corporate background */
}

.masnad-stats__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.masnad-stats__header h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: #f8eeea;
}

.masnad-stats__header p {
  font-size: 1rem;
  color: #f8eeea;
  line-height: 1.6;
}

.masnad-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ab6953;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f8eeea;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #f8eeea;
  font-weight: 500;
}

.masnad-stats__disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9ca3af;
}
/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: #edd1c55e;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.card__media{
  height: 170px;
  background-size:cover;
  background-position:center;
}
.card__body{ padding: 16px; }
.card__title{margin:0 0 .4rem;font-size:1.1rem;color: #3e4c33;}
.card__text{ margin:0 0 .8rem; color: var(--muted); }
.card__link{font-weight:700;color: #BC8E6C;}

/* Brands grid */
.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.brand{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 92px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: .25rem;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.brand:hover{ text-decoration:none; transform: translateY(-1px); }
.brand__name{ font-weight:800; }
.brand__tag{ color: var(--muted); font-weight:650; font-size:.95rem; }

/* Promo */
.promo{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items:center;
}
.promo__actions{ display:flex; gap:.8rem; flex-wrap:wrap; margin-top: 12px; }

.promo__media{
  position:relative;
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(17,24,39,.06));
  border: 1px solid var(--border);
  overflow:hidden;
}
.phone{
  position:absolute;
  width: 220px;
  height: 320px;
  border-radius: 26px;
  border: 10px solid rgba(17,24,39,.9);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  right: 28px;
  top: 18px;
  box-shadow: var(--shadow);
}
.phone--back{
  right: 120px;
  top: 54px;
  opacity:.75;
  transform: scale(.95);
}

/* Footer */
.footer{
  background: #AB6953;
  color: rgba(255,255,255,.88);
  padding: 46px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer__title{
  margin: 0 0 .6rem;
  font-size: 1rem;
}
.footer__link{
  display:block;
  padding:.22rem 0;
  opacity:.88;
}
.footer__link:hover{ opacity:1; text-decoration:none; }
.footer__small{ margin:.9rem 0 0; opacity:.75; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .masnad-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* @media (max-width: 980px){ */
@media (max-width: 700px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .booking__row{ grid-template-columns: 1fr 1fr; }
  .booking__submit{ grid-column: 1 / -1; }
  .cards{ grid-template-columns: 1fr; }
  .brand-grid{ grid-template-columns: 1fr; }
  .promo{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .booking__row{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .masnad-stats {
    padding: 60px 0;
  }

  .masnad-stats__grid {
    grid-template-columns: 1fr;
  }
}




/* -------------------------------------Portfolio Page ------------------------------------*/




/* Page hero */
.page-hero{
  background: #BC8E6C;
  border-bottom: 1px solid rgba(18,18,18,.08);
  padding: 54px 0 34px;
}
.page-hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.page-hero__eyebrow{
  margin:0 0 8px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #3E4C33;
  font-size: .82rem;
}
.page-hero__title{
  margin:0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #3E4C33;
}
.page-hero__subtitle{
  margin:0;
  max-width: 70ch;
  color: rgba(62,76,51,.88);
  font-size: 1.05rem;
}

/* Small note card */
.note-card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 16px;
  padding: 16px;
}
.note-card__title{
  font-weight: 850;
  color: #3E4C33;
  margin-bottom: 8px;
}
.note-card__text{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

/* Toolbar */
.section--tight{ padding: 26px 0; }

.portfolio-toolbar{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.tabs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab{
  appearance:none;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.60);
  color: #3E4C33;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  cursor:pointer;
}
.tab.is-active{
  background: #3E4C33;
  color: #EDD1C5;
  border-color: rgba(62,76,51,.75);
}

.search{
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.75);
  min-width: 240px;
  outline: none;
}
.search:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Portfolio cards */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.p-card__media{
  height: 170px;
  background-size: cover;
  background-position: center;
}

.p-card__body{
  padding: 16px;
}

.p-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-card__title{
  margin:0;
  font-size: 1.08rem;
  color: #3E4C33;
  font-weight: 850;
}

.badge{
  font-size: .82rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(171,105,83,.16);
  color: #AB6953;
  border: 1px solid rgba(171,105,83,.22);
  white-space: nowrap;
}

.p-card__desc{
  margin: 0 0 14px;
  color: rgba(18,18,18,.68);
  line-height: 1.6;
}

.p-card__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 10px;
}
.kpi__v{
  display:block;
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 4px;
}
.kpi__k{
  display:block;
  font-size: .85rem;
  color: rgba(18,18,18,.60);
  font-weight: 650;
}

.p-card__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.p-link{
  font-weight: 850;
  color: #BC8E6C;
}
.p-link--muted{
  color: rgba(62,76,51,.85);
}

/* CTA card */
.p-card--cta{
  background: #3E4C33;
  color: #EDD1C5;
}
.p-card--cta .p-card__body{ padding: 22px; }
.cta-box__title{
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
}
.cta-box__text{
  margin: 0 0 14px;
  color: rgba(237,209,197,.90);
  line-height: 1.6;
}
.cta-box__fine{
  margin: 12px 0 0;
  font-size: .85rem;
  color: rgba(237,209,197,.70);
}

/* Responsive */
@media (max-width: 980px){
  .page-hero__inner{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .p-card__kpis{ grid-template-columns: 1fr; }
  .search{ width: 100%; }
}



/* ----------------------------------  Our Team Page  -------------------------------------*/


/* =========================
   Team Page (Masnad)
   Add to bottom of style.css
========================= */

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-grid--compact{
  grid-template-columns: repeat(3, 1fr);
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.avatar--soft{
  background: rgba(62,76,51,.92);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 700;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  background: rgba(171,105,83,.14);
  border: 1px solid rgba(171,105,83,.20);
  color: #AB6953;
}

.t-card__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.team-note{
  margin-top: 18px;
  color: rgba(18,18,18,.60);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .team-grid,
  .team-grid--compact{
    grid-template-columns: 1fr;
  }
  .t-card{ padding: 16px; }
}


/* ----------------------------------- About US Page -------------------------------------*/



/* =========================
   About Page (Masnad)
   Add to bottom of style.css
========================= */

.about-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-nav__link{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.about-nav__link:hover{
  background: rgba(171,105,83,.14);
  border-color: rgba(171,105,83,.22);
  color: #3E4C33;
  text-decoration:none;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:start;
}

.about-text{
  margin: 12px 0 0;
  color: rgba(18,18,18,.72);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-pills{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-panel{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.about-panel__block{
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.06);
  margin-bottom: 10px;
}

.about-panel__label{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.about-panel__value{
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.about-panel__fine{
  margin-top: 10px;
  color: rgba(18,18,18,.55);
  font-size: .92rem;
}

.about-highlights{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight{
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.04);
}

.highlight__title{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 8px;
}

.highlight__text{
  color: rgba(18,18,18,.68);
  line-height: 1.65;
}

/* Team cards (reused from team page idea, kept here) */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 750;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.team-note{
  margin-top: 16px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Governance */
.gov-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gov-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.gov-card__title{
  margin: 0 0 8px;
  color: #3E4C33;
  font-weight: 950;
}

.gov-card__text{
  margin: 0 0 10px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.gov-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(18,18,18,.68);
  line-height: 1.7;
}

.gov-committees{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
}

.committee__title{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 10px;
}

.committee__items{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gov-note{
  margin-top: 12px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-highlights{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .gov-grid{ grid-template-columns: 1fr; }
}

/* --------------------- Contact Us ------------------------  */

/* =========================
   Contact Page (Masnad)
   Add to bottom of style.css
========================= */

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.contact-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.contact-card--soft{
  background: rgba(237,209,197,.35);
}

.contact-card__head{
  margin-bottom: 12px;
}

.contact-form{
  margin-top: 8px;
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}

.c-field__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .92rem;
}

.c-field__input{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.78);
  padding: 0 12px;
  outline:none;
  font-size: 1rem;
}

.c-field__textarea{
  height: auto;
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.c-field__input:focus{
  border-color: rgba(171,105,83,.55);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.contact-actions{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.contact-fine{
  margin:0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.5;
}

/* Side column */
.contact-side{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.contact-side__title{
  margin:0 0 10px;
  color: #3E4C33;
  font-weight: 950;
}

.contact-side__text{
  margin: 0 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.contact-info{
  display:grid;
  gap: 10px;
}

.info-item{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 12px;
}

.info-item__k{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.info-item__v{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

.info-item__v a{
  color: #BC8E6C;
  font-weight: 850;
  text-decoration:none;
}

.info-item__v a:hover{
  text-decoration: underline;
}

.divider{
  height:1px;
  background: rgba(18,18,18,.10);
  margin: 14px 0;
}

/* Map placeholder */
.map-card{
  padding: 0;
  overflow:hidden;
}

.map-card__top{
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  border-bottom: 1px solid rgba(18,18,18,.08);
  background: rgba(237,209,197,.35);
}

.map-badge{
  font-weight: 900;
  color: #3E4C33;
}

.map-text{
  color: rgba(18,18,18,.60);
  font-weight: 650;
  font-size: .92rem;
}

.map-box{
  height: 220px;
  background:
    linear-gradient(135deg, rgba(62,76,51,.18), rgba(171,105,83,.12)),
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.45), transparent 40%);
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-row{
    grid-template-columns: 1fr;
  }
}


/* Contact us updated overide */


/* =========================
   Contact Form FIX (Override)
   Paste at VERY BOTTOM of style.css
========================= */

.contact-card,
.contact-card * {
  box-sizing: border-box;
}

.contact-form {
  margin-top: 14px;
}

/* Force 2-column layout on desktop */
.contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-bottom: 12px;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Make each field block + vertical */
.contact-form .c-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100%;
}

/* Label style */
.contact-form .c-field__label {
  display: block !important;
  font-weight: 850;
  color: #3E4C33;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Input / select / textarea consistent */
.contact-form .c-field__input {
  width: 100% !important;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.78);
  outline: none;
  font-size: 1rem;
  color: rgba(18,18,18,.78);
}

/* Select fixes */
.contact-form select.c-field__input {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(62,76,51,.75) 50%),
    linear-gradient(135deg, rgba(62,76,51,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* Textarea fixes */
.contact-form .c-field__textarea {
  height: auto !important;
  min-height: 160px !important;
  padding: 12px 14px !important;
  resize: vertical;
  line-height: 1.6;
}

/* Focus state matches Masnad accent */
.contact-form .c-field__input:focus {
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Checkbox row */
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 16px;
  color: rgba(18,18,18,.70);
  font-weight: 650;
  line-height: 1.4;
}

.contact-form .check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #3E4C33;
}

/* Button area */
.contact-form .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make the submit button look premium & aligned */
.contact-form .btn.btn--primary {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
}

/* Small note */
.contact-form .contact-fine {
  margin: 0;
  color: rgba(18,18,18,.58);
  font-size: 0.92rem;
  line-height: 1.5;
}



/* coming soon page  */


/* =========================
   Coming Soon Page — Masnad
   Paste at bottom of style.css
========================= */

/* ========== Base ========== */

@font-face {
  font-family: "rbbold"; /* set name */
  src: url(assets/rbbold.ttf); /* url of the font */
}
@font-face {
  font-family: "rb"; /* set name */
  src: url(assets/rb.ttf); /* url of the font */
}

:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18,18,18,.65);
  --border: rgba(18,18,18,.12);
  --shadow: 0 12px 28px rgba(18,18,18,.12);
  --radius: 16px;
  --max: 1180px;

  --primary: #111827;     /* change to Masnad brand */
  --primary-2: #0b1220;
  --accent: #2563eb;      /* change to Masnad brand */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;

  /* font-family: "rb"; */
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{color:inherit;text-decoration:none;}
a:hover{
  text-decoration:underline;
  color:#AB6953 !important;
}
img{max-width:100%;display:block;/* height: 53px; */}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

/* ========== Buttons ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:650;
  cursor:pointer;
  white-space:nowrap;
}

.btn--sm{ padding:.55rem .85rem; font-size:.9rem; }

.btn--primary{
  background: #BC8E6C;;
  color:#fff;
  box-shadow: 0 10px 18px rgba(37,99,235,.25);
}
.btn--primary:hover{ filter:brightness(.95); text-decoration:none; }

.btn--secondary{
  background: transparent;
  border-color: var(--border);
}
.btn--secondary:hover{ background: rgba(18,18,18,.04); text-decoration:none; }

.btn--ghost{
  background: transparent;
  border-color: transparent;
}
.btn--ghost:hover{ background: rgba(255,255,255,.18); text-decoration:none; }

/* ========== Topbar + Header ========== */
.topbar{
  background: #AB6953;
  /* background: #3e4c33; */
  color: rgba(255,255,255,.9);
  font-size:.92rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.55rem 0;
  gap:1rem;
  color: #edd1c5;
}
.topbar__left, .topbar__right{ display:flex; align-items:center; gap:.85rem; }
.topbar__sep{ opacity:.5; }
.topbar__link{ opacity:.9; }
.topbar__link:hover{ opacity:1; text-decoration:none; }

.header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 10px;
  gap:1rem;
  background-color: #edd1c5;
  width: 100%;
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  letter-spacing:.2px;
}
.logo__mark{
  width:34px; height:34px;
  border-radius: 10px;
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
}
.logo--footer .logo__mark{ background:#fff; color:var(--primary); }

.nav{
  display:flex;
  gap:1.1rem;
  align-items:center;
}
.nav__link{
  font-weight:600;
  color: rgba(18,18,18,.8);
  padding:.35rem .25rem;
  color: rgb(62 76 51);
}
.nav__link:hover{ color: var(--text); text-decoration:none; }

.header__actions{
  display:flex;
  gap:.6rem;
  align-items:center;
}
.icon-btn{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(18,18,18,.03); }

.menu-btn{
  display:none;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background: #3d4d33;
  cursor:pointer;
}
.menu-btn__bar{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background: rgb(237 209 197);
  border-radius: 2px;
}

/* ========== Hero ========== */
.hero{
  position:relative;
  padding: clamp(28px, 4vw, 54px) 0 64px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgb(62 76 51), rgba(0, 0, 0, .15)), url(assets/images/homepage-banner.png);
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 40px);
  align-items:start;
  color:#fff;
}

.hero__content{
  padding-top: 20px;
  max-width: 560px;
}
.hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:750;
  opacity:.9;
  margin:0 0 .65rem;
  font-size:.85rem;
}
.hero__title{
  margin:0 0 .7rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height:1.05;
}
.hero__subtitle{
  margin:0 0 1.2rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}
.hero__ctas{ display:flex; gap:.8rem; flex-wrap:wrap; }

/* Booking widget */
.booking{
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  align-self:end;
}
.booking__row{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr .85fr auto;
  gap: 10px;
  align-items:end;
}
.field{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.field__label{
  font-size:.83rem;
  color: var(--muted);
  font-weight:650;
}
.field__input{
  height: 44px;
  border-radius: 12px;
  border:1px solid var(--border);
  padding: 0 12px;
  font-size: .98rem;
  outline:none;
  background:#fff;
}
.field__input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

.booking__submit{
  height: 44px;
  border-radius: 12px;
  width: 100%;
}

.booking__meta{
  margin-top: 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  font-size:.92rem;
  color: var(--muted);
}
.check{ display:flex; align-items:center; gap:.5rem; }
.booking__link{ font-weight:650; color: rgba(17,24,39,.9); }
.booking__link:hover{ text-decoration:underline; }

/* ========== Sections ========== */
.section{ padding: 54px 0; }
.section--alt{ background: rgba(18,18,18,.03); }

.section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap: 1rem;
  margin-bottom: 18px;
}
.section__title{
  margin:0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height:1.15;
  color: #3e4c33;
}
.section__desc{
  margin:.35rem 0 0;
  color: var(--muted);
  max-width: 68ch;
}
.section__link{
  font-weight:700;
  color: #BC8E6C;
}

.masnad-stats {
  padding: 80px 0;
  background: #3e4c33; /* soft corporate background */
}

.masnad-stats__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.masnad-stats__header h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: #f8eeea;
}

.masnad-stats__header p {
  font-size: 1rem;
  color: #f8eeea;
  line-height: 1.6;
}

.masnad-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ab6953;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f8eeea;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #f8eeea;
  font-weight: 500;
}

.masnad-stats__disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9ca3af;
}
/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: #edd1c55e;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.card__media{
  height: 170px;
  background-size:cover;
  background-position:center;
}
.card__body{ padding: 16px; }
.card__title{margin:0 0 .4rem;font-size:1.1rem;color: #3e4c33;}
.card__text{ margin:0 0 .8rem; color: var(--muted); }
.card__link{font-weight:700;color: #BC8E6C;}

/* Brands grid */
.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.brand{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 92px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: .25rem;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.brand:hover{ text-decoration:none; transform: translateY(-1px); }
.brand__name{ font-weight:800; }
.brand__tag{ color: var(--muted); font-weight:650; font-size:.95rem; }

/* Promo */
.promo{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items:center;
}
.promo__actions{ display:flex; gap:.8rem; flex-wrap:wrap; margin-top: 12px; }

.promo__media{
  position:relative;
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(17,24,39,.06));
  border: 1px solid var(--border);
  overflow:hidden;
}
.phone{
  position:absolute;
  width: 220px;
  height: 320px;
  border-radius: 26px;
  border: 10px solid rgba(17,24,39,.9);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  right: 28px;
  top: 18px;
  box-shadow: var(--shadow);
}
.phone--back{
  right: 120px;
  top: 54px;
  opacity:.75;
  transform: scale(.95);
}

/* Footer */
.footer{
  background: #AB6953;
  color: rgba(255,255,255,.88);
  padding: 46px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer__title{
  margin: 0 0 .6rem;
  font-size: 1rem;
}
.footer__link{
  display:block;
  padding:.22rem 0;
  opacity:.88;
}
.footer__link:hover{ opacity:1; text-decoration:none; }
.footer__small{ margin:.9rem 0 0; opacity:.75; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .masnad-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* @media (max-width: 980px){ */
@media (max-width: 700px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .booking__row{ grid-template-columns: 1fr 1fr; }
  .booking__submit{ grid-column: 1 / -1; }
  .cards{ grid-template-columns: 1fr; }
  .brand-grid{ grid-template-columns: 1fr; }
  .promo{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .booking__row{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .masnad-stats {
    padding: 60px 0;
  }

  .masnad-stats__grid {
    grid-template-columns: 1fr;
  }
}




/* -------------------------------------Portfolio Page ------------------------------------*/




/* Page hero */
.page-hero{
  background: #BC8E6C;
  border-bottom: 1px solid rgba(18,18,18,.08);
  padding: 54px 0 34px;
}
.page-hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.page-hero__eyebrow{
  margin:0 0 8px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #edd1c5;
  font-size: .82rem;
}
.page-hero__title{
  margin:0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #ffffff;
}
.page-hero__subtitle{
  margin:0;
  max-width: 70ch;
  color: rgb(255 255 255);
  font-size: 1.05rem;
}

/* Small note card */
.note-card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 16px;
  padding: 16px;
}
.note-card__title{
  font-weight: 850;
  color: #3E4C33;
  margin-bottom: 8px;
}
.note-card__text{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

/* Toolbar */
.section--tight{ padding: 26px 0; }

.portfolio-toolbar{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.tabs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab{
  appearance:none;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.60);
  color: #3E4C33;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  cursor:pointer;
}
.tab.is-active{
  background: #3E4C33;
  color: #EDD1C5;
  border-color: rgba(62,76,51,.75);
}

.search{
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.75);
  min-width: 240px;
  outline: none;
}
.search:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Portfolio cards */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.p-card__media{
  height: 170px;
  background-size: cover;
  background-position: center;
}

.p-card__body{
  padding: 16px;
}

.p-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-card__title{
  margin:0;
  font-size: 1.08rem;
  color: #3E4C33;
  font-weight: 850;
}

.badge{
  font-size: .82rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(171,105,83,.16);
  color: #AB6953;
  border: 1px solid rgba(171,105,83,.22);
  white-space: nowrap;
}

.p-card__desc{
  margin: 0 0 14px;
  color: rgba(18,18,18,.68);
  line-height: 1.6;
}

.p-card__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 10px;
}
.kpi__v{
  display:block;
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 4px;
}
.kpi__k{
  display:block;
  font-size: .85rem;
  color: rgba(18,18,18,.60);
  font-weight: 650;
}

.p-card__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.p-link{
  font-weight: 850;
  color: #BC8E6C;
}
.p-link--muted{
  color: rgba(62,76,51,.85);
}

/* CTA card */
.p-card--cta{
  background: #3E4C33;
  color: #EDD1C5;
}
.p-card--cta .p-card__body{ padding: 22px; }
.cta-box__title{
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
}
.cta-box__text{
  margin: 0 0 14px;
  color: rgba(237,209,197,.90);
  line-height: 1.6;
}
.cta-box__fine{
  margin: 12px 0 0;
  font-size: .85rem;
  color: rgba(237,209,197,.70);
}

/* Responsive */
@media (max-width: 980px){
  .page-hero__inner{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .p-card__kpis{ grid-template-columns: 1fr; }
  .search{ width: 100%; }
}



/* ----------------------------------  Our Team Page  -------------------------------------*/


/* =========================
   Team Page (Masnad)
   Add to bottom of style.css
========================= */

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-grid--compact{
  grid-template-columns: repeat(3, 1fr);
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.avatar--soft{
  background: rgba(62,76,51,.92);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 700;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  background: rgba(171,105,83,.14);
  border: 1px solid rgba(171,105,83,.20);
  color: #AB6953;
}

.t-card__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.team-note{
  margin-top: 18px;
  color: rgba(18,18,18,.60);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .team-grid,
  .team-grid--compact{
    grid-template-columns: 1fr;
  }
  .t-card{ padding: 16px; }
}


/* ----------------------------------- About US Page -------------------------------------*/



/* =========================
   About Page (Masnad)
   Add to bottom of style.css
========================= */

.about-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-nav__link{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.about-nav__link:hover{
  background: rgba(171,105,83,.14);
  border-color: rgba(171,105,83,.22);
  color: #3E4C33;
  text-decoration:none;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:start;
}

.about-text{
  margin: 12px 0 0;
  color: rgba(18,18,18,.72);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-pills{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-panel{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.about-panel__block{
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.06);
  margin-bottom: 10px;
}

.about-panel__label{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.about-panel__value{
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.about-panel__fine{
  margin-top: 10px;
  color: rgba(18,18,18,.55);
  font-size: .92rem;
}

.about-highlights{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight{
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.04);
}

.highlight__title{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 8px;
}

.highlight__text{
  color: rgba(18,18,18,.68);
  line-height: 1.65;
}

/* Team cards (reused from team page idea, kept here) */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 750;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.team-note{
  margin-top: 16px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Governance */
.gov-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gov-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.gov-card__title{
  margin: 0 0 8px;
  color: #3E4C33;
  font-weight: 950;
}

.gov-card__text{
  margin: 0 0 10px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.gov-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(18,18,18,.68);
  line-height: 1.7;
}

.gov-committees{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
}

.committee__title{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 10px;
}

.committee__items{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gov-note{
  margin-top: 12px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-highlights{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .gov-grid{ grid-template-columns: 1fr; }
}

/* --------------------- Contact Us ------------------------  */

/* =========================
   Contact Page (Masnad)
   Add to bottom of style.css
========================= */

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.contact-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.contact-card--soft{
  background: rgba(237,209,197,.35);
}

.contact-card__head{
  margin-bottom: 12px;
}

.contact-form{
  margin-top: 8px;
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}

.c-field__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .92rem;
}

.c-field__input{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.78);
  padding: 0 12px;
  outline:none;
  font-size: 1rem;
}

.c-field__textarea{
  height: auto;
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.c-field__input:focus{
  border-color: rgba(171,105,83,.55);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.contact-actions{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.contact-fine{
  margin:0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.5;
}

/* Side column */
.contact-side{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.contact-side__title{
  margin:0 0 10px;
  color: #3E4C33;
  font-weight: 950;
}

.contact-side__text{
  margin: 0 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.contact-info{
  display:grid;
  gap: 10px;
}

.info-item{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 12px;
}

.info-item__k{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.info-item__v{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

.info-item__v a{
  color: #BC8E6C;
  font-weight: 850;
  text-decoration:none;
}

.info-item__v a:hover{
  text-decoration: underline;
}

.divider{
  height:1px;
  background: rgba(18,18,18,.10);
  margin: 14px 0;
}

/* Map placeholder */
.map-card{
  padding: 0;
  overflow:hidden;
}

.map-card__top{
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  border-bottom: 1px solid rgba(18,18,18,.08);
  background: rgba(237,209,197,.35);
}

.map-badge{
  font-weight: 900;
  color: #3E4C33;
}

.map-text{
  color: rgba(18,18,18,.60);
  font-weight: 650;
  font-size: .92rem;
}

.map-box{
  height: 220px;
  background:
    linear-gradient(135deg, rgba(62,76,51,.18), rgba(171,105,83,.12)),
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.45), transparent 40%);
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-row{
    grid-template-columns: 1fr;
  }
}


/* Contact us updated overide */


/* =========================
   Contact Form FIX (Override)
   Paste at VERY BOTTOM of style.css
========================= */

.contact-card,
.contact-card * {
  box-sizing: border-box;
}

.contact-form {
  margin-top: 14px;
}

/* Force 2-column layout on desktop */
.contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-bottom: 12px;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Make each field block + vertical */
.contact-form .c-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100%;
}

/* Label style */
.contact-form .c-field__label {
  display: block !important;
  font-weight: 850;
  color: #3E4C33;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Input / select / textarea consistent */
.contact-form .c-field__input {
  width: 100% !important;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.78);
  outline: none;
  font-size: 1rem;
  color: rgba(18,18,18,.78);
}

/* Select fixes */
.contact-form select.c-field__input {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(62,76,51,.75) 50%),
    linear-gradient(135deg, rgba(62,76,51,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* Textarea fixes */
.contact-form .c-field__textarea {
  height: auto !important;
  min-height: 160px !important;
  padding: 12px 14px !important;
  resize: vertical;
  line-height: 1.6;
}

/* Focus state matches Masnad accent */
.contact-form .c-field__input:focus {
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Checkbox row */
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 16px;
  color: rgba(18,18,18,.70);
  font-weight: 650;
  line-height: 1.4;
}

.contact-form .check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #3E4C33;
}

/* Button area */
.contact-form .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make the submit button look premium & aligned */
.contact-form .btn.btn--primary {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
}

/* Small note */
.contact-form .contact-fine {
  margin: 0;
  color: rgba(18,18,18,.58);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ------------------------------------------ Latest News Page ---------------------------*/
/* =========================
   Latest News Page — Masnad
   Paste at bottom of style.css
========================= */

.news-head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.news-head__right{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.news-pill{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
}

.news-pill--soft{
  background: rgba(171,105,83,.12);
  border-color: rgba(171,105,83,.20);
  color: #AB6953;
}

.news-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.news-card{
  display:block;
  text-decoration:none;
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 16px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.news-card:hover{
  transform: translateY(-2px);
  border-color: rgba(171,105,83,.26);
  box-shadow: 0 14px 24px rgba(18,18,18,.08);
}

.news-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.news-source{
  font-weight: 900;
  color: #3E4C33;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: .85rem;
}

.news-time{
  color: rgba(18,18,18,.55);
  font-weight: 800;
  font-size: .85rem;
}

.news-title{
  color: rgba(18,18,18,.80);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 10px;
}

.news-link{
  color: #BC8E6C;
  font-weight: 900;
}

.news-empty{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  padding: 18px;
  color: rgba(18,18,18,.70);
}

.news-footnote{
  margin-top: 14px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px){
  .news-grid{ grid-template-columns: 1fr; }
}


/* coming soon page  */


/* =========================
   Coming Soon Page — Masnad
   Paste at bottom of style.css
========================= */

.coming-page{
  background: #faf1ee45;
}

.coming{
  min-height: 100vh;
  display: grid;
  place-items: center;
  /* padding: 28px 16px; */
  /* background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 82% 75%, rgba(255,255,255,.35), transparent 42%),
    linear-gradient(180deg, rgba(62,76,51,.06), rgba(171,105,83,.04)); */
}

.coming__shell{
  width: min(1040px, 100%);
  /* border-radius: 26px; */
  border: 3px solid #414e35;
  background: rgb(237 209 197);
  box-shadow: 0 18px 40px rgba(18,18,18,.08);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

/* subtle brand corner accent */
.coming__shell::before{
  content:"";
  position:absolute;
  inset: -40% -30% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(62,76,51,.18), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(171,105,83,.16), transparent 55%);
  transform: rotate(18deg);
  pointer-events: none;
}

.coming__top{
  display: block;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  position: relative;
}

.coming__logo{
  height: 120px;
  margin: 30px auto;
  width: auto;
  display:block;
}

.coming__meta{
  display:flex;
  gap: 10px;
  align-items:center;
}

.coming__pill{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(237,209,197,.55);
  border: 1px solid rgba(18,18,18,.10);
}

.coming__lang{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-weight: 900;
  color: #3E4C33;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.coming__lang:hover{
  background: rgba(171,105,83,.14);
}

.coming__content{
  padding: 00 18px;
  /* position: relative; */
}

.coming__title{
  text-align: center;
  margin: 20px;
  color: #edd1c5;
  font-weight: 950;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
}

.coming__subtitle{
  margin: 20px auto 22px;
  color: rgb(237 209 197);
  line-height: 1.7;
  max-width: 70ch;
  font-size: 1.05rem;
}

.coming__card{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 22px rgba(18,18,18,.06);
  max-width: 620px;
  margin: auto;
}

.coming__card-head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.coming__card-title{
  font-weight: 950;
  color: #3E4C33;
}

.coming__card-note{
  color: rgba(18,18,18,.55);
  font-weight: 700;
  font-size: .92rem;
}

.coming__form{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items:end;
}

.coming__field{
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.coming__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .95rem;
}

.coming__input{
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.85);
  padding: 0 14px;
  outline: none;
  font-size: 1rem;
}

.coming__input:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.coming__btn{
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(18,18,18,.12);
  background: #3E4C33;
  color: #EDD1C5;
  font-weight: 900;
  cursor:pointer;
  white-space: nowrap;
}
.coming__btn:hover{
  filter: brightness(1.03);
}

.coming__fine{
  margin: 12px 0 0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.55;
}

.coming__info{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 820px;
}

.coming__info-item{
  background: rgba(237,209,197,.45);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 14px;
}

.coming__k{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 8px;
}

.coming__v{
  color: rgba(18,18,18,.68);
  font-weight: 700;
}

.coming__v a{
  color: #BC8E6C;
  text-decoration:none;
  font-weight: 900;
}
.coming__v a:hover{ text-decoration: underline; }

.coming__footer{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(18,18,18,.10);
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.coming__footer-left{
  color: rgba(18,18,18,.62);
  font-weight: 700;
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
}

.coming__dot{
  opacity: .7;
}

.coming__footer-link{
  color: rgba(18,18,18,.62);
  text-decoration:none;
  font-weight: 800;
}
.coming__footer-link:hover{
  color: #3E4C33;
  text-decoration: underline;
}

.coming__footer-right{
  display:flex;
  gap: 12px;
  align-items:center;
}

.coming__social{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  color: #3E4C33;
  font-weight: 900;
  text-decoration:none;
}
.coming__social:hover{
  background: rgba(171,105,83,.14);
}

/* Responsive */
@media (max-width: 860px){
  .coming__shell{ padding: 18px; }
  .coming__info{ grid-template-columns: 1fr; }
  .coming__form{ grid-template-columns: 1fr; }
  .coming__btn{ width: 100%; }
}


/* New Coming Soon Page */


/* =========================
   Coming Soon (Map Layout)
   Masnad palette:
   #3E4C33 #EDD1C5 #BC8E6C #AB6953
========================= */

/* =========================
   Masnad Coming Soon Page
========================= */



/* ========== Base ========== */
*{
  font-family:rb !important;
}
@font-face {
  font-family: "rbbold"; /* set name */
  src: url(assets/rbbold.ttf); /* url of the font */
}
@font-face {
  font-family: "rb"; /* set name */
  src: url(assets/rb.ttf); /* url of the font */
}

:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18,18,18,.65);
  --border: rgba(18,18,18,.12);
  --shadow: 0 12px 28px rgba(18,18,18,.12);
  --radius: 16px;
  --max: 1180px;

  --primary: #111827;     /* change to Masnad brand */
  --primary-2: #0b1220;
  --accent: #2563eb;      /* change to Masnad brand */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;

  /* font-family: "rb"; */
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{color:inherit;text-decoration:none;}
a:hover{
  text-decoration:underline;
  color:#AB6953 !important;
}
img{max-width:100%;display:block;/* height: 53px; */}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

/* ========== Buttons ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:650;
  cursor:pointer;
  white-space:nowrap;
}

.btn--sm{ padding:.55rem .85rem; font-size:.9rem; }

.btn--primary{
  background: #BC8E6C;;
  color:#fff;
  box-shadow: 0 10px 18px rgba(37,99,235,.25);
}
.btn--primary:hover{ filter:brightness(.95); text-decoration:none; }

.btn--secondary{
  background: transparent;
  border-color: var(--border);
}
.btn--secondary:hover{ background: rgba(18,18,18,.04); text-decoration:none; }

.btn--ghost{
  background: transparent;
  border-color: transparent;
}
.btn--ghost:hover{ background: rgba(255,255,255,.18); text-decoration:none; }

/* ========== Topbar + Header ========== */
.topbar{
  background: #AB6953;
  /* background: #3e4c33; */
  color: rgba(255,255,255,.9);
  font-size:.92rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.55rem 0;
  gap:1rem;
  color: #edd1c5;
}
.topbar__left, .topbar__right{ display:flex; align-items:center; gap:.85rem; }
.topbar__sep{ opacity:.5; }
.topbar__link{ opacity:.9; }
.topbar__link:hover{ opacity:1; text-decoration:none; }

.header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 10px;
  gap:1rem;
  background-color: #edd1c5;
  width: 100%;
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  letter-spacing:.2px;
}
.logo__mark{
  width:34px; height:34px;
  border-radius: 10px;
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
}
.logo--footer .logo__mark{ background:#fff; color:var(--primary); }

.nav{
  display:flex;
  gap:1.1rem;
  align-items:center;
}
.nav__link{
  font-weight:600;
  color: rgba(18,18,18,.8);
  padding:.35rem .25rem;
  color: rgb(62 76 51);
}
.nav__link:hover{ color: var(--text); text-decoration:none; }

.header__actions{
  display:flex;
  gap:.6rem;
  align-items:center;
}
.icon-btn{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(18,18,18,.03); }

.menu-btn{
  display:none;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background: #3d4d33;
  cursor:pointer;
}
.menu-btn__bar{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background: rgb(237 209 197);
  border-radius: 2px;
}

/* ========== Hero ========== */
.hero{
  position:relative;
  padding: clamp(28px, 4vw, 54px) 0 64px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgb(62 76 51), rgba(0, 0, 0, .15)), url(assets/images/homepage-banner.png);
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 40px);
  align-items:start;
  color:#fff;
}

.hero__content{
  padding-top: 20px;
  max-width: 560px;
}
.hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:750;
  opacity:.9;
  margin:0 0 .65rem;
  font-size:.85rem;
}
.hero__title{
  margin:0 0 .7rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height:1.05;
}
.hero__subtitle{
  margin:0 0 1.2rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}
.hero__ctas{ display:flex; gap:.8rem; flex-wrap:wrap; }

/* Booking widget */
.booking{
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  align-self:end;
}
.booking__row{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr .85fr auto;
  gap: 10px;
  align-items:end;
}
.field{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.field__label{
  font-size:.83rem;
  color: var(--muted);
  font-weight:650;
}
.field__input{
  height: 44px;
  border-radius: 12px;
  border:1px solid var(--border);
  padding: 0 12px;
  font-size: .98rem;
  outline:none;
  background:#fff;
}
.field__input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

.booking__submit{
  height: 44px;
  border-radius: 12px;
  width: 100%;
}

.booking__meta{
  margin-top: 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  font-size:.92rem;
  color: var(--muted);
}
.check{ display:flex; align-items:center; gap:.5rem; }
.booking__link{ font-weight:650; color: rgba(17,24,39,.9); }
.booking__link:hover{ text-decoration:underline; }

/* ========== Sections ========== */
.section{ padding: 54px 0; }
.section--alt{ background: rgba(18,18,18,.03); }

.section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap: 1rem;
  margin-bottom: 18px;
}
.section__title{
  margin:0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height:1.15;
  color: #3e4c33;
}
.section__desc{
  margin:.35rem 0 0;
  color: var(--muted);
  max-width: 68ch;
}
.section__link{
  font-weight:700;
  color: #BC8E6C;
}

.masnad-stats {
  padding: 80px 0;
  background: #3e4c33; /* soft corporate background */
}

.masnad-stats__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.masnad-stats__header h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: #f8eeea;
}

.masnad-stats__header p {
  font-size: 1rem;
  color: #f8eeea;
  line-height: 1.6;
}

.masnad-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ab6953;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f8eeea;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #f8eeea;
  font-weight: 500;
}

.masnad-stats__disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9ca3af;
}
/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: #edd1c55e;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.card__media{
  height: 170px;
  background-size:cover;
  background-position:center;
}
.card__body{ padding: 16px; }
.card__title{margin:0 0 .4rem;font-size:1.1rem;color: #3e4c33;}
.card__text{ margin:0 0 .8rem; color: var(--muted); }
.card__link{font-weight:700;color: #BC8E6C;}

/* Brands grid */
.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.brand{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 92px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: .25rem;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.brand:hover{ text-decoration:none; transform: translateY(-1px); }
.brand__name{ font-weight:800; }
.brand__tag{ color: var(--muted); font-weight:650; font-size:.95rem; }

/* Promo */
.promo{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items:center;
}
.promo__actions{ display:flex; gap:.8rem; flex-wrap:wrap; margin-top: 12px; }

.promo__media{
  position:relative;
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(17,24,39,.06));
  border: 1px solid var(--border);
  overflow:hidden;
}
.phone{
  position:absolute;
  width: 220px;
  height: 320px;
  border-radius: 26px;
  border: 10px solid rgba(17,24,39,.9);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  right: 28px;
  top: 18px;
  box-shadow: var(--shadow);
}
.phone--back{
  right: 120px;
  top: 54px;
  opacity:.75;
  transform: scale(.95);
}

/* Footer */
.footer{
  background: #AB6953;
  color: rgba(255,255,255,.88);
  padding: 46px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer__title{
  margin: 0 0 .6rem;
  font-size: 1rem;
}
.footer__link{
  display:block;
  padding:.22rem 0;
  opacity:.88;
}
.footer__link:hover{ opacity:1; text-decoration:none; }
.footer__small{ margin:.9rem 0 0; opacity:.75; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .masnad-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* @media (max-width: 980px){ */
@media (max-width: 700px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .booking__row{ grid-template-columns: 1fr 1fr; }
  .booking__submit{ grid-column: 1 / -1; }
  .cards{ grid-template-columns: 1fr; }
  .brand-grid{ grid-template-columns: 1fr; }
  .promo{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .booking__row{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .masnad-stats {
    padding: 60px 0;
  }

  .masnad-stats__grid {
    grid-template-columns: 1fr;
  }
}




/* -------------------------------------Portfolio Page ------------------------------------*/




/* Page hero */
.page-hero{
  background: #BC8E6C;
  border-bottom: 1px solid rgba(18,18,18,.08);
  padding: 54px 0 34px;
}
.page-hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.page-hero__eyebrow{
  margin:0 0 8px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #3E4C33;
  font-size: .82rem;
}
.page-hero__title{
  margin:0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #3E4C33;
}
.page-hero__subtitle{
  margin:0;
  max-width: 70ch;
  color: rgba(62,76,51,.88);
  font-size: 1.05rem;
}

/* Small note card */
.note-card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 16px;
  padding: 16px;
}
.note-card__title{
  font-weight: 850;
  color: #3E4C33;
  margin-bottom: 8px;
}
.note-card__text{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

/* Toolbar */
.section--tight{ padding: 26px 0; }

.portfolio-toolbar{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.tabs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab{
  appearance:none;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.60);
  color: #3E4C33;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  cursor:pointer;
}
.tab.is-active{
  background: #3E4C33;
  color: #EDD1C5;
  border-color: rgba(62,76,51,.75);
}

.search{
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.75);
  min-width: 240px;
  outline: none;
}
.search:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Portfolio cards */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.p-card__media{
  height: 170px;
  background-size: cover;
  background-position: center;
}

.p-card__body{
  padding: 16px;
}

.p-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-card__title{
  margin:0;
  font-size: 1.08rem;
  color: #3E4C33;
  font-weight: 850;
}

.badge{
  font-size: .82rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(171,105,83,.16);
  color: #AB6953;
  border: 1px solid rgba(171,105,83,.22);
  white-space: nowrap;
}

.p-card__desc{
  margin: 0 0 14px;
  color: rgba(18,18,18,.68);
  line-height: 1.6;
}

.p-card__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 10px;
}
.kpi__v{
  display:block;
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 4px;
}
.kpi__k{
  display:block;
  font-size: .85rem;
  color: rgba(18,18,18,.60);
  font-weight: 650;
}

.p-card__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.p-link{
  font-weight: 850;
  color: #BC8E6C;
}
.p-link--muted{
  color: rgba(62,76,51,.85);
}

/* CTA card */
.p-card--cta{
  background: #3E4C33;
  color: #EDD1C5;
}
.p-card--cta .p-card__body{ padding: 22px; }
.cta-box__title{
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
}
.cta-box__text{
  margin: 0 0 14px;
  color: rgba(237,209,197,.90);
  line-height: 1.6;
}
.cta-box__fine{
  margin: 12px 0 0;
  font-size: .85rem;
  color: rgba(237,209,197,.70);
}

/* Responsive */
@media (max-width: 980px){
  .page-hero__inner{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .p-card__kpis{ grid-template-columns: 1fr; }
  .search{ width: 100%; }
}



/* ----------------------------------  Our Team Page  -------------------------------------*/


/* =========================
   Team Page (Masnad)
   Add to bottom of style.css
========================= */

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-grid--compact{
  grid-template-columns: repeat(3, 1fr);
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.avatar--soft{
  background: rgba(62,76,51,.92);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 700;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  background: rgba(171,105,83,.14);
  border: 1px solid rgba(171,105,83,.20);
  color: #AB6953;
}

.t-card__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.team-note{
  margin-top: 18px;
  color: rgba(18,18,18,.60);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .team-grid,
  .team-grid--compact{
    grid-template-columns: 1fr;
  }
  .t-card{ padding: 16px; }
}


/* ----------------------------------- About US Page -------------------------------------*/



/* =========================
   About Page (Masnad)
   Add to bottom of style.css
========================= */

.about-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-nav__link{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.about-nav__link:hover{
  background: rgba(171,105,83,.14);
  border-color: rgba(171,105,83,.22);
  color: #3E4C33;
  text-decoration:none;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:start;
}

.about-text{
  margin: 12px 0 0;
  color: rgba(18,18,18,.72);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-pills{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-panel{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.about-panel__block{
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.06);
  margin-bottom: 10px;
}

.about-panel__label{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.about-panel__value{
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.about-panel__fine{
  margin-top: 10px;
  color: rgba(18,18,18,.55);
  font-size: .92rem;
}

.about-highlights{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight{
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.04);
}

.highlight__title{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 8px;
}

.highlight__text{
  color: rgba(18,18,18,.68);
  line-height: 1.65;
}

/* Team cards (reused from team page idea, kept here) */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 750;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.team-note{
  margin-top: 16px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Governance */
.gov-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gov-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.gov-card__title{
  margin: 0 0 8px;
  color: #3E4C33;
  font-weight: 950;
}

.gov-card__text{
  margin: 0 0 10px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.gov-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(18,18,18,.68);
  line-height: 1.7;
}

.gov-committees{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
}

.committee__title{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 10px;
}

.committee__items{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gov-note{
  margin-top: 12px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-highlights{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .gov-grid{ grid-template-columns: 1fr; }
}

/* --------------------- Contact Us ------------------------  */

/* =========================
   Contact Page (Masnad)
   Add to bottom of style.css
========================= */

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.contact-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.contact-card--soft{
  background: rgba(237,209,197,.35);
}

.contact-card__head{
  margin-bottom: 12px;
}

.contact-form{
  margin-top: 8px;
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}

.c-field__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .92rem;
}

.c-field__input{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.78);
  padding: 0 12px;
  outline:none;
  font-size: 1rem;
}

.c-field__textarea{
  height: auto;
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.c-field__input:focus{
  border-color: rgba(171,105,83,.55);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.contact-actions{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.contact-fine{
  margin:0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.5;
}

/* Side column */
.contact-side{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.contact-side__title{
  margin:0 0 10px;
  color: #3E4C33;
  font-weight: 950;
}

.contact-side__text{
  margin: 0 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.contact-info{
  display:grid;
  gap: 10px;
}

.info-item{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 12px;
}

.info-item__k{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.info-item__v{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

.info-item__v a{
  color: #BC8E6C;
  font-weight: 850;
  text-decoration:none;
}

.info-item__v a:hover{
  text-decoration: underline;
}

.divider{
  height:1px;
  background: rgba(18,18,18,.10);
  margin: 14px 0;
}

/* Map placeholder */
.map-card{
  padding: 0;
  overflow:hidden;
}

.map-card__top{
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  border-bottom: 1px solid rgba(18,18,18,.08);
  background: rgba(237,209,197,.35);
}

.map-badge{
  font-weight: 900;
  color: #3E4C33;
}

.map-text{
  color: rgba(18,18,18,.60);
  font-weight: 650;
  font-size: .92rem;
}

.map-box{
  height: 220px;
  background:
    linear-gradient(135deg, rgba(62,76,51,.18), rgba(171,105,83,.12)),
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.45), transparent 40%);
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-row{
    grid-template-columns: 1fr;
  }
}


/* Contact us updated overide */


/* =========================
   Contact Form FIX (Override)
   Paste at VERY BOTTOM of style.css
========================= */

.contact-card,
.contact-card * {
  box-sizing: border-box;
}

.contact-form {
  margin-top: 14px;
}

/* Force 2-column layout on desktop */
.contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-bottom: 12px;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Make each field block + vertical */
.contact-form .c-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100%;
}

/* Label style */
.contact-form .c-field__label {
  display: block !important;
  font-weight: 850;
  color: #3E4C33;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Input / select / textarea consistent */
.contact-form .c-field__input {
  width: 100% !important;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.78);
  outline: none;
  font-size: 1rem;
  color: rgba(18,18,18,.78);
}

/* Select fixes */
.contact-form select.c-field__input {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(62,76,51,.75) 50%),
    linear-gradient(135deg, rgba(62,76,51,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* Textarea fixes */
.contact-form .c-field__textarea {
  height: auto !important;
  min-height: 160px !important;
  padding: 12px 14px !important;
  resize: vertical;
  line-height: 1.6;
}

/* Focus state matches Masnad accent */
.contact-form .c-field__input:focus {
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Checkbox row */
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 16px;
  color: rgba(18,18,18,.70);
  font-weight: 650;
  line-height: 1.4;
}

.contact-form .check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #3E4C33;
}

/* Button area */
.contact-form .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make the submit button look premium & aligned */
.contact-form .btn.btn--primary {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
}

/* Small note */
.contact-form .contact-fine {
  margin: 0;
  color: rgba(18,18,18,.58);
  font-size: 0.92rem;
  line-height: 1.5;
}



/* coming soon page  */


/* =========================
   Coming Soon Page — Masnad
   Paste at bottom of style.css
========================= */

/* ========== Base ========== */

@font-face {
  font-family: "rbbold"; /* set name */
  src: url(assets/rbbold.ttf); /* url of the font */
}
@font-face {
  font-family: "rb"; /* set name */
  src: url(assets/rb.ttf); /* url of the font */
}

:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18,18,18,.65);
  --border: rgba(18,18,18,.12);
  --shadow: 0 12px 28px rgba(18,18,18,.12);
  --radius: 16px;
  --max: 1180px;

  --primary: #111827;     /* change to Masnad brand */
  --primary-2: #0b1220;
  --accent: #2563eb;      /* change to Masnad brand */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;

  /* font-family: "rb"; */
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{color:inherit;text-decoration:none;}
a:hover{
  text-decoration:underline;
  color:#AB6953 !important;
}
img{max-width:100%;display:block;/* height: 53px; */}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

/* ========== Buttons ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:650;
  cursor:pointer;
  white-space:nowrap;
}

.btn--sm{ padding:.55rem .85rem; font-size:.9rem; }

.btn--primary{
  background: #BC8E6C;;
  color:#fff;
  box-shadow: 0 10px 18px rgba(37,99,235,.25);
}
.btn--primary:hover{ filter:brightness(.95); text-decoration:none; }

.btn--secondary{
  background: transparent;
  border-color: var(--border);
}
.btn--secondary:hover{ background: rgba(18,18,18,.04); text-decoration:none; }

.btn--ghost{
  background: transparent;
  border-color: transparent;
}
.btn--ghost:hover{ background: rgba(255,255,255,.18); text-decoration:none; }

/* ========== Topbar + Header ========== */
.topbar{
  background: #AB6953;
  /* background: #3e4c33; */
  color: rgba(255,255,255,.9);
  font-size:.92rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.55rem 0;
  gap:1rem;
  color: #edd1c5;
}
.topbar__left, .topbar__right{ display:flex; align-items:center; gap:.85rem; }
.topbar__sep{ opacity:.5; }
.topbar__link{ opacity:.9; }
.topbar__link:hover{ opacity:1; text-decoration:none; }

.header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 10px;
  gap:1rem;
  background-color: #edd1c5;
  width: 100%;
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  letter-spacing:.2px;
}
.logo__mark{
  width:34px; height:34px;
  border-radius: 10px;
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
}
.logo--footer .logo__mark{ background:#fff; color:var(--primary); }

.nav{
  display:flex;
  gap:1.1rem;
  align-items:center;
}
.nav__link{
  font-weight:600;
  color: rgba(18,18,18,.8);
  padding:.35rem .25rem;
  color: rgb(62 76 51);
}
.nav__link:hover{ color: var(--text); text-decoration:none; }

.header__actions{
  display:flex;
  gap:.6rem;
  align-items:center;
}
.icon-btn{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(18,18,18,.03); }

.menu-btn{
  display:none;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background: #3d4d33;
  cursor:pointer;
}
.menu-btn__bar{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background: rgb(237 209 197);
  border-radius: 2px;
}

/* ========== Hero ========== */
.hero{
  position:relative;
  padding: clamp(28px, 4vw, 54px) 0 64px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgb(62 76 51), rgba(0, 0, 0, .15)), url(assets/images/homepage-banner.png);
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 40px);
  align-items:start;
  color:#fff;
}

.hero__content{
  padding-top: 20px;
  max-width: 560px;
}
.hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:750;
  opacity:.9;
  margin:0 0 .65rem;
  font-size:.85rem;
}
.hero__title{
  margin:0 0 .7rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height:1.05;
}
.hero__subtitle{
  margin:0 0 1.2rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}
.hero__ctas{ display:flex; gap:.8rem; flex-wrap:wrap; }

/* Booking widget */
.booking{
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  align-self:end;
}
.booking__row{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr .85fr auto;
  gap: 10px;
  align-items:end;
}
.field{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.field__label{
  font-size:.83rem;
  color: var(--muted);
  font-weight:650;
}
.field__input{
  height: 44px;
  border-radius: 12px;
  border:1px solid var(--border);
  padding: 0 12px;
  font-size: .98rem;
  outline:none;
  background:#fff;
}
.field__input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

.booking__submit{
  height: 44px;
  border-radius: 12px;
  width: 100%;
}

.booking__meta{
  margin-top: 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  font-size:.92rem;
  color: var(--muted);
}
.check{ display:flex; align-items:center; gap:.5rem; }
.booking__link{ font-weight:650; color: rgba(17,24,39,.9); }
.booking__link:hover{ text-decoration:underline; }

/* ========== Sections ========== */
.section{ padding: 54px 0; }
.section--alt{ background: rgba(18,18,18,.03); }

.section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap: 1rem;
  margin-bottom: 18px;
}
.section__title{
  margin:0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height:1.15;
  color: #3e4c33;
}
.section__desc{
  margin:.35rem 0 0;
  color: var(--muted);
  max-width: 68ch;
}
.section__link{
  font-weight:700;
  color: #BC8E6C;
}

.masnad-stats {
  padding: 80px 0;
  background: #3e4c33; /* soft corporate background */
}

.masnad-stats__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.masnad-stats__header h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: #f8eeea;
}

.masnad-stats__header p {
  font-size: 1rem;
  color: #f8eeea;
  line-height: 1.6;
}

.masnad-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ab6953;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f8eeea;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #f8eeea;
  font-weight: 500;
}

.masnad-stats__disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9ca3af;
}
/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: #edd1c55e;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.card__media{
  height: 170px;
  background-size:cover;
  background-position:center;
}
.card__body{ padding: 16px; }
.card__title{margin:0 0 .4rem;font-size:1.1rem;color: #3e4c33;}
.card__text{ margin:0 0 .8rem; color: var(--muted); }
.card__link{font-weight:700;color: #BC8E6C;}

/* Brands grid */
.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.brand{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 92px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: .25rem;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.brand:hover{ text-decoration:none; transform: translateY(-1px); }
.brand__name{ font-weight:800; }
.brand__tag{ color: var(--muted); font-weight:650; font-size:.95rem; }

/* Promo */
.promo{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items:center;
}
.promo__actions{ display:flex; gap:.8rem; flex-wrap:wrap; margin-top: 12px; }

.promo__media{
  position:relative;
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(17,24,39,.06));
  border: 1px solid var(--border);
  overflow:hidden;
}
.phone{
  position:absolute;
  width: 220px;
  height: 320px;
  border-radius: 26px;
  border: 10px solid rgba(17,24,39,.9);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  right: 28px;
  top: 18px;
  box-shadow: var(--shadow);
}
.phone--back{
  right: 120px;
  top: 54px;
  opacity:.75;
  transform: scale(.95);
}

/* Footer */
.footer{
  background: #AB6953;
  color: rgba(255,255,255,.88);
  padding: 46px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer__title{
  margin: 0 0 .6rem;
  font-size: 1rem;
}
.footer__link{
  display:block;
  padding:.22rem 0;
  opacity:.88;
}
.footer__link:hover{ opacity:1; text-decoration:none; }
.footer__small{ margin:.9rem 0 0; opacity:.75; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .masnad-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* @media (max-width: 980px){ */
@media (max-width: 700px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .booking__row{ grid-template-columns: 1fr 1fr; }
  .booking__submit{ grid-column: 1 / -1; }
  .cards{ grid-template-columns: 1fr; }
  .brand-grid{ grid-template-columns: 1fr; }
  .promo{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .booking__row{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .masnad-stats {
    padding: 60px 0;
  }

  .masnad-stats__grid {
    grid-template-columns: 1fr;
  }
}




/* -------------------------------------Portfolio Page ------------------------------------*/




/* Page hero */
.page-hero{
  background: #BC8E6C;
  border-bottom: 1px solid rgba(18,18,18,.08);
  padding: 54px 0 34px;
}
.page-hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.page-hero__eyebrow{
  margin:0 0 8px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #edd1c5;
  font-size: .82rem;
}
.page-hero__title{
  margin:0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #ffffff;
}
.page-hero__subtitle{
  margin:0;
  max-width: 70ch;
  color: rgb(255 255 255);
  font-size: 1.05rem;
}

/* Small note card */
.note-card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 16px;
  padding: 16px;
}
.note-card__title{
  font-weight: 850;
  color: #3E4C33;
  margin-bottom: 8px;
}
.note-card__text{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

/* Toolbar */
.section--tight{ padding: 26px 0; }

.portfolio-toolbar{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.tabs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab{
  appearance:none;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.60);
  color: #3E4C33;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  cursor:pointer;
}
.tab.is-active{
  background: #3E4C33;
  color: #EDD1C5;
  border-color: rgba(62,76,51,.75);
}

.search{
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.75);
  min-width: 240px;
  outline: none;
}
.search:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Portfolio cards */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.p-card__media{
  height: 170px;
  background-size: cover;
  background-position: center;
}

.p-card__body{
  padding: 16px;
}

.p-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-card__title{
  margin:0;
  font-size: 1.08rem;
  color: #3E4C33;
  font-weight: 850;
}

.badge{
  font-size: .82rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(171,105,83,.16);
  color: #AB6953;
  border: 1px solid rgba(171,105,83,.22);
  white-space: nowrap;
}

.p-card__desc{
  margin: 0 0 14px;
  color: rgba(18,18,18,.68);
  line-height: 1.6;
}

.p-card__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 10px;
}
.kpi__v{
  display:block;
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 4px;
}
.kpi__k{
  display:block;
  font-size: .85rem;
  color: rgba(18,18,18,.60);
  font-weight: 650;
}

.p-card__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.p-link{
  font-weight: 850;
  color: #BC8E6C;
}
.p-link--muted{
  color: rgba(62,76,51,.85);
}

/* CTA card */
.p-card--cta{
  background: #3E4C33;
  color: #EDD1C5;
}
.p-card--cta .p-card__body{ padding: 22px; }
.cta-box__title{
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
}
.cta-box__text{
  margin: 0 0 14px;
  color: rgba(237,209,197,.90);
  line-height: 1.6;
}
.cta-box__fine{
  margin: 12px 0 0;
  font-size: .85rem;
  color: rgba(237,209,197,.70);
}

/* Responsive */
@media (max-width: 980px){
  .page-hero__inner{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .p-card__kpis{ grid-template-columns: 1fr; }
  .search{ width: 100%; }
}



/* ----------------------------------  Our Team Page  -------------------------------------*/


/* =========================
   Team Page (Masnad)
   Add to bottom of style.css
========================= */

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-grid--compact{
  grid-template-columns: repeat(3, 1fr);
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.avatar--soft{
  background: rgba(62,76,51,.92);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 700;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  background: rgba(171,105,83,.14);
  border: 1px solid rgba(171,105,83,.20);
  color: #AB6953;
}

.t-card__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.team-note{
  margin-top: 18px;
  color: rgba(18,18,18,.60);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .team-grid,
  .team-grid--compact{
    grid-template-columns: 1fr;
  }
  .t-card{ padding: 16px; }
}


/* ----------------------------------- About US Page -------------------------------------*/



/* =========================
   About Page (Masnad)
   Add to bottom of style.css
========================= */

.about-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-nav__link{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.about-nav__link:hover{
  background: rgba(171,105,83,.14);
  border-color: rgba(171,105,83,.22);
  color: #3E4C33;
  text-decoration:none;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:start;
}

.about-text{
  margin: 12px 0 0;
  color: rgba(18,18,18,.72);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-pills{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-panel{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.about-panel__block{
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.06);
  margin-bottom: 10px;
}

.about-panel__label{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.about-panel__value{
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.about-panel__fine{
  margin-top: 10px;
  color: rgba(18,18,18,.55);
  font-size: .92rem;
}

.about-highlights{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight{
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.04);
}

.highlight__title{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 8px;
}

.highlight__text{
  color: rgba(18,18,18,.68);
  line-height: 1.65;
}

/* Team cards (reused from team page idea, kept here) */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 750;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.team-note{
  margin-top: 16px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Governance */
.gov-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gov-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.gov-card__title{
  margin: 0 0 8px;
  color: #3E4C33;
  font-weight: 950;
}

.gov-card__text{
  margin: 0 0 10px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.gov-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(18,18,18,.68);
  line-height: 1.7;
}

.gov-committees{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
}

.committee__title{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 10px;
}

.committee__items{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gov-note{
  margin-top: 12px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-highlights{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .gov-grid{ grid-template-columns: 1fr; }
}

/* --------------------- Contact Us ------------------------  */

/* =========================
   Contact Page (Masnad)
   Add to bottom of style.css
========================= */

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.contact-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.contact-card--soft{
  background: rgba(237,209,197,.35);
}

.contact-card__head{
  margin-bottom: 12px;
}

.contact-form{
  margin-top: 8px;
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}

.c-field__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .92rem;
}

.c-field__input{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.78);
  padding: 0 12px;
  outline:none;
  font-size: 1rem;
}

.c-field__textarea{
  height: auto;
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.c-field__input:focus{
  border-color: rgba(171,105,83,.55);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.contact-actions{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.contact-fine{
  margin:0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.5;
}

/* Side column */
.contact-side{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.contact-side__title{
  margin:0 0 10px;
  color: #3E4C33;
  font-weight: 950;
}

.contact-side__text{
  margin: 0 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.contact-info{
  display:grid;
  gap: 10px;
}

.info-item{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 12px;
}

.info-item__k{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.info-item__v{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

.info-item__v a{
  color: #BC8E6C;
  font-weight: 850;
  text-decoration:none;
}

.info-item__v a:hover{
  text-decoration: underline;
}

.divider{
  height:1px;
  background: rgba(18,18,18,.10);
  margin: 14px 0;
}

/* Map placeholder */
.map-card{
  padding: 0;
  overflow:hidden;
}

.map-card__top{
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  border-bottom: 1px solid rgba(18,18,18,.08);
  background: rgba(237,209,197,.35);
}

.map-badge{
  font-weight: 900;
  color: #3E4C33;
}

.map-text{
  color: rgba(18,18,18,.60);
  font-weight: 650;
  font-size: .92rem;
}

.map-box{
  height: 220px;
  background:
    linear-gradient(135deg, rgba(62,76,51,.18), rgba(171,105,83,.12)),
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.45), transparent 40%);
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-row{
    grid-template-columns: 1fr;
  }
}


/* Contact us updated overide */


/* =========================
   Contact Form FIX (Override)
   Paste at VERY BOTTOM of style.css
========================= */

.contact-card,
.contact-card * {
  box-sizing: border-box;
}

.contact-form {
  margin-top: 14px;
}

/* Force 2-column layout on desktop */
.contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-bottom: 12px;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Make each field block + vertical */
.contact-form .c-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100%;
}

/* Label style */
.contact-form .c-field__label {
  display: block !important;
  font-weight: 850;
  color: #3E4C33;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Input / select / textarea consistent */
.contact-form .c-field__input {
  width: 100% !important;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.78);
  outline: none;
  font-size: 1rem;
  color: rgba(18,18,18,.78);
}

/* Select fixes */
.contact-form select.c-field__input {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(62,76,51,.75) 50%),
    linear-gradient(135deg, rgba(62,76,51,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* Textarea fixes */
.contact-form .c-field__textarea {
  height: auto !important;
  min-height: 160px !important;
  padding: 12px 14px !important;
  resize: vertical;
  line-height: 1.6;
}

/* Focus state matches Masnad accent */
.contact-form .c-field__input:focus {
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Checkbox row */
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 16px;
  color: rgba(18,18,18,.70);
  font-weight: 650;
  line-height: 1.4;
}

.contact-form .check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #3E4C33;
}

/* Button area */
.contact-form .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make the submit button look premium & aligned */
.contact-form .btn.btn--primary {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
}

/* Small note */
.contact-form .contact-fine {
  margin: 0;
  color: rgba(18,18,18,.58);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ------------------------------------------ Latest News Page ---------------------------*/
/* =========================
   Latest News Page — Masnad
   Paste at bottom of style.css
========================= */

.news-head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.news-head__right{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.news-pill{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
}

.news-pill--soft{
  background: rgba(171,105,83,.12);
  border-color: rgba(171,105,83,.20);
  color: #AB6953;
}

.news-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.news-card{
  display:block;
  text-decoration:none;
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 16px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.news-card:hover{
  transform: translateY(-2px);
  border-color: rgba(171,105,83,.26);
  box-shadow: 0 14px 24px rgba(18,18,18,.08);
}

.news-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.news-source{
  font-weight: 900;
  color: #3E4C33;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: .85rem;
}

.news-time{
  color: rgba(18,18,18,.55);
  font-weight: 800;
  font-size: .85rem;
}

.news-title{
  color: rgba(18,18,18,.80);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 10px;
}

.news-link{
  color: #BC8E6C;
  font-weight: 900;
}

.news-empty{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  padding: 18px;
  color: rgba(18,18,18,.70);
}

.news-footnote{
  margin-top: 14px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px){
  .news-grid{ grid-template-columns: 1fr; }
}


/* coming soon page  */


/* =========================
   Coming Soon Page — Masnad
   Paste at bottom of style.css
========================= */

.coming-page{
  background: #faf1ee45;
}

.coming{
  min-height: 100vh;
  display: grid;
  place-items: center;
  /* padding: 28px 16px; */
  /* background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 82% 75%, rgba(255,255,255,.35), transparent 42%),
    linear-gradient(180deg, rgba(62,76,51,.06), rgba(171,105,83,.04)); */
}

.coming__shell{
  width: min(1040px, 100%);
  /* border-radius: 26px; */
  border: 3px solid #414e35;
  background: rgb(237 209 197);
  box-shadow: 0 18px 40px rgba(18,18,18,.08);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

/* subtle brand corner accent */
.coming__shell::before{
  content:"";
  position:absolute;
  inset: -40% -30% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(62,76,51,.18), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(171,105,83,.16), transparent 55%);
  transform: rotate(18deg);
  pointer-events: none;
}

.coming__top{
  display: block;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  position: relative;
}

.coming__logo{
  height: 120px;
  margin: 30px auto;
  width: auto;
  display:block;
}

.coming__meta{
  display:flex;
  gap: 10px;
  align-items:center;
}

.coming__pill{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(237,209,197,.55);
  border: 1px solid rgba(18,18,18,.10);
}

.coming__lang{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-weight: 900;
  color: #3E4C33;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.coming__lang:hover{
  background: rgba(171,105,83,.14);
}

.coming__content{
  padding: 00 18px;
  /* position: relative; */
}

.coming__title{
  text-align: center;
  margin: 20px;
  color: #edd1c5;
  font-weight: 950;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
}

.coming__subtitle{
  margin: 20px auto 22px;
  color: rgb(237 209 197);
  line-height: 1.7;
  max-width: 70ch;
  font-size: 1.05rem;
}

.coming__card{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 22px rgba(18,18,18,.06);
  max-width: 620px;
  margin: auto;
}

.coming__card-head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.coming__card-title{
  font-weight: 950;
  color: #3E4C33;
}

.coming__card-note{
  color: rgba(18,18,18,.55);
  font-weight: 700;
  font-size: .92rem;
}

.coming__form{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items:end;
}

.coming__field{
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.coming__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .95rem;
}

.coming__input{
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.85);
  padding: 0 14px;
  outline: none;
  font-size: 1rem;
}

.coming__input:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.coming__btn{
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(18,18,18,.12);
  background: #3E4C33;
  color: #EDD1C5;
  font-weight: 900;
  cursor:pointer;
  white-space: nowrap;
}
.coming__btn:hover{
  filter: brightness(1.03);
}

.coming__fine{
  margin: 12px 0 0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.55;
}

.coming__info{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 820px;
}

.coming__info-item{
  background: rgba(237,209,197,.45);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 14px;
}

.coming__k{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 8px;
}

.coming__v{
  color: rgba(18,18,18,.68);
  font-weight: 700;
}

.coming__v a{
  color: #BC8E6C;
  text-decoration:none;
  font-weight: 900;
}
.coming__v a:hover{ text-decoration: underline; }

.coming__footer{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(18,18,18,.10);
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.coming__footer-left{
  color: rgba(18,18,18,.62);
  font-weight: 700;
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
}

.coming__dot{
  opacity: .7;
}

.coming__footer-link{
  color: rgba(18,18,18,.62);
  text-decoration:none;
  font-weight: 800;
}
.coming__footer-link:hover{
  color: #3E4C33;
  text-decoration: underline;
}

.coming__footer-right{
  display:flex;
  gap: 12px;
  align-items:center;
}

.coming__social{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  color: #3E4C33;
  font-weight: 900;
  text-decoration:none;
}
.coming__social:hover{
  background: rgba(171,105,83,.14);
}

/* Responsive */
@media (max-width: 860px){
  .coming__shell{ padding: 18px; }
  .coming__info{ grid-template-columns: 1fr; }
  .coming__form{ grid-template-columns: 1fr; }
  .coming__btn{ width: 100%; }
}


/* New Coming Soon Page */


/* =========================
   Coming Soon (Map Layout)
   Masnad palette:
   #3E4C33 #EDD1C5 #BC8E6C #AB6953
========================= */

/* =========================
   Masnad Coming Soon Page
========================= */
/* ========== Base ========== */
*{
  font-family:rb !important;
}
@font-face {
  font-family: "rbbold"; /* set name */
  src: url(assets/rbbold.ttf); /* url of the font */
}
@font-face {
  font-family: "rb"; /* set name */
  src: url(assets/rb.ttf); /* url of the font */
}

:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18,18,18,.65);
  --border: rgba(18,18,18,.12);
  --shadow: 0 12px 28px rgba(18,18,18,.12);
  --radius: 16px;
  --max: 1180px;

  --primary: #111827;     /* change to Masnad brand */
  --primary-2: #0b1220;
  --accent: #2563eb;      /* change to Masnad brand */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;

  /* font-family: "rb"; */
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{color:inherit;text-decoration:none;}
a:hover{
  text-decoration:underline;
  color:#AB6953 !important;
}
img{max-width:100%;display:block;/* height: 53px; */}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

/* ========== Buttons ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:650;
  cursor:pointer;
  white-space:nowrap;
}

.btn--sm{ padding:.55rem .85rem; font-size:.9rem; }

.btn--primary{
  background: #BC8E6C;;
  color:#fff;
  box-shadow: 0 10px 18px rgba(37,99,235,.25);
}
.btn--primary:hover{ filter:brightness(.95); text-decoration:none; }

.btn--secondary{
  background: transparent;
  border-color: var(--border);
}
.btn--secondary:hover{ background: rgba(18,18,18,.04); text-decoration:none; }

.btn--ghost{
  background: transparent;
  border-color: transparent;
}
.btn--ghost:hover{ background: rgba(255,255,255,.18); text-decoration:none; }

/* ========== Topbar + Header ========== */
.topbar{
  background: #AB6953;
  /* background: #3e4c33; */
  color: rgba(255,255,255,.9);
  font-size:.92rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.55rem 0;
  gap:1rem;
  color: #edd1c5;
}
.topbar__left, .topbar__right{ display:flex; align-items:center; gap:.85rem; }
.topbar__sep{ opacity:.5; }
.topbar__link{ opacity:.9; }
.topbar__link:hover{ opacity:1; text-decoration:none; }

.header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 10px;
  gap:1rem;
  background-color: #edd1c5;
  width: 100%;
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  letter-spacing:.2px;
}
.logo__mark{
  width:34px; height:34px;
  border-radius: 10px;
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
}
.logo--footer .logo__mark{ background:#fff; color:var(--primary); }

.nav{
  display:flex;
  gap:1.1rem;
  align-items:center;
}
.nav__link{
  font-weight:600;
  color: rgba(18,18,18,.8);
  padding:.35rem .25rem;
  color: rgb(62 76 51);
}
.nav__link:hover{ color: var(--text); text-decoration:none; }

.header__actions{
  display:flex;
  gap:.6rem;
  align-items:center;
}
.icon-btn{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(18,18,18,.03); }

.menu-btn{
  display:none;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background: #3d4d33;
  cursor:pointer;
}
.menu-btn__bar{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background: rgb(237 209 197);
  border-radius: 2px;
}

/* ========== Hero ========== */
.hero{
  position:relative;
  padding: clamp(28px, 4vw, 54px) 0 64px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgb(62 76 51), rgba(0, 0, 0, .15)), url(assets/images/homepage-banner.png);
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 40px);
  align-items:start;
  color:#fff;
}

.hero__content{
  padding-top: 20px;
  max-width: 560px;
}
.hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:750;
  opacity:.9;
  margin:0 0 .65rem;
  font-size:.85rem;
}
.hero__title{
  margin:0 0 .7rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height:1.05;
}
.hero__subtitle{
  margin:0 0 1.2rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}
.hero__ctas{ display:flex; gap:.8rem; flex-wrap:wrap; }

/* Booking widget */
.booking{
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  align-self:end;
}
.booking__row{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr .85fr auto;
  gap: 10px;
  align-items:end;
}
.field{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.field__label{
  font-size:.83rem;
  color: var(--muted);
  font-weight:650;
}
.field__input{
  height: 44px;
  border-radius: 12px;
  border:1px solid var(--border);
  padding: 0 12px;
  font-size: .98rem;
  outline:none;
  background:#fff;
}
.field__input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

.booking__submit{
  height: 44px;
  border-radius: 12px;
  width: 100%;
}

.booking__meta{
  margin-top: 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  font-size:.92rem;
  color: var(--muted);
}
.check{ display:flex; align-items:center; gap:.5rem; }
.booking__link{ font-weight:650; color: rgba(17,24,39,.9); }
.booking__link:hover{ text-decoration:underline; }

/* ========== Sections ========== */
.section{ padding: 54px 0; }
.section--alt{ background: rgba(18,18,18,.03); }

.section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap: 1rem;
  margin-bottom: 18px;
}
.section__title{
  margin:0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height:1.15;
  color: #3e4c33;
}
.section__desc{
  margin:.35rem 0 0;
  color: var(--muted);
  max-width: 68ch;
}
.section__link{
  font-weight:700;
  color: #BC8E6C;
}

.masnad-stats {
  padding: 80px 0;
  background: #3e4c33; /* soft corporate background */
}

.masnad-stats__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.masnad-stats__header h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: #f8eeea;
}

.masnad-stats__header p {
  font-size: 1rem;
  color: #f8eeea;
  line-height: 1.6;
}

.masnad-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ab6953;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f8eeea;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #f8eeea;
  font-weight: 500;
}

.masnad-stats__disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9ca3af;
}
/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: #edd1c55e;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.card__media{
  height: 170px;
  background-size:cover;
  background-position:center;
}
.card__body{ padding: 16px; }
.card__title{margin:0 0 .4rem;font-size:1.1rem;color: #3e4c33;}
.card__text{ margin:0 0 .8rem; color: var(--muted); }
.card__link{font-weight:700;color: #BC8E6C;}

/* Brands grid */
.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.brand{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 92px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: .25rem;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.brand:hover{ text-decoration:none; transform: translateY(-1px); }
.brand__name{ font-weight:800; }
.brand__tag{ color: var(--muted); font-weight:650; font-size:.95rem; }

/* Promo */
.promo{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items:center;
}
.promo__actions{ display:flex; gap:.8rem; flex-wrap:wrap; margin-top: 12px; }

.promo__media{
  position:relative;
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(17,24,39,.06));
  border: 1px solid var(--border);
  overflow:hidden;
}
.phone{
  position:absolute;
  width: 220px;
  height: 320px;
  border-radius: 26px;
  border: 10px solid rgba(17,24,39,.9);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  right: 28px;
  top: 18px;
  box-shadow: var(--shadow);
}
.phone--back{
  right: 120px;
  top: 54px;
  opacity:.75;
  transform: scale(.95);
}

/* Footer */
.footer{
  background: #AB6953;
  color: rgba(255,255,255,.88);
  padding: 46px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer__title{
  margin: 0 0 .6rem;
  font-size: 1rem;
}
.footer__link{
  display:block;
  padding:.22rem 0;
  opacity:.88;
}
.footer__link:hover{ opacity:1; text-decoration:none; }
.footer__small{ margin:.9rem 0 0; opacity:.75; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .masnad-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* @media (max-width: 980px){ */
@media (max-width: 700px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .booking__row{ grid-template-columns: 1fr 1fr; }
  .booking__submit{ grid-column: 1 / -1; }
  .cards{ grid-template-columns: 1fr; }
  .brand-grid{ grid-template-columns: 1fr; }
  .promo{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .booking__row{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .masnad-stats {
    padding: 60px 0;
  }

  .masnad-stats__grid {
    grid-template-columns: 1fr;
  }
}




/* -------------------------------------Portfolio Page ------------------------------------*/




/* Page hero */
.page-hero{
  background: #BC8E6C;
  border-bottom: 1px solid rgba(18,18,18,.08);
  padding: 54px 0 34px;
}
.page-hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.page-hero__eyebrow{
  margin:0 0 8px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #3E4C33;
  font-size: .82rem;
}
.page-hero__title{
  margin:0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #3E4C33;
}
.page-hero__subtitle{
  margin:0;
  max-width: 70ch;
  color: rgba(62,76,51,.88);
  font-size: 1.05rem;
}

/* Small note card */
.note-card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 16px;
  padding: 16px;
}
.note-card__title{
  font-weight: 850;
  color: #3E4C33;
  margin-bottom: 8px;
}
.note-card__text{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

/* Toolbar */
.section--tight{ padding: 26px 0; }

.portfolio-toolbar{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.tabs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab{
  appearance:none;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.60);
  color: #3E4C33;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  cursor:pointer;
}
.tab.is-active{
  background: #3E4C33;
  color: #EDD1C5;
  border-color: rgba(62,76,51,.75);
}

.search{
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.75);
  min-width: 240px;
  outline: none;
}
.search:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Portfolio cards */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.p-card__media{
  height: 170px;
  background-size: cover;
  background-position: center;
}

.p-card__body{
  padding: 16px;
}

.p-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-card__title{
  margin:0;
  font-size: 1.08rem;
  color: #3E4C33;
  font-weight: 850;
}

.badge{
  font-size: .82rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(171,105,83,.16);
  color: #AB6953;
  border: 1px solid rgba(171,105,83,.22);
  white-space: nowrap;
}

.p-card__desc{
  margin: 0 0 14px;
  color: rgba(18,18,18,.68);
  line-height: 1.6;
}

.p-card__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 10px;
}
.kpi__v{
  display:block;
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 4px;
}
.kpi__k{
  display:block;
  font-size: .85rem;
  color: rgba(18,18,18,.60);
  font-weight: 650;
}

.p-card__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.p-link{
  font-weight: 850;
  color: #BC8E6C;
}
.p-link--muted{
  color: rgba(62,76,51,.85);
}

/* CTA card */
.p-card--cta{
  background: #3E4C33;
  color: #EDD1C5;
}
.p-card--cta .p-card__body{ padding: 22px; }
.cta-box__title{
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
}
.cta-box__text{
  margin: 0 0 14px;
  color: rgba(237,209,197,.90);
  line-height: 1.6;
}
.cta-box__fine{
  margin: 12px 0 0;
  font-size: .85rem;
  color: rgba(237,209,197,.70);
}

/* Responsive */
@media (max-width: 980px){
  .page-hero__inner{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .p-card__kpis{ grid-template-columns: 1fr; }
  .search{ width: 100%; }
}



/* ----------------------------------  Our Team Page  -------------------------------------*/


/* =========================
   Team Page (Masnad)
   Add to bottom of style.css
========================= */

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-grid--compact{
  grid-template-columns: repeat(3, 1fr);
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.avatar--soft{
  background: rgba(62,76,51,.92);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 700;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  background: rgba(171,105,83,.14);
  border: 1px solid rgba(171,105,83,.20);
  color: #AB6953;
}

.t-card__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.team-note{
  margin-top: 18px;
  color: rgba(18,18,18,.60);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .team-grid,
  .team-grid--compact{
    grid-template-columns: 1fr;
  }
  .t-card{ padding: 16px; }
}


/* ----------------------------------- About US Page -------------------------------------*/



/* =========================
   About Page (Masnad)
   Add to bottom of style.css
========================= */

.about-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-nav__link{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.about-nav__link:hover{
  background: rgba(171,105,83,.14);
  border-color: rgba(171,105,83,.22);
  color: #3E4C33;
  text-decoration:none;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:start;
}

.about-text{
  margin: 12px 0 0;
  color: rgba(18,18,18,.72);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-pills{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-panel{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.about-panel__block{
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.06);
  margin-bottom: 10px;
}

.about-panel__label{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.about-panel__value{
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.about-panel__fine{
  margin-top: 10px;
  color: rgba(18,18,18,.55);
  font-size: .92rem;
}

.about-highlights{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight{
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.04);
}

.highlight__title{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 8px;
}

.highlight__text{
  color: rgba(18,18,18,.68);
  line-height: 1.65;
}

/* Team cards (reused from team page idea, kept here) */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 750;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.team-note{
  margin-top: 16px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Governance */
.gov-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gov-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.gov-card__title{
  margin: 0 0 8px;
  color: #3E4C33;
  font-weight: 950;
}

.gov-card__text{
  margin: 0 0 10px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.gov-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(18,18,18,.68);
  line-height: 1.7;
}

.gov-committees{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
}

.committee__title{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 10px;
}

.committee__items{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gov-note{
  margin-top: 12px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-highlights{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .gov-grid{ grid-template-columns: 1fr; }
}

/* --------------------- Contact Us ------------------------  */

/* =========================
   Contact Page (Masnad)
   Add to bottom of style.css
========================= */

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.contact-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.contact-card--soft{
  background: rgba(237,209,197,.35);
}

.contact-card__head{
  margin-bottom: 12px;
}

.contact-form{
  margin-top: 8px;
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}

.c-field__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .92rem;
}

.c-field__input{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.78);
  padding: 0 12px;
  outline:none;
  font-size: 1rem;
}

.c-field__textarea{
  height: auto;
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.c-field__input:focus{
  border-color: rgba(171,105,83,.55);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.contact-actions{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.contact-fine{
  margin:0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.5;
}

/* Side column */
.contact-side{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.contact-side__title{
  margin:0 0 10px;
  color: #3E4C33;
  font-weight: 950;
}

.contact-side__text{
  margin: 0 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.contact-info{
  display:grid;
  gap: 10px;
}

.info-item{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 12px;
}

.info-item__k{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.info-item__v{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

.info-item__v a{
  color: #BC8E6C;
  font-weight: 850;
  text-decoration:none;
}

.info-item__v a:hover{
  text-decoration: underline;
}

.divider{
  height:1px;
  background: rgba(18,18,18,.10);
  margin: 14px 0;
}

/* Map placeholder */
.map-card{
  padding: 0;
  overflow:hidden;
}

.map-card__top{
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  border-bottom: 1px solid rgba(18,18,18,.08);
  background: rgba(237,209,197,.35);
}

.map-badge{
  font-weight: 900;
  color: #3E4C33;
}

.map-text{
  color: rgba(18,18,18,.60);
  font-weight: 650;
  font-size: .92rem;
}

.map-box{
  height: 220px;
  background:
    linear-gradient(135deg, rgba(62,76,51,.18), rgba(171,105,83,.12)),
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.45), transparent 40%);
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-row{
    grid-template-columns: 1fr;
  }
}


/* Contact us updated overide */


/* =========================
   Contact Form FIX (Override)
   Paste at VERY BOTTOM of style.css
========================= */

.contact-card,
.contact-card * {
  box-sizing: border-box;
}

.contact-form {
  margin-top: 14px;
}

/* Force 2-column layout on desktop */
.contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-bottom: 12px;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Make each field block + vertical */
.contact-form .c-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100%;
}

/* Label style */
.contact-form .c-field__label {
  display: block !important;
  font-weight: 850;
  color: #3E4C33;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Input / select / textarea consistent */
.contact-form .c-field__input {
  width: 100% !important;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.78);
  outline: none;
  font-size: 1rem;
  color: rgba(18,18,18,.78);
}

/* Select fixes */
.contact-form select.c-field__input {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(62,76,51,.75) 50%),
    linear-gradient(135deg, rgba(62,76,51,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* Textarea fixes */
.contact-form .c-field__textarea {
  height: auto !important;
  min-height: 160px !important;
  padding: 12px 14px !important;
  resize: vertical;
  line-height: 1.6;
}

/* Focus state matches Masnad accent */
.contact-form .c-field__input:focus {
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Checkbox row */
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 16px;
  color: rgba(18,18,18,.70);
  font-weight: 650;
  line-height: 1.4;
}

.contact-form .check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #3E4C33;
}

/* Button area */
.contact-form .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make the submit button look premium & aligned */
.contact-form .btn.btn--primary {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
}

/* Small note */
.contact-form .contact-fine {
  margin: 0;
  color: rgba(18,18,18,.58);
  font-size: 0.92rem;
  line-height: 1.5;
}



/* coming soon page  */


/* =========================
   Coming Soon Page — Masnad
   Paste at bottom of style.css
========================= */

/* ========== Base ========== */

@font-face {
  font-family: "rbbold"; /* set name */
  src: url(assets/rbbold.ttf); /* url of the font */
}
@font-face {
  font-family: "rb"; /* set name */
  src: url(assets/rb.ttf); /* url of the font */
}

:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18,18,18,.65);
  --border: rgba(18,18,18,.12);
  --shadow: 0 12px 28px rgba(18,18,18,.12);
  --radius: 16px;
  --max: 1180px;

  --primary: #111827;     /* change to Masnad brand */
  --primary-2: #0b1220;
  --accent: #2563eb;      /* change to Masnad brand */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;

  /* font-family: "rb"; */
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{color:inherit;text-decoration:none;}
a:hover{
  text-decoration:underline;
  color:#AB6953 !important;
}
img{max-width:100%;display:block;/* height: 53px; */}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

/* ========== Buttons ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:650;
  cursor:pointer;
  white-space:nowrap;
}

.btn--sm{ padding:.55rem .85rem; font-size:.9rem; }

.btn--primary{
  background: #BC8E6C;;
  color:#fff;
  box-shadow: 0 10px 18px rgba(37,99,235,.25);
}
.btn--primary:hover{ filter:brightness(.95); text-decoration:none; }

.btn--secondary{
  background: transparent;
  border-color: var(--border);
}
.btn--secondary:hover{ background: rgba(18,18,18,.04); text-decoration:none; }

.btn--ghost{
  background: transparent;
  border-color: transparent;
}
.btn--ghost:hover{ background: rgba(255,255,255,.18); text-decoration:none; }

/* ========== Topbar + Header ========== */
.topbar{
  background: #AB6953;
  /* background: #3e4c33; */
  color: rgba(255,255,255,.9);
  font-size:.92rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.55rem 0;
  gap:1rem;
  color: #edd1c5;
}
.topbar__left, .topbar__right{ display:flex; align-items:center; gap:.85rem; }
.topbar__sep{ opacity:.5; }
.topbar__link{ opacity:.9; }
.topbar__link:hover{ opacity:1; text-decoration:none; }

.header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 10px;
  gap:1rem;
  background-color: #edd1c5;
  width: 100%;
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  letter-spacing:.2px;
}
.logo__mark{
  width:34px; height:34px;
  border-radius: 10px;
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
}
.logo--footer .logo__mark{ background:#fff; color:var(--primary); }

.nav{
  display:flex;
  gap:1.1rem;
  align-items:center;
}
.nav__link{
  font-weight:600;
  color: rgba(18,18,18,.8);
  padding:.35rem .25rem;
  color: rgb(62 76 51);
}
.nav__link:hover{ color: var(--text); text-decoration:none; }

.header__actions{
  display:flex;
  gap:.6rem;
  align-items:center;
}
.icon-btn{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(18,18,18,.03); }

.menu-btn{
  display:none;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background: #3d4d33;
  cursor:pointer;
}
.menu-btn__bar{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background: rgb(237 209 197);
  border-radius: 2px;
}

/* ========== Hero ========== */
.hero{
  position:relative;
  padding: clamp(28px, 4vw, 54px) 0 64px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgb(62 76 51), rgba(0, 0, 0, .15)), url(assets/images/homepage-banner.png);
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 40px);
  align-items:start;
  color:#fff;
}

.hero__content{
  padding-top: 20px;
  max-width: 560px;
}
.hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:750;
  opacity:.9;
  margin:0 0 .65rem;
  font-size:.85rem;
}
.hero__title{
  margin:0 0 .7rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height:1.05;
}
.hero__subtitle{
  margin:0 0 1.2rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}
.hero__ctas{ display:flex; gap:.8rem; flex-wrap:wrap; }

/* Booking widget */
.booking{
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  align-self:end;
}
.booking__row{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr .85fr auto;
  gap: 10px;
  align-items:end;
}
.field{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.field__label{
  font-size:.83rem;
  color: var(--muted);
  font-weight:650;
}
.field__input{
  height: 44px;
  border-radius: 12px;
  border:1px solid var(--border);
  padding: 0 12px;
  font-size: .98rem;
  outline:none;
  background:#fff;
}
.field__input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

.booking__submit{
  height: 44px;
  border-radius: 12px;
  width: 100%;
}

.booking__meta{
  margin-top: 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  font-size:.92rem;
  color: var(--muted);
}
.check{ display:flex; align-items:center; gap:.5rem; }
.booking__link{ font-weight:650; color: rgba(17,24,39,.9); }
.booking__link:hover{ text-decoration:underline; }

/* ========== Sections ========== */
.section{ padding: 54px 0; }
.section--alt{ background: rgba(18,18,18,.03); }

.section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap: 1rem;
  margin-bottom: 18px;
}
.section__title{
  margin:0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height:1.15;
  color: #3e4c33;
}
.section__desc{
  margin:.35rem 0 0;
  color: var(--muted);
  max-width: 68ch;
}
.section__link{
  font-weight:700;
  color: #BC8E6C;
}

.masnad-stats {
  padding: 80px 0;
  background: #3e4c33; /* soft corporate background */
}

.masnad-stats__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.masnad-stats__header h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: #f8eeea;
}

.masnad-stats__header p {
  font-size: 1rem;
  color: #f8eeea;
  line-height: 1.6;
}

.masnad-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ab6953;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f8eeea;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #f8eeea;
  font-weight: 500;
}

.masnad-stats__disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9ca3af;
}
/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: #edd1c55e;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.card__media{
  height: 170px;
  background-size:cover;
  background-position:center;
}
.card__body{ padding: 16px; }
.card__title{margin:0 0 .4rem;font-size:1.1rem;color: #3e4c33;}
.card__text{ margin:0 0 .8rem; color: var(--muted); }
.card__link{font-weight:700;color: #BC8E6C;}

/* Brands grid */
.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.brand{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 92px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: .25rem;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.brand:hover{ text-decoration:none; transform: translateY(-1px); }
.brand__name{ font-weight:800; }
.brand__tag{ color: var(--muted); font-weight:650; font-size:.95rem; }

/* Promo */
.promo{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items:center;
}
.promo__actions{ display:flex; gap:.8rem; flex-wrap:wrap; margin-top: 12px; }

.promo__media{
  position:relative;
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(17,24,39,.06));
  border: 1px solid var(--border);
  overflow:hidden;
}
.phone{
  position:absolute;
  width: 220px;
  height: 320px;
  border-radius: 26px;
  border: 10px solid rgba(17,24,39,.9);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  right: 28px;
  top: 18px;
  box-shadow: var(--shadow);
}
.phone--back{
  right: 120px;
  top: 54px;
  opacity:.75;
  transform: scale(.95);
}

/* Footer */
.footer{
  background: #AB6953;
  color: rgba(255,255,255,.88);
  padding: 46px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer__title{
  margin: 0 0 .6rem;
  font-size: 1rem;
}
.footer__link{
  display:block;
  padding:.22rem 0;
  opacity:.88;
}
.footer__link:hover{ opacity:1; text-decoration:none; }
.footer__small{ margin:.9rem 0 0; opacity:.75; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .masnad-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* @media (max-width: 980px){ */
@media (max-width: 700px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .booking__row{ grid-template-columns: 1fr 1fr; }
  .booking__submit{ grid-column: 1 / -1; }
  .cards{ grid-template-columns: 1fr; }
  .brand-grid{ grid-template-columns: 1fr; }
  .promo{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .booking__row{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .masnad-stats {
    padding: 60px 0;
  }

  .masnad-stats__grid {
    grid-template-columns: 1fr;
  }
}




/* -------------------------------------Portfolio Page ------------------------------------*/




/* Page hero */
.page-hero{
  background: #BC8E6C;
  border-bottom: 1px solid rgba(18,18,18,.08);
  padding: 54px 0 34px;
}
.page-hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.page-hero__eyebrow{
  margin:0 0 8px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #edd1c5;
  font-size: .82rem;
}
.page-hero__title{
  margin:0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #ffffff;
}
.page-hero__subtitle{
  margin:0;
  max-width: 70ch;
  color: rgb(255 255 255);
  font-size: 1.05rem;
}

/* Small note card */
.note-card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 16px;
  padding: 16px;
}
.note-card__title{
  font-weight: 850;
  color: #3E4C33;
  margin-bottom: 8px;
}
.note-card__text{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

/* Toolbar */
.section--tight{ padding: 26px 0; }

.portfolio-toolbar{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.tabs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab{
  appearance:none;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.60);
  color: #3E4C33;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  cursor:pointer;
}
.tab.is-active{
  background: #3E4C33;
  color: #EDD1C5;
  border-color: rgba(62,76,51,.75);
}

.search{
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.75);
  min-width: 240px;
  outline: none;
}
.search:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Portfolio cards */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.p-card__media{
  height: 170px;
  background-size: cover;
  background-position: center;
}

.p-card__body{
  padding: 16px;
}

.p-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-card__title{
  margin:0;
  font-size: 1.08rem;
  color: #3E4C33;
  font-weight: 850;
}

.badge{
  font-size: .82rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(171,105,83,.16);
  color: #AB6953;
  border: 1px solid rgba(171,105,83,.22);
  white-space: nowrap;
}

.p-card__desc{
  margin: 0 0 14px;
  color: rgba(18,18,18,.68);
  line-height: 1.6;
}

.p-card__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 10px;
}
.kpi__v{
  display:block;
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 4px;
}
.kpi__k{
  display:block;
  font-size: .85rem;
  color: rgba(18,18,18,.60);
  font-weight: 650;
}

.p-card__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.p-link{
  font-weight: 850;
  color: #BC8E6C;
}
.p-link--muted{
  color: rgba(62,76,51,.85);
}

/* CTA card */
.p-card--cta{
  background: #3E4C33;
  color: #EDD1C5;
}
.p-card--cta .p-card__body{ padding: 22px; }
.cta-box__title{
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
}
.cta-box__text{
  margin: 0 0 14px;
  color: rgba(237,209,197,.90);
  line-height: 1.6;
}
.cta-box__fine{
  margin: 12px 0 0;
  font-size: .85rem;
  color: rgba(237,209,197,.70);
}

/* Responsive */
@media (max-width: 980px){
  .page-hero__inner{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .p-card__kpis{ grid-template-columns: 1fr; }
  .search{ width: 100%; }
}



/* ----------------------------------  Our Team Page  -------------------------------------*/


/* =========================
   Team Page (Masnad)
   Add to bottom of style.css
========================= */

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-grid--compact{
  grid-template-columns: repeat(3, 1fr);
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.avatar--soft{
  background: rgba(62,76,51,.92);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 700;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  background: rgba(171,105,83,.14);
  border: 1px solid rgba(171,105,83,.20);
  color: #AB6953;
}

.t-card__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.team-note{
  margin-top: 18px;
  color: rgba(18,18,18,.60);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .team-grid,
  .team-grid--compact{
    grid-template-columns: 1fr;
  }
  .t-card{ padding: 16px; }
}


/* ----------------------------------- About US Page -------------------------------------*/



/* =========================
   About Page (Masnad)
   Add to bottom of style.css
========================= */

.about-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-nav__link{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.about-nav__link:hover{
  background: rgba(171,105,83,.14);
  border-color: rgba(171,105,83,.22);
  color: #3E4C33;
  text-decoration:none;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:start;
}

.about-text{
  margin: 12px 0 0;
  color: rgba(18,18,18,.72);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-pills{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-panel{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.about-panel__block{
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.06);
  margin-bottom: 10px;
}

.about-panel__label{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.about-panel__value{
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.about-panel__fine{
  margin-top: 10px;
  color: rgba(18,18,18,.55);
  font-size: .92rem;
}

.about-highlights{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight{
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.04);
}

.highlight__title{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 8px;
}

.highlight__text{
  color: rgba(18,18,18,.68);
  line-height: 1.65;
}

/* Team cards (reused from team page idea, kept here) */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 750;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.team-note{
  margin-top: 16px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Governance */
.gov-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gov-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.gov-card__title{
  margin: 0 0 8px;
  color: #3E4C33;
  font-weight: 950;
}

.gov-card__text{
  margin: 0 0 10px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.gov-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(18,18,18,.68);
  line-height: 1.7;
}

.gov-committees{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
}

.committee__title{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 10px;
}

.committee__items{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gov-note{
  margin-top: 12px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-highlights{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .gov-grid{ grid-template-columns: 1fr; }
}

/* --------------------- Contact Us ------------------------  */

/* =========================
   Contact Page (Masnad)
   Add to bottom of style.css
========================= */

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.contact-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.contact-card--soft{
  background: rgba(237,209,197,.35);
}

.contact-card__head{
  margin-bottom: 12px;
}

.contact-form{
  margin-top: 8px;
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}

.c-field__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .92rem;
}

.c-field__input{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.78);
  padding: 0 12px;
  outline:none;
  font-size: 1rem;
}

.c-field__textarea{
  height: auto;
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.c-field__input:focus{
  border-color: rgba(171,105,83,.55);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.contact-actions{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.contact-fine{
  margin:0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.5;
}

/* Side column */
.contact-side{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.contact-side__title{
  margin:0 0 10px;
  color: #3E4C33;
  font-weight: 950;
}

.contact-side__text{
  margin: 0 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.contact-info{
  display:grid;
  gap: 10px;
}

.info-item{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 12px;
}

.info-item__k{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.info-item__v{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

.info-item__v a{
  color: #BC8E6C;
  font-weight: 850;
  text-decoration:none;
}

.info-item__v a:hover{
  text-decoration: underline;
}

.divider{
  height:1px;
  background: rgba(18,18,18,.10);
  margin: 14px 0;
}

/* Map placeholder */
.map-card{
  padding: 0;
  overflow:hidden;
}

.map-card__top{
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  border-bottom: 1px solid rgba(18,18,18,.08);
  background: rgba(237,209,197,.35);
}

.map-badge{
  font-weight: 900;
  color: #3E4C33;
}

.map-text{
  color: rgba(18,18,18,.60);
  font-weight: 650;
  font-size: .92rem;
}

.map-box{
  height: 220px;
  background:
    linear-gradient(135deg, rgba(62,76,51,.18), rgba(171,105,83,.12)),
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.45), transparent 40%);
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-row{
    grid-template-columns: 1fr;
  }
}


/* Contact us updated overide */


/* =========================
   Contact Form FIX (Override)
   Paste at VERY BOTTOM of style.css
========================= */

.contact-card,
.contact-card * {
  box-sizing: border-box;
}

.contact-form {
  margin-top: 14px;
}

/* Force 2-column layout on desktop */
.contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-bottom: 12px;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Make each field block + vertical */
.contact-form .c-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100%;
}

/* Label style */
.contact-form .c-field__label {
  display: block !important;
  font-weight: 850;
  color: #3E4C33;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Input / select / textarea consistent */
.contact-form .c-field__input {
  width: 100% !important;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.78);
  outline: none;
  font-size: 1rem;
  color: rgba(18,18,18,.78);
}

/* Select fixes */
.contact-form select.c-field__input {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(62,76,51,.75) 50%),
    linear-gradient(135deg, rgba(62,76,51,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* Textarea fixes */
.contact-form .c-field__textarea {
  height: auto !important;
  min-height: 160px !important;
  padding: 12px 14px !important;
  resize: vertical;
  line-height: 1.6;
}

/* Focus state matches Masnad accent */
.contact-form .c-field__input:focus {
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Checkbox row */
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 16px;
  color: rgba(18,18,18,.70);
  font-weight: 650;
  line-height: 1.4;
}

.contact-form .check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #3E4C33;
}

/* Button area */
.contact-form .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make the submit button look premium & aligned */
.contact-form .btn.btn--primary {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
}

/* Small note */
.contact-form .contact-fine {
  margin: 0;
  color: rgba(18,18,18,.58);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ------------------------------------------ Latest News Page ---------------------------*/
/* =========================
   Latest News Page — Masnad
   Paste at bottom of style.css
========================= */

.news-head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.news-head__right{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.news-pill{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
}

.news-pill--soft{
  background: rgba(171,105,83,.12);
  border-color: rgba(171,105,83,.20);
  color: #AB6953;
}

.news-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.news-card{
  display:block;
  text-decoration:none;
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 16px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.news-card:hover{
  transform: translateY(-2px);
  border-color: rgba(171,105,83,.26);
  box-shadow: 0 14px 24px rgba(18,18,18,.08);
}

.news-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.news-source{
  font-weight: 900;
  color: #3E4C33;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: .85rem;
}

.news-time{
  color: rgba(18,18,18,.55);
  font-weight: 800;
  font-size: .85rem;
}

.news-title{
  color: rgba(18,18,18,.80);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 10px;
}

.news-link{
  color: #BC8E6C;
  font-weight: 900;
}

.news-empty{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  padding: 18px;
  color: rgba(18,18,18,.70);
}

.news-footnote{
  margin-top: 14px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px){
  .news-grid{ grid-template-columns: 1fr; }
}


/* coming soon page  */


/* =========================
   Coming Soon Page — Masnad
   Paste at bottom of style.css
========================= */

.coming-page{
  background: #faf1ee45;
}

.coming{
  min-height: 100vh;
  display: grid;
  place-items: center;
  /* padding: 28px 16px; */
  /* background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 82% 75%, rgba(255,255,255,.35), transparent 42%),
    linear-gradient(180deg, rgba(62,76,51,.06), rgba(171,105,83,.04)); */
}

.coming__shell{
  width: min(1040px, 100%);
  /* border-radius: 26px; */
  border: 3px solid #414e35;
  background: rgb(237 209 197);
  box-shadow: 0 18px 40px rgba(18,18,18,.08);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

/* subtle brand corner accent */
.coming__shell::before{
  content:"";
  position:absolute;
  inset: -40% -30% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(62,76,51,.18), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(171,105,83,.16), transparent 55%);
  transform: rotate(18deg);
  pointer-events: none;
}

.coming__top{
  display: block;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  position: relative;
}

.coming__logo{
  height: 120px;
  margin: 30px auto;
  width: auto;
  display:block;
}

.coming__meta{
  display:flex;
  gap: 10px;
  align-items:center;
}

.coming__pill{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(237,209,197,.55);
  border: 1px solid rgba(18,18,18,.10);
}

.coming__lang{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-weight: 900;
  color: #3E4C33;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.coming__lang:hover{
  background: rgba(171,105,83,.14);
}

.coming__content{
  padding: 00 18px;
  /* position: relative; */
}

.coming__title{
  text-align: center;
  margin: 20px;
  color: #edd1c5;
  font-weight: 950;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
}

.coming__subtitle{
  margin: 20px auto 22px;
  color: rgb(237 209 197);
  line-height: 1.7;
  max-width: 70ch;
  font-size: 1.05rem;
}

.coming__card{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 22px rgba(18,18,18,.06);
  max-width: 620px;
  margin: auto;
}

.coming__card-head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.coming__card-title{
  font-weight: 950;
  color: #3E4C33;
}

.coming__card-note{
  color: rgba(18,18,18,.55);
  font-weight: 700;
  font-size: .92rem;
}

.coming__form{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items:end;
}

.coming__field{
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.coming__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .95rem;
}

.coming__input{
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.85);
  padding: 0 14px;
  outline: none;
  font-size: 1rem;
}

.coming__input:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.coming__btn{
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(18,18,18,.12);
  background: #3E4C33;
  color: #EDD1C5;
  font-weight: 900;
  cursor:pointer;
  white-space: nowrap;
}
.coming__btn:hover{
  filter: brightness(1.03);
}

.coming__fine{
  margin: 12px 0 0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.55;
}

.coming__info{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 820px;
}

.coming__info-item{
  background: rgba(237,209,197,.45);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 14px;
}

.coming__k{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 8px;
}

.coming__v{
  color: rgba(18,18,18,.68);
  font-weight: 700;
}

.coming__v a{
  color: #BC8E6C;
  text-decoration:none;
  font-weight: 900;
}
.coming__v a:hover{ text-decoration: underline; }

.coming__footer{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(18,18,18,.10);
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.coming__footer-left{
  color: rgba(18,18,18,.62);
  font-weight: 700;
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
}

.coming__dot{
  opacity: .7;
}

.coming__footer-link{
  color: rgba(18,18,18,.62);
  text-decoration:none;
  font-weight: 800;
}
.coming__footer-link:hover{
  color: #3E4C33;
  text-decoration: underline;
}

.coming__footer-right{
  display:flex;
  gap: 12px;
  align-items:center;
}

.coming__social{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  color: #3E4C33;
  font-weight: 900;
  text-decoration:none;
}
.coming__social:hover{
  background: rgba(171,105,83,.14);
}

/* Responsive */
@media (max-width: 860px){
  .coming__shell{ padding: 18px; }
  .coming__info{ grid-template-columns: 1fr; }
  .coming__form{ grid-template-columns: 1fr; }
  .coming__btn{ width: 100%; }
}


/* New Coming Soon Page */


/* =========================
   Coming Soon (Map Layout)
   Masnad palette:
   #3E4C33 #EDD1C5 #BC8E6C #AB6953
========================= */

/* =========================
   Masnad Coming Soon Page
========================= */



/* ========== Base ========== */
*{
  font-family:rb !important;
}
@font-face {
  font-family: "rbbold"; /* set name */
  src: url(assets/rbbold.ttf); /* url of the font */
}
@font-face {
  font-family: "rb"; /* set name */
  src: url(assets/rb.ttf); /* url of the font */
}

:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18,18,18,.65);
  --border: rgba(18,18,18,.12);
  --shadow: 0 12px 28px rgba(18,18,18,.12);
  --radius: 16px;
  --max: 1180px;

  --primary: #111827;     /* change to Masnad brand */
  --primary-2: #0b1220;
  --accent: #2563eb;      /* change to Masnad brand */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;

  /* font-family: "rb"; */
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{color:inherit;text-decoration:none;}
a:hover{
  text-decoration:underline;
  color:#AB6953 !important;
}
img{max-width:100%;display:block;/* height: 53px; */}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

/* ========== Buttons ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:650;
  cursor:pointer;
  white-space:nowrap;
}

.btn--sm{ padding:.55rem .85rem; font-size:.9rem; }

.btn--primary{
  background: #BC8E6C;;
  color:#fff;
  box-shadow: 0 10px 18px rgba(37,99,235,.25);
}
.btn--primary:hover{ filter:brightness(.95); text-decoration:none; }

.btn--secondary{
  background: transparent;
  border-color: var(--border);
}
.btn--secondary:hover{ background: rgba(18,18,18,.04); text-decoration:none; }

.btn--ghost{
  background: transparent;
  border-color: transparent;
}
.btn--ghost:hover{ background: rgba(255,255,255,.18); text-decoration:none; }

/* ========== Topbar + Header ========== */
.topbar{
  background: #AB6953;
  /* background: #3e4c33; */
  color: rgba(255,255,255,.9);
  font-size:.92rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.55rem 0;
  gap:1rem;
  color: #edd1c5;
}
.topbar__left, .topbar__right{ display:flex; align-items:center; gap:.85rem; }
.topbar__sep{ opacity:.5; }
.topbar__link{ opacity:.9; }
.topbar__link:hover{ opacity:1; text-decoration:none; }

.header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 10px;
  gap:1rem;
  background-color: #edd1c5;
  width: 100%;
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  letter-spacing:.2px;
}
.logo__mark{
  width:34px; height:34px;
  border-radius: 10px;
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
}
.logo--footer .logo__mark{ background:#fff; color:var(--primary); }

.nav{
  display:flex;
  gap:1.1rem;
  align-items:center;
}
.nav__link{
  font-weight:600;
  color: rgba(18,18,18,.8);
  padding:.35rem .25rem;
  color: rgb(62 76 51);
}
.nav__link:hover{ color: var(--text); text-decoration:none; }

.header__actions{
  display:flex;
  gap:.6rem;
  align-items:center;
}
.icon-btn{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(18,18,18,.03); }

.menu-btn{
  display:none;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background: #3d4d33;
  cursor:pointer;
}
.menu-btn__bar{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background: rgb(237 209 197);
  border-radius: 2px;
}

/* ========== Hero ========== */
.hero{
  position:relative;
  padding: clamp(28px, 4vw, 54px) 0 64px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgb(62 76 51), rgba(0, 0, 0, .15)), url(assets/images/homepage-banner.png);
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 40px);
  align-items:start;
  color:#fff;
}

.hero__content{
  padding-top: 20px;
  max-width: 560px;
}
.hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:750;
  opacity:.9;
  margin:0 0 .65rem;
  font-size:.85rem;
}
.hero__title{
  margin:0 0 .7rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height:1.05;
}
.hero__subtitle{
  margin:0 0 1.2rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}
.hero__ctas{ display:flex; gap:.8rem; flex-wrap:wrap; }

/* Booking widget */
.booking{
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  align-self:end;
}
.booking__row{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr .85fr auto;
  gap: 10px;
  align-items:end;
}
.field{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.field__label{
  font-size:.83rem;
  color: var(--muted);
  font-weight:650;
}
.field__input{
  height: 44px;
  border-radius: 12px;
  border:1px solid var(--border);
  padding: 0 12px;
  font-size: .98rem;
  outline:none;
  background:#fff;
}
.field__input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

.booking__submit{
  height: 44px;
  border-radius: 12px;
  width: 100%;
}

.booking__meta{
  margin-top: 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  font-size:.92rem;
  color: var(--muted);
}
.check{ display:flex; align-items:center; gap:.5rem; }
.booking__link{ font-weight:650; color: rgba(17,24,39,.9); }
.booking__link:hover{ text-decoration:underline; }

/* ========== Sections ========== */
.section{ padding: 54px 0; }
.section--alt{ background: rgba(18,18,18,.03); }

.section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap: 1rem;
  margin-bottom: 18px;
}
.section__title{
  margin:0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height:1.15;
  color: #3e4c33;
}
.section__desc{
  margin:.35rem 0 0;
  color: var(--muted);
  max-width: 68ch;
}
.section__link{
  font-weight:700;
  color: #BC8E6C;
}

.masnad-stats {
  padding: 80px 0;
  background: #3e4c33; /* soft corporate background */
}

.masnad-stats__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.masnad-stats__header h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: #f8eeea;
}

.masnad-stats__header p {
  font-size: 1rem;
  color: #f8eeea;
  line-height: 1.6;
}

.masnad-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ab6953;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f8eeea;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #f8eeea;
  font-weight: 500;
}

.masnad-stats__disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9ca3af;
}
/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: #edd1c55e;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.card__media{
  height: 170px;
  background-size:cover;
  background-position:center;
}
.card__body{ padding: 16px; }
.card__title{margin:0 0 .4rem;font-size:1.1rem;color: #3e4c33;}
.card__text{ margin:0 0 .8rem; color: var(--muted); }
.card__link{font-weight:700;color: #BC8E6C;}

/* Brands grid */
.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.brand{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 92px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: .25rem;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.brand:hover{ text-decoration:none; transform: translateY(-1px); }
.brand__name{ font-weight:800; }
.brand__tag{ color: var(--muted); font-weight:650; font-size:.95rem; }

/* Promo */
.promo{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items:center;
}
.promo__actions{ display:flex; gap:.8rem; flex-wrap:wrap; margin-top: 12px; }

.promo__media{
  position:relative;
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(17,24,39,.06));
  border: 1px solid var(--border);
  overflow:hidden;
}
.phone{
  position:absolute;
  width: 220px;
  height: 320px;
  border-radius: 26px;
  border: 10px solid rgba(17,24,39,.9);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  right: 28px;
  top: 18px;
  box-shadow: var(--shadow);
}
.phone--back{
  right: 120px;
  top: 54px;
  opacity:.75;
  transform: scale(.95);
}

/* Footer */
.footer{
  background: #AB6953;
  color: rgba(255,255,255,.88);
  padding: 46px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer__title{
  margin: 0 0 .6rem;
  font-size: 1rem;
}
.footer__link{
  display:block;
  padding:.22rem 0;
  opacity:.88;
}
.footer__link:hover{ opacity:1; text-decoration:none; }
.footer__small{ margin:.9rem 0 0; opacity:.75; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .masnad-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* @media (max-width: 980px){ */
@media (max-width: 700px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .booking__row{ grid-template-columns: 1fr 1fr; }
  .booking__submit{ grid-column: 1 / -1; }
  .cards{ grid-template-columns: 1fr; }
  .brand-grid{ grid-template-columns: 1fr; }
  .promo{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .booking__row{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .masnad-stats {
    padding: 60px 0;
  }

  .masnad-stats__grid {
    grid-template-columns: 1fr;
  }
}




/* -------------------------------------Portfolio Page ------------------------------------*/




/* Page hero */
.page-hero{
  background: #BC8E6C;
  border-bottom: 1px solid rgba(18,18,18,.08);
  padding: 54px 0 34px;
}
.page-hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.page-hero__eyebrow{
  margin:0 0 8px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #3E4C33;
  font-size: .82rem;
}
.page-hero__title{
  margin:0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #3E4C33;
}
.page-hero__subtitle{
  margin:0;
  max-width: 70ch;
  color: rgba(62,76,51,.88);
  font-size: 1.05rem;
}

/* Small note card */
.note-card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 16px;
  padding: 16px;
}
.note-card__title{
  font-weight: 850;
  color: #3E4C33;
  margin-bottom: 8px;
}
.note-card__text{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

/* Toolbar */
.section--tight{ padding: 26px 0; }

.portfolio-toolbar{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.tabs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab{
  appearance:none;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.60);
  color: #3E4C33;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  cursor:pointer;
}
.tab.is-active{
  background: #3E4C33;
  color: #EDD1C5;
  border-color: rgba(62,76,51,.75);
}

.search{
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.75);
  min-width: 240px;
  outline: none;
}
.search:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Portfolio cards */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.p-card__media{
  height: 170px;
  background-size: cover;
  background-position: center;
}

.p-card__body{
  padding: 16px;
}

.p-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-card__title{
  margin:0;
  font-size: 1.08rem;
  color: #3E4C33;
  font-weight: 850;
}

.badge{
  font-size: .82rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(171,105,83,.16);
  color: #AB6953;
  border: 1px solid rgba(171,105,83,.22);
  white-space: nowrap;
}

.p-card__desc{
  margin: 0 0 14px;
  color: rgba(18,18,18,.68);
  line-height: 1.6;
}

.p-card__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 10px;
}
.kpi__v{
  display:block;
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 4px;
}
.kpi__k{
  display:block;
  font-size: .85rem;
  color: rgba(18,18,18,.60);
  font-weight: 650;
}

.p-card__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.p-link{
  font-weight: 850;
  color: #BC8E6C;
}
.p-link--muted{
  color: rgba(62,76,51,.85);
}

/* CTA card */
.p-card--cta{
  background: #3E4C33;
  color: #EDD1C5;
}
.p-card--cta .p-card__body{ padding: 22px; }
.cta-box__title{
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
}
.cta-box__text{
  margin: 0 0 14px;
  color: rgba(237,209,197,.90);
  line-height: 1.6;
}
.cta-box__fine{
  margin: 12px 0 0;
  font-size: .85rem;
  color: rgba(237,209,197,.70);
}

/* Responsive */
@media (max-width: 980px){
  .page-hero__inner{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .p-card__kpis{ grid-template-columns: 1fr; }
  .search{ width: 100%; }
}



/* ----------------------------------  Our Team Page  -------------------------------------*/


/* =========================
   Team Page (Masnad)
   Add to bottom of style.css
========================= */

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-grid--compact{
  grid-template-columns: repeat(3, 1fr);
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.avatar--soft{
  background: rgba(62,76,51,.92);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 700;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  background: rgba(171,105,83,.14);
  border: 1px solid rgba(171,105,83,.20);
  color: #AB6953;
}

.t-card__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.team-note{
  margin-top: 18px;
  color: rgba(18,18,18,.60);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .team-grid,
  .team-grid--compact{
    grid-template-columns: 1fr;
  }
  .t-card{ padding: 16px; }
}


/* ----------------------------------- About US Page -------------------------------------*/



/* =========================
   About Page (Masnad)
   Add to bottom of style.css
========================= */

.about-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-nav__link{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.about-nav__link:hover{
  background: rgba(171,105,83,.14);
  border-color: rgba(171,105,83,.22);
  color: #3E4C33;
  text-decoration:none;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:start;
}

.about-text{
  margin: 12px 0 0;
  color: rgba(18,18,18,.72);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-pills{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-panel{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.about-panel__block{
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.06);
  margin-bottom: 10px;
}

.about-panel__label{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.about-panel__value{
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.about-panel__fine{
  margin-top: 10px;
  color: rgba(18,18,18,.55);
  font-size: .92rem;
}

.about-highlights{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight{
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.04);
}

.highlight__title{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 8px;
}

.highlight__text{
  color: rgba(18,18,18,.68);
  line-height: 1.65;
}

/* Team cards (reused from team page idea, kept here) */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 750;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.team-note{
  margin-top: 16px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Governance */
.gov-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gov-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.gov-card__title{
  margin: 0 0 8px;
  color: #3E4C33;
  font-weight: 950;
}

.gov-card__text{
  margin: 0 0 10px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.gov-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(18,18,18,.68);
  line-height: 1.7;
}

.gov-committees{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
}

.committee__title{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 10px;
}

.committee__items{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gov-note{
  margin-top: 12px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-highlights{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .gov-grid{ grid-template-columns: 1fr; }
}

/* --------------------- Contact Us ------------------------  */

/* =========================
   Contact Page (Masnad)
   Add to bottom of style.css
========================= */

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.contact-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.contact-card--soft{
  background: rgba(237,209,197,.35);
}

.contact-card__head{
  margin-bottom: 12px;
}

.contact-form{
  margin-top: 8px;
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}

.c-field__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .92rem;
}

.c-field__input{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.78);
  padding: 0 12px;
  outline:none;
  font-size: 1rem;
}

.c-field__textarea{
  height: auto;
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.c-field__input:focus{
  border-color: rgba(171,105,83,.55);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.contact-actions{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.contact-fine{
  margin:0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.5;
}

/* Side column */
.contact-side{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.contact-side__title{
  margin:0 0 10px;
  color: #3E4C33;
  font-weight: 950;
}

.contact-side__text{
  margin: 0 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.contact-info{
  display:grid;
  gap: 10px;
}

.info-item{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 12px;
}

.info-item__k{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.info-item__v{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

.info-item__v a{
  color: #BC8E6C;
  font-weight: 850;
  text-decoration:none;
}

.info-item__v a:hover{
  text-decoration: underline;
}

.divider{
  height:1px;
  background: rgba(18,18,18,.10);
  margin: 14px 0;
}

/* Map placeholder */
.map-card{
  padding: 0;
  overflow:hidden;
}

.map-card__top{
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  border-bottom: 1px solid rgba(18,18,18,.08);
  background: rgba(237,209,197,.35);
}

.map-badge{
  font-weight: 900;
  color: #3E4C33;
}

.map-text{
  color: rgba(18,18,18,.60);
  font-weight: 650;
  font-size: .92rem;
}

.map-box{
  height: 220px;
  background:
    linear-gradient(135deg, rgba(62,76,51,.18), rgba(171,105,83,.12)),
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.45), transparent 40%);
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-row{
    grid-template-columns: 1fr;
  }
}


/* Contact us updated overide */


/* =========================
   Contact Form FIX (Override)
   Paste at VERY BOTTOM of style.css
========================= */

.contact-card,
.contact-card * {
  box-sizing: border-box;
}

.contact-form {
  margin-top: 14px;
}

/* Force 2-column layout on desktop */
.contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-bottom: 12px;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Make each field block + vertical */
.contact-form .c-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100%;
}

/* Label style */
.contact-form .c-field__label {
  display: block !important;
  font-weight: 850;
  color: #3E4C33;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Input / select / textarea consistent */
.contact-form .c-field__input {
  width: 100% !important;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.78);
  outline: none;
  font-size: 1rem;
  color: rgba(18,18,18,.78);
}

/* Select fixes */
.contact-form select.c-field__input {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(62,76,51,.75) 50%),
    linear-gradient(135deg, rgba(62,76,51,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* Textarea fixes */
.contact-form .c-field__textarea {
  height: auto !important;
  min-height: 160px !important;
  padding: 12px 14px !important;
  resize: vertical;
  line-height: 1.6;
}

/* Focus state matches Masnad accent */
.contact-form .c-field__input:focus {
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Checkbox row */
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 16px;
  color: rgba(18,18,18,.70);
  font-weight: 650;
  line-height: 1.4;
}

.contact-form .check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #3E4C33;
}

/* Button area */
.contact-form .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make the submit button look premium & aligned */
.contact-form .btn.btn--primary {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
}

/* Small note */
.contact-form .contact-fine {
  margin: 0;
  color: rgba(18,18,18,.58);
  font-size: 0.92rem;
  line-height: 1.5;
}



/* coming soon page  */


/* =========================
   Coming Soon Page — Masnad
   Paste at bottom of style.css
========================= */

/* ========== Base ========== */

@font-face {
  font-family: "rbbold"; /* set name */
  src: url(assets/rbbold.ttf); /* url of the font */
}
@font-face {
  font-family: "rb"; /* set name */
  src: url(assets/rb.ttf); /* url of the font */
}

:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18,18,18,.65);
  --border: rgba(18,18,18,.12);
  --shadow: 0 12px 28px rgba(18,18,18,.12);
  --radius: 16px;
  --max: 1180px;

  --primary: #111827;     /* change to Masnad brand */
  --primary-2: #0b1220;
  --accent: #2563eb;      /* change to Masnad brand */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;

  /* font-family: "rb"; */
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{color:inherit;text-decoration:none;}
a:hover{
  text-decoration:underline;
  color:#AB6953 !important;
}
img{max-width: 40vw;display:block;/* height: 53px; */}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin-inline:auto;
}

/* ========== Buttons ========== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius: 999px;
  border:1px solid transparent;
  font-weight:650;
  cursor:pointer;
  white-space:nowrap;
}

.btn--sm{ padding:.55rem .85rem; font-size:.9rem; }

.btn--primary{
  background: #BC8E6C;;
  color:#fff;
  box-shadow: 0 10px 18px rgba(37,99,235,.25);
}
.btn--primary:hover{ filter:brightness(.95); text-decoration:none; }

.btn--secondary{
  background: transparent;
  border-color: var(--border);
}
.btn--secondary:hover{ background: rgba(18,18,18,.04); text-decoration:none; }

.btn--ghost{
  background: transparent;
  border-color: transparent;
}
.btn--ghost:hover{ background: rgba(255,255,255,.18); text-decoration:none; }

/* ========== Topbar + Header ========== */
.topbar{
  background: #AB6953;
  /* background: #3e4c33; */
  color: rgba(255,255,255,.9);
  font-size:.92rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.55rem 0;
  gap:1rem;
  color: #edd1c5;
}
.topbar__left, .topbar__right{ display:flex; align-items:center; gap:.85rem; }
.topbar__sep{ opacity:.5; }
.topbar__link{ opacity:.9; }
.topbar__link:hover{ opacity:1; text-decoration:none; }

.header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .9rem 10px;
  gap:1rem;
  background-color: #edd1c5;
  width: 100%;
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:800;
  letter-spacing:.2px;
}
.logo__mark{
  width:34px; height:34px;
  border-radius: 10px;
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
}
.logo--footer .logo__mark{ background:#fff; color:var(--primary); }

.nav{
  display:flex;
  gap:1.1rem;
  align-items:center;
}
.nav__link{
  font-weight:600;
  color: rgba(18,18,18,.8);
  padding:.35rem .25rem;
  color: rgb(62 76 51);
}
.nav__link:hover{ color: var(--text); text-decoration:none; }

.header__actions{
  display:flex;
  gap:.6rem;
  align-items:center;
}
.icon-btn{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(18,18,18,.03); }

.menu-btn{
  display:none;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background: #3d4d33;
  cursor:pointer;
}
.menu-btn__bar{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background: rgb(237 209 197);
  border-radius: 2px;
}

/* ========== Hero ========== */
.hero{
  position:relative;
  padding: clamp(28px, 4vw, 54px) 0 64px;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgb(62 76 51), rgba(0, 0, 0, .15)), url(assets/images/homepage-banner.png);
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 40px);
  align-items:start;
  color:#fff;
}

.hero__content{
  padding-top: 20px;
  max-width: 560px;
}
.hero__eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:750;
  opacity:.9;
  margin:0 0 .65rem;
  font-size:.85rem;
}
.hero__title{
  margin:0 0 .7rem;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height:1.05;
}
.hero__subtitle{
  margin:0 0 1.2rem;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}
.hero__ctas{ display:flex; gap:.8rem; flex-wrap:wrap; }

/* Booking widget */
.booking{
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  align-self:end;
}
.booking__row{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr .85fr auto;
  gap: 10px;
  align-items:end;
}
.field{
  display:flex;
  flex-direction:column;
  gap:.35rem;
}
.field__label{
  font-size:.83rem;
  color: var(--muted);
  font-weight:650;
}
.field__input{
  height: 44px;
  border-radius: 12px;
  border:1px solid var(--border);
  padding: 0 12px;
  font-size: .98rem;
  outline:none;
  background:#fff;
}
.field__input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}

.booking__submit{
  height: 44px;
  border-radius: 12px;
  width: 100%;
}

.booking__meta{
  margin-top: 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
  font-size:.92rem;
  color: var(--muted);
}
.check{ display:flex; align-items:center; gap:.5rem; }
.booking__link{ font-weight:650; color: rgba(17,24,39,.9); }
.booking__link:hover{ text-decoration:underline; }

/* ========== Sections ========== */
.section{ padding: 54px 0; }
.section--alt{ background: rgba(18,18,18,.03); }

.section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap: 1rem;
  margin-bottom: 18px;
}
.section__title{
  margin:0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height:1.15;
  color: #3e4c33;
}
.section__desc{
  margin:.35rem 0 0;
  color: var(--muted);
  max-width: 68ch;
}
.section__link{
  font-weight:700;
  color: #BC8E6C;
}

.masnad-stats {
  padding: 80px 0;
  background: #3e4c33; /* soft corporate background */
}

.masnad-stats__header {
  max-width: 720px;
  margin-bottom: 48px;
}

.masnad-stats__header h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: #f8eeea;
}

.masnad-stats__header p {
  font-size: 1rem;
  color: #f8eeea;
  line-height: 1.6;
}

.masnad-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ab6953;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f8eeea;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #f8eeea;
  font-weight: 500;
}

.masnad-stats__disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: #9ca3af;
}
/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: #edd1c55e;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.card__media{
  height: 170px;
  background-size:cover;
  background-position:center;
}
.card__body{ padding: 16px; }
.card__title{margin:0 0 .4rem;font-size:1.1rem;color: #3e4c33;}
.card__text{ margin:0 0 .8rem; color: var(--muted); }
.card__link{font-weight:700;color: #BC8E6C;}

/* Brands grid */
.brand-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.brand{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 92px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: .25rem;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}
.brand:hover{ text-decoration:none; transform: translateY(-1px); }
.brand__name{ font-weight:800; }
.brand__tag{ color: var(--muted); font-weight:650; font-size:.95rem; }

/* Promo */
.promo{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items:center;
}
.promo__actions{ display:flex; gap:.8rem; flex-wrap:wrap; margin-top: 12px; }

.promo__media{
  position:relative;
  height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(17,24,39,.06));
  border: 1px solid var(--border);
  overflow:hidden;
}
.phone{
  position:absolute;
  width: 220px;
  height: 320px;
  border-radius: 26px;
  border: 10px solid rgba(17,24,39,.9);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  right: 28px;
  top: 18px;
  box-shadow: var(--shadow);
}
.phone--back{
  right: 120px;
  top: 54px;
  opacity:.75;
  transform: scale(.95);
}

/* Footer */
.footer{
  background: #AB6953;
  color: rgba(255,255,255,.88);
  padding: 46px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.footer__title{
  margin: 0 0 .6rem;
  font-size: 1rem;
}
.footer__link{
  display:block;
  padding:.22rem 0;
  opacity:.88;
}
.footer__link:hover{ opacity:1; text-decoration:none; }
.footer__small{ margin:.9rem 0 0; opacity:.75; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .masnad-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* @media (max-width: 980px){ */
@media (max-width: 700px){
  .nav{ display:none; }
  .menu-btn{ display:inline-block; }
  .hero__inner{ grid-template-columns: 1fr; }
  .booking__row{ grid-template-columns: 1fr 1fr; }
  .booking__submit{ grid-column: 1 / -1; }
  .cards{ grid-template-columns: 1fr; }
  .brand-grid{ grid-template-columns: 1fr; }
  .promo{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px){
  .booking__row{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .masnad-stats {
    padding: 60px 0;
  }

  .masnad-stats__grid {
    grid-template-columns: 1fr;
  }
}




/* -------------------------------------Portfolio Page ------------------------------------*/




/* Page hero */
.page-hero{
  background: #BC8E6C;
  border-bottom: 1px solid rgba(18,18,18,.08);
  padding: 54px 0 34px;
}
.page-hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.page-hero__eyebrow{
  margin:0 0 8px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #edd1c5;
  font-size: .82rem;
}
.page-hero__title{
  margin:0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #ffffff;
}
.page-hero__subtitle{
  margin:0;
  max-width: 70ch;
  color: rgb(255 255 255);
  font-size: 1.05rem;
}

/* Small note card */
.note-card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 16px;
  padding: 16px;
}
.note-card__title{
  font-weight: 850;
  color: #3E4C33;
  margin-bottom: 8px;
}
.note-card__text{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

/* Toolbar */
.section--tight{ padding: 26px 0; }

.portfolio-toolbar{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.tabs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab{
  appearance:none;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.60);
  color: #3E4C33;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  cursor:pointer;
}
.tab.is-active{
  background: #3E4C33;
  color: #EDD1C5;
  border-color: rgba(62,76,51,.75);
}

.search{
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.75);
  min-width: 240px;
  outline: none;
}
.search:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Portfolio cards */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.p-card__media{
  height: 170px;
  background-size: cover;
  background-position: center;
}

.p-card__body{
  padding: 16px;
}

.p-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-card__title{
  margin:0;
  font-size: 1.08rem;
  color: #3E4C33;
  font-weight: 850;
}

.badge{
  font-size: .82rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(171,105,83,.16);
  color: #AB6953;
  border: 1px solid rgba(171,105,83,.22);
  white-space: nowrap;
}

.p-card__desc{
  margin: 0 0 14px;
  color: rgba(18,18,18,.68);
  line-height: 1.6;
}

.p-card__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.kpi{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 10px;
}
.kpi__v{
  display:block;
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 4px;
}
.kpi__k{
  display:block;
  font-size: .85rem;
  color: rgba(18,18,18,.60);
  font-weight: 650;
}

.p-card__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.p-link{
  font-weight: 850;
  color: #BC8E6C;
}
.p-link--muted{
  color: rgba(62,76,51,.85);
}

/* CTA card */
.p-card--cta{
  background: #3E4C33;
  color: #EDD1C5;
}
.p-card--cta .p-card__body{ padding: 22px; }
.cta-box__title{
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
}
.cta-box__text{
  margin: 0 0 14px;
  color: rgba(237,209,197,.90);
  line-height: 1.6;
}
.cta-box__fine{
  margin: 12px 0 0;
  font-size: .85rem;
  color: rgba(237,209,197,.70);
}

/* Responsive */
@media (max-width: 980px){
  .page-hero__inner{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
  .p-card__kpis{ grid-template-columns: 1fr; }
  .search{ width: 100%; }
}



/* ----------------------------------  Our Team Page  -------------------------------------*/


/* =========================
   Team Page (Masnad)
   Add to bottom of style.css
========================= */

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.team-grid--compact{
  grid-template-columns: repeat(3, 1fr);
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.avatar--soft{
  background: rgba(62,76,51,.92);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 700;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  background: rgba(171,105,83,.14);
  border: 1px solid rgba(171,105,83,.20);
  color: #AB6953;
}

.t-card__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.team-note{
  margin-top: 18px;
  color: rgba(18,18,18,.60);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .team-grid,
  .team-grid--compact{
    grid-template-columns: 1fr;
  }
  .t-card{ padding: 16px; }
}


/* ----------------------------------- About US Page -------------------------------------*/



/* =========================
   About Page (Masnad)
   Add to bottom of style.css
========================= */

.about-nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-nav__link{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.about-nav__link:hover{
  background: rgba(171,105,83,.14);
  border-color: rgba(171,105,83,.22);
  color: #3E4C33;
  text-decoration:none;
}

.about-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:start;
}

.about-text{
  margin: 12px 0 0;
  color: rgba(18,18,18,.72);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-pills{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-panel{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
}

.about-panel__block{
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.06);
  margin-bottom: 10px;
}

.about-panel__label{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.about-panel__value{
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.about-panel__fine{
  margin-top: 10px;
  color: rgba(18,18,18,.55);
  font-size: .92rem;
}

.about-highlights{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight{
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(18,18,18,.04);
}

.highlight__title{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 8px;
}

.highlight__text{
  color: rgba(18,18,18,.68);
  line-height: 1.65;
}

/* Team cards (reused from team page idea, kept here) */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(237,209,197,.35);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.t-card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #EDD1C5;
  background: #3E4C33;
  border: 1px solid rgba(62,76,51,.55);
}

.t-card__name{
  margin:0;
  color: #3E4C33;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.2;
}

.t-card__role{
  margin: 4px 0 0;
  color: rgba(18,18,18,.62);
  font-weight: 750;
  font-size: .92rem;
}

.t-card__bio{
  margin: 10px 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.t-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.team-note{
  margin-top: 16px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Governance */
.gov-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gov-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.gov-card__title{
  margin: 0 0 8px;
  color: #3E4C33;
  font-weight: 950;
}

.gov-card__text{
  margin: 0 0 10px;
  color: rgba(18,18,18,.70);
  line-height: 1.6;
}

.gov-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(18,18,18,.68);
  line-height: 1.7;
}

.gov-committees{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(237,209,197,.35);
  border: 1px solid rgba(18,18,18,.08);
}

.committee__title{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 10px;
}

.committee__items{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gov-note{
  margin-top: 12px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-highlights{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .gov-grid{ grid-template-columns: 1fr; }
}

/* --------------------- Contact Us ------------------------  */

/* =========================
   Contact Page (Masnad)
   Add to bottom of style.css
========================= */

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.contact-card{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 18px;
}

.contact-card--soft{
  background: rgba(237,209,197,.35);
}

.contact-card__head{
  margin-bottom: 12px;
}

.contact-form{
  margin-top: 8px;
}

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-field{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 12px;
}

.c-field__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .92rem;
}

.c-field__input{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.78);
  padding: 0 12px;
  outline:none;
  font-size: 1rem;
}

.c-field__textarea{
  height: auto;
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.c-field__input:focus{
  border-color: rgba(171,105,83,.55);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.contact-actions{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.contact-fine{
  margin:0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.5;
}

/* Side column */
.contact-side{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.contact-side__title{
  margin:0 0 10px;
  color: #3E4C33;
  font-weight: 950;
}

.contact-side__text{
  margin: 0 0 12px;
  color: rgba(18,18,18,.70);
  line-height: 1.65;
}

.contact-info{
  display:grid;
  gap: 10px;
}

.info-item{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 14px;
  padding: 12px;
}

.info-item__k{
  font-weight: 900;
  color: #3E4C33;
  margin-bottom: 6px;
}

.info-item__v{
  color: rgba(18,18,18,.70);
  font-weight: 650;
}

.info-item__v a{
  color: #BC8E6C;
  font-weight: 850;
  text-decoration:none;
}

.info-item__v a:hover{
  text-decoration: underline;
}

.divider{
  height:1px;
  background: rgba(18,18,18,.10);
  margin: 14px 0;
}

/* Map placeholder */
.map-card{
  padding: 0;
  overflow:hidden;
}

.map-card__top{
  padding: 14px 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  border-bottom: 1px solid rgba(18,18,18,.08);
  background: rgba(237,209,197,.35);
}

.map-badge{
  font-weight: 900;
  color: #3E4C33;
}

.map-text{
  color: rgba(18,18,18,.60);
  font-weight: 650;
  font-size: .92rem;
}

.map-box{
  height: 220px;
  background:
    linear-gradient(135deg, rgba(62,76,51,.18), rgba(171,105,83,.12)),
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.45), transparent 40%);
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-row{
    grid-template-columns: 1fr;
  }
}


/* Contact us updated overide */


/* =========================
   Contact Form FIX (Override)
   Paste at VERY BOTTOM of style.css
========================= */

.contact-card,
.contact-card * {
  box-sizing: border-box;
}

.contact-form {
  margin-top: 14px;
}

/* Force 2-column layout on desktop */
.contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-bottom: 12px;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .contact-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Make each field block + vertical */
.contact-form .c-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
  width: 100%;
}

/* Label style */
.contact-form .c-field__label {
  display: block !important;
  font-weight: 850;
  color: #3E4C33;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Input / select / textarea consistent */
.contact-form .c-field__input {
  width: 100% !important;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.78);
  outline: none;
  font-size: 1rem;
  color: rgba(18,18,18,.78);
}

/* Select fixes */
.contact-form select.c-field__input {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(62,76,51,.75) 50%),
    linear-gradient(135deg, rgba(62,76,51,.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* Textarea fixes */
.contact-form .c-field__textarea {
  height: auto !important;
  min-height: 160px !important;
  padding: 12px 14px !important;
  resize: vertical;
  line-height: 1.6;
}

/* Focus state matches Masnad accent */
.contact-form .c-field__input:focus {
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

/* Checkbox row */
.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 16px;
  color: rgba(18,18,18,.70);
  font-weight: 650;
  line-height: 1.4;
}

.contact-form .check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #3E4C33;
}

/* Button area */
.contact-form .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make the submit button look premium & aligned */
.contact-form .btn.btn--primary {
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
}

/* Small note */
.contact-form .contact-fine {
  margin: 0;
  color: rgba(18,18,18,.58);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ------------------------------------------ Latest News Page ---------------------------*/
/* =========================
   Latest News Page — Masnad
   Paste at bottom of style.css
========================= */

.news-head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.news-head__right{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.news-pill{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
}

.news-pill--soft{
  background: rgba(171,105,83,.12);
  border-color: rgba(171,105,83,.20);
  color: #AB6953;
}

.news-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.news-card{
  display:block;
  text-decoration:none;
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 18px rgba(18,18,18,.05);
  padding: 16px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.news-card:hover{
  transform: translateY(-2px);
  border-color: rgba(171,105,83,.26);
  box-shadow: 0 14px 24px rgba(18,18,18,.08);
}

.news-card__top{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.news-source{
  font-weight: 900;
  color: #3E4C33;
  background: rgba(237,209,197,.40);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: .85rem;
}

.news-time{
  color: rgba(18,18,18,.55);
  font-weight: 800;
  font-size: .85rem;
}

.news-title{
  color: rgba(18,18,18,.80);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 10px;
}

.news-link{
  color: #BC8E6C;
  font-weight: 900;
}

.news-empty{
  border-radius: 18px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.62);
  padding: 18px;
  color: rgba(18,18,18,.70);
}

.news-footnote{
  margin-top: 14px;
  color: rgba(18,18,18,.58);
  font-size: .95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px){
  .news-grid{ grid-template-columns: 1fr; }
}


/* coming soon page  */


/* =========================
   Coming Soon Page — Masnad
   Paste at bottom of style.css
========================= */

.coming-page{
  background: #faf1ee45;
}

.coming{
  min-height: 100vh;
  display: grid;
  place-items: center;
  /* padding: 28px 16px; */
  /* background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 82% 75%, rgba(255,255,255,.35), transparent 42%),
    linear-gradient(180deg, rgba(62,76,51,.06), rgba(171,105,83,.04)); */
}

.coming__shell{
  width: min(1040px, 100%);
  /* border-radius: 26px; */
  border: 3px solid #414e35;
  background: rgb(237 209 197);
  box-shadow: 0 18px 40px rgba(18,18,18,.08);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

/* subtle brand corner accent */
.coming__shell::before{
  content:"";
  position:absolute;
  inset: -40% -30% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(62,76,51,.18), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(171,105,83,.16), transparent 55%);
  transform: rotate(18deg);
  pointer-events: none;
}

.coming__top{
  display: block;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  position: relative;
}

.coming__logo{
  height: 120px;
  margin: 30px auto;
  width: auto;
  display:block;
}

.coming__meta{
  display:flex;
  gap: 10px;
  align-items:center;
}

.coming__pill{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 850;
  color: #3E4C33;
  background: rgba(237,209,197,.55);
  border: 1px solid rgba(18,18,18,.10);
}

.coming__lang{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-weight: 900;
  color: #3E4C33;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  text-decoration:none;
}
.coming__lang:hover{
  background: rgba(171,105,83,.14);
}

.coming__content{
  padding: 00 18px;
  /* position: relative; */
}

.coming__title{
  text-align: center;
  margin: 20px;
  color: #edd1c5;
  font-weight: 950;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
}

.coming__subtitle{
  margin: 20px auto 22px;
  color: rgb(237 209 197);
  line-height: 1.7;
  max-width: 70ch;
  font-size: 1.05rem;
}

.coming__card{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 22px rgba(18,18,18,.06);
  max-width: 620px;
  margin: auto;
}

.coming__card-head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.coming__card-title{
  font-weight: 950;
  color: #3E4C33;
}

.coming__card-note{
  color: rgba(18,18,18,.55);
  font-weight: 700;
  font-size: .92rem;
}

.coming__form{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items:end;
}

.coming__field{
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.coming__label{
  font-weight: 850;
  color: rgba(62,76,51,.92);
  font-size: .95rem;
}

.coming__input{
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.14);
  background: rgba(255,255,255,.85);
  padding: 0 14px;
  outline: none;
  font-size: 1rem;
}

.coming__input:focus{
  border-color: rgba(171,105,83,.65);
  box-shadow: 0 0 0 4px rgba(171,105,83,.18);
}

.coming__btn{
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(18,18,18,.12);
  background: #3E4C33;
  color: #EDD1C5;
  font-weight: 900;
  cursor:pointer;
  white-space: nowrap;
}
.coming__btn:hover{
  filter: brightness(1.03);
}

.coming__fine{
  margin: 12px 0 0;
  color: rgba(18,18,18,.58);
  font-size: .92rem;
  line-height: 1.55;
}

.coming__info{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 820px;
}

.coming__info-item{
  background: rgba(237,209,197,.45);
  border: 1px solid rgba(18,18,18,.08);
  border-radius: 18px;
  padding: 14px;
}

.coming__k{
  font-weight: 950;
  color: #3E4C33;
  margin-bottom: 8px;
}

.coming__v{
  color: rgba(18,18,18,.68);
  font-weight: 700;
}

.coming__v a{
  color: #BC8E6C;
  text-decoration:none;
  font-weight: 900;
}
.coming__v a:hover{ text-decoration: underline; }

.coming__footer{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(18,18,18,.10);
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.coming__footer-left{
  color: rgba(18,18,18,.62);
  font-weight: 700;
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
}

.coming__dot{
  opacity: .7;
}

.coming__footer-link{
  color: rgba(18,18,18,.62);
  text-decoration:none;
  font-weight: 800;
}
.coming__footer-link:hover{
  color: #3E4C33;
  text-decoration: underline;
}

.coming__footer-right{
  display:flex;
  gap: 12px;
  align-items:center;
}

.coming__social{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(18,18,18,.10);
  color: #3E4C33;
  font-weight: 900;
  text-decoration:none;
}
.coming__social:hover{
  background: rgba(171,105,83,.14);
}

/* Responsive */
@media (max-width: 860px){
  .coming__shell{ padding: 18px; }
  .coming__info{ grid-template-columns: 1fr; }
  .coming__form{ grid-template-columns: 1fr; }
  .coming__btn{ width: 100%; }
}


/* New Coming Soon Page */


/* =========================
   Coming Soon (Map Layout)
   Masnad palette:
   #3E4C33 #EDD1C5 #BC8E6C #AB6953
========================= */

/* =========================
   Masnad Coming Soon Page
========================= */

.ms-coming-body{
  margin: 0;
  background: #EDD1C5;
  color: #EDD1C5;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.ms-coming{
  /* min-height: 100vh; */
  /* display: grid; */
  /* place-items: center; */
  /* padding: 28px 16px; */
}

.ms-coming__frame{
  width: min(1100px, 100%);
  height: min(100vh);
  /* height: min(680px, 100vh); */
  /* overflow: hidden; */
  /* position: relative; */
  border: 1px solid rgba(18,18,18,.12);
  /* box-shadow: 0 18px 44px rgba(18,18,18,.18); */
  background: #3E4C33;
}

/* Background map */
.ms-coming__bg{
  position: absolute;
  inset: 0;
  /* pavlushka._Minimalist_corporate_photograph_of_business_professi_b42cbe79-0ece-4151-9e56-87da6f9a7c46 1 */
  /* position: absolute; */
  /* width: 2004px; */
  /* height: 1123px; */
  /* left: -337px; */
  /* top: -12px; */
  background: linear-gradient(270deg, rgba(35, 52, 23, 0) 24.69%, #566849 76.46%), url(assets/images/coming-soon/background2.png);
  /* background-image:
    linear-gradient(
      135deg,
      rgba(62,76,51,.92),
      rgba(62,76,51,.86)
    ),
    url("assets/images/coming-soon/background.png"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Left readability overlay */
.ms-coming__frame::before{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(34,45,28,.88) 0%,
    rgba(34,45,28,.78) 32%,
    rgba(34,45,28,.35) 55%,
    rgba(34,45,28,.05) 72%,
    rgba(34,45,28,0) 100%
  );
  pointer-events: none;
}

/* Language switch */
.ms-coming__lang{
  position: absolute;
  /* top: 18px; */
  right: 18px;
  z-index: 1000000;
}

.ms-lang-btn{
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(237,209,197,.20);
  background: rgba(18,18,18,.12);
  color: rgba(237,209,197,.90);
  font-weight: 800;
  cursor: pointer;
  margin: 34px 22px 22px;
}

/* Map pin */
.ms-coming__pin{
  position: absolute;
  z-index: 2;
  right: 260px;
  top: 250px;
  width: 86px;
  height: auto;
  filter: drop-shadow(0 14px 18px rgba(18,18,18,.35));
}

/* Content */
.ms-coming__content{
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 44px 46px 26px;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ms-coming__logo img{
  /* height: 46px; */
  /* width: 220px; */
}

.ms-coming__kicker{
  margin: 60px 0 0;
  color: rgba(237,209,197,.78);
  font-weight: 650;
}

.ms-coming__title{
  margin: 20px 0;
  color: #EDD1C5;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
}

.ms-coming__card{
  margin-top: 8px;
}

.ms-coming__card-title{
  font-weight: 900;
  margin-bottom: 10px;
}

.ms-coming__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: rgba(237,209,197,.78);
}

.ms-coming__list li{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
}

.ms-coming__bullet{
  font-weight: 900;
}

.ms-coming__time{
  font-weight: 850;
}

.ms-coming__email{
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(237,209,197,.92);
  border: 1px solid rgba(237,209,197,.24);
  background: rgba(18,18,18,.12);
  font-weight: 850;
}

.ms-coming__footer{
  margin-top: auto;
  color: rgba(237,209,197,.55);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px){
  .ms-coming__content{
    padding: 34px 22px 22px;
  }

  .ms-coming__pin{
    right: 120px;
    top: 260px;
    width: 72px;
  }

  .ms-coming__frame::before{
    background: linear-gradient(
      180deg,
      rgba(34,45,28,.90) 0%,
      rgba(34,45,28,.72) 50%,
      rgba(34,45,28,.25) 80%,
      rgba(34,45,28,.05) 100%
    );
  }
}



/* Safety: Coming Soon must stay LTR (layout unchanged). Only text swaps via JS. */
.ms-coming-body,
.ms-coming__frame,
.ms-coming__content,
.ms-coming__card,
.ms-coming__list {
  direction: ltr !important;
  text-align: left !important;
}


/*

background-position: -400px 10px;
transform: scale(1.5)
*/


@media (max-width: 452px){
  .ms-coming__bg {
    background: linear-gradient(360deg, rgba(35, 52, 23, 0) 60.69%, #566849 95.46%), url(assets/images/coming-soon/background5.png);
    background-size: 100%;
    /* background-position: center; */
    background-repeat: no-repeat;
    /* padding-top: 400px; */
    top: 50px;
  }
  .ms-coming__kicker {
    margin-top:200px;
    /* box-shadow: 0px -20px 20px 20px rgb(86 104 73); */
  }

  .ms-coming__frame::before {
        background: rgb(86 104 73);
        }
  .ms-coming__frame {
    height: auto;
    background-color: #566849;
        }
}

@media (max-width: 350px){
.ms-coming__kicker {
  margin-top:170px;
  /* box-shadow: 0px -20px 20px 20px rgb(86 104 73); */
}
}

@media (max-width: 310px){
.ms-coming__kicker {
  margin-top:140px;
  /* box-shadow: 0px -20px 20px 20px rgb(86 104 73); */
}
}
