:root {
  --primary: #e8281a;
  --secondary: #f6a623;
  --dark: #1a1a1a;
  --green: #2d6a4f;
  --cream: #fff8f0;
  --cream2: #fef0dc;
  --light: #f9f5f0;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Poppins", sans-serif;
  color: #444;
  background: #fff;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  color: var(--dark);
}
a {
  text-decoration: none;
  transition: all 0.3s;
}
img {
  max-width: 100%;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* ===================== TOP BAR ===================== */
#topbar {
  padding: 8px 0;
  font-size: 0.82rem;
}
#topbar span {
  margin-right: 16px;
}
#topbar span i {
  margin-right: 5px;
}
#topbar .tsoc a {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.75rem;
  margin-left: 5px;
  transition: 0.3s;
}
#topbar .tsoc a:hover {
  background: var(--primary);
  color: #fff;
}
.ttag {
  background: var(--primary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* ===================== NAVBAR ===================== */
#nav {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 990;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: 0.4s;
}
#nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.14);
}
.blogo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(232, 40, 26, 0.35);
}
.bname {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
}
.bname span {
  color: var(--primary);
}
.bsub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #aaa;
}
.navbar-nav .nav-link {
  font-size: 0.87rem;
  font-weight: 500;
  color: #333 !important;
  padding: 26px 13px !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  transition: 0.3s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 55%;
}
.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}
/* FIX 1 â€” Search btn in navbar */
#navSearchBtn {
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.3s;
}
#navSearchBtn:hover {
  background: rgba(232, 40, 26, 0.08);
  color: var(--primary);
}
.nav-cta {
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 20px !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(232, 40, 26, 0.3);
  margin-left: 6px;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 40, 26, 0.4);
}

/* ===================== SECTION COMMONS ===================== */
section {
  padding: 88px 0;
}
.slbl {
  font-family: "Dancing Script", cursive;
  font-size: 1.35rem;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.stitle {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}
.stitle span {
  color: var(--primary);
}
.sline {
  width: 58px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0 auto 12px;
}
.sline.lft {
  margin-left: 0;
}
.sdesc {
  color: #777;
  font-size: 0.93rem;
  line-height: 1.8;
}
.btn-red {
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.93rem;
  box-shadow: 0 8px 24px rgba(232, 40, 26, 0.35);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}
.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(232, 40, 26, 0.45);
  color: #fff;
}

/* ===================== HERO ===================== */
#hero {
  background: var(--cream);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hbgtxt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22vw;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  white-space: nowrap;
}
.hs {
  position: absolute;
  border-radius: 50%;
}
.hs1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232, 40, 26, 0.07), transparent 70%);
  top: -90px;
  right: -80px;
  animation: fsh 8s ease-in-out infinite;
}
.hs2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(246, 166, 35, 0.09),
    transparent 70%
  );
  bottom: -50px;
  left: 8%;
  animation: fsh 10s ease-in-out infinite reverse;
}
@keyframes fsh {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-28px);
  }
}
.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 30px;
  padding: 6px 16px 6px 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 22px;
}
.hbadge .hbi {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
}
.hbadge span {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--dark);
}
.htitle {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}
.htitle .hl {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.htitle .hl::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 7px;
  background: rgba(232, 40, 26, 0.14);
  border-radius: 4px;
  z-index: -1;
}
.hdesc {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  max-width: 470px;
  margin-bottom: 30px;
}
/* FIX 2 â€” Video play button */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 16px;
  transition: 0.3s;
  cursor: pointer;
}
.btn-play .pico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  color: var(--primary);
  font-size: 0.95rem;
  transition: 0.3s;
  flex-shrink: 0;
}
.btn-play:hover .pico {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}
.btn-play:hover {
  color: var(--primary);
}
.hstats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hstat .snum {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--dark);
  display: block;
  line-height: 1;
}
.hstat .snum em {
  color: var(--primary);
  font-style: normal;
}
.hstat small {
  font-size: 0.7rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sdiv {
  width: 1px;
  background: #ddd;
  height: 38px;
  align-self: center;
}
.hcircle {
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #fff8f0, #ffe5c8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 28px 76px rgba(232, 40, 26, 0.14);
}
.hcircle img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 50%;
}
#hero .fcard {
  position: absolute;
  background: #fff;
  border-radius: 11px;
  padding: 10px 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 9px;
}
#hero .fcard.fc1 {
  top: 55px;
  left: -15px;
  animation: fltc 4s ease-in-out infinite;
}
#hero .fcard.fc2 {
  bottom: 75px;
  right: -25px;
  animation: fltc 4s ease-in-out infinite 1.5s;
}
#hero .fcard.fc3 {
  top: 38%;
  right: -45px;
  animation: fltc 4s ease-in-out infinite 0.8s;
}
@keyframes fltc {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
.fcoi {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.fcoi.r {
  background: rgba(232, 40, 26, 0.11);
  color: var(--primary);
}
.fcoi.y {
  background: rgba(246, 166, 35, 0.14);
  color: var(--secondary);
}
.fcoi.g {
  background: rgba(45, 106, 79, 0.11);
  color: var(--green);
}
.fcnum {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
  display: block;
  line-height: 1;
}
.fcsm {
  font-size: 0.66rem;
  color: #999;
}

/* ===================== MARQUEE ===================== */
.mqsec {
  background: var(--primary);
  padding: 13px 0;
  overflow: hidden;
}
.mqtrack {
  display: flex;
  gap: 38px;
  white-space: nowrap;
  animation: mqrun 22s linear infinite;
}
.mqitem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 500;
}
.mqitem i {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.55rem;
}
@keyframes mqrun {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===================== CATEGORY ===================== */
#category {
  background: var(--cream);
}
.catcard {
  background: #fff;
  border-radius: 15px;
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
}
.catcard:hover,
.catcard.active {
  transform: translateY(-7px);
  box-shadow: 0 14px 38px rgba(232, 40, 26, 0.14);
  border-color: var(--primary);
}
.catimg {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
  transition: 0.4s;
}
.catcard:hover .catimg {
  transform: scale(1.1) rotate(-4deg);
}
.catnm {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}
.catct {
  font-size: 0.73rem;
  color: #bbb;
}

/* ===================== ABOUT ===================== */
#about {
  background: #fff;
}
.astack {
  position: relative;
}
.amain {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.amain img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.asm {
  position: absolute;
  bottom: -26px;
  right: -26px;
  width: 170px;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: var(--shadow);
}
.asm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aexp {
  position: absolute;
  top: 28px;
  left: -16px;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(232, 40, 26, 0.4);
}
.aexp .anum {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.aexp small {
  font-size: 0.7rem;
  opacity: 0.9;
}
.fti {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 18px;
}
.ftico {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: 0.3s;
}
.ftico.r {
  background: rgba(232, 40, 26, 0.1);
  color: var(--primary);
}
.ftico.y {
  background: rgba(246, 166, 35, 0.11);
  color: var(--secondary);
}
.ftico.g {
  background: rgba(45, 106, 79, 0.1);
  color: var(--green);
}
.fti:hover .ftico {
  transform: scale(1.1);
}
.fti h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
  font-family: "Poppins", sans-serif;
}
.fti p {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

/* ===================== MENU ===================== */
#menu {
  background: var(--light);
}
/* FIX 3 â€” Filter buttons */
.filtbtn {
  border: 2px solid #e5e5e5;
  background: #fff;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: 0.3s;
  margin: 3px;
  font-family: "Poppins", sans-serif;
}
.filtbtn.active,
.filtbtn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 5px 18px rgba(232, 40, 26, 0.24);
}
.mwrap {
  transition: 0.35s;
}
.mwrap.gone {
  display: none !important;
}
.mcard {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
  cursor: pointer;
}
.mcard:hover {
  transform: translateY(-9px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
}
.mimg {
  position: relative;
  overflow: hidden;
  height: 215px;
  background: var(--cream2);
}
.mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.mcard:hover .mimg img {
  transform: scale(1.09);
}
.mbdg {
  position: absolute;
  top: 13px;
  left: 13px;
  background: var(--primary);
  color: #fff;
  border-radius: 7px;
  padding: 3px 11px;
  font-size: 0.7rem;
  font-weight: 700;
}
.mbdg.new {
  background: var(--green);
}
.mbdg.hot {
  background: var(--secondary);
  color: var(--dark);
}
/* FIX 4 â€” Heart & Plus buttons stop propagation */
.mhrt {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.1);
}
.mhrt:hover {
  color: var(--primary);
  transform: scale(1.18);
}
.mbody {
  padding: 18px;
}
.mcat {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.mtit {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
}
.mdesc {
  font-size: 0.78rem;
  color: #aaa;
  margin-bottom: 13px;
  line-height: 1.5;
}
.mfoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mprice {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  font-family: "Playfair Display", serif;
}
.mprice small {
  font-size: 0.72rem;
  font-weight: 400;
  color: #ccc;
  text-decoration: line-through;
  margin-left: 5px;
}
.mstars {
  font-size: 0.73rem;
  color: var(--secondary);
}
/* FIX 4 â€” Plus button opens detail popup */
.madd {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #c01e12);
  border: none;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 11px rgba(232, 40, 26, 0.28);
}
.madd:hover {
  transform: scale(1.15) rotate(90deg);
}

/* ===================== SPECIAL OFFER ===================== */
#special {
  background: linear-gradient(135deg, #1a0000 0%, #2d0000 100%);
  position: relative;
  overflow: hidden;
}
.spbg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background: repeating-linear-gradient(
    45deg,
    #fff 0,
    #fff 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 40px 40px;
}
.sptag {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 6px;
  padding: 4px 15px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.sptitle {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.sptitle span {
  color: var(--secondary);
}
.spdesc {
  color: rgba(255, 255, 255, 0.62);
  margin: 18px 0;
  font-size: 0.93rem;
  line-height: 1.8;
}
.cdwrap {
  display: flex;
  gap: 14px;
  margin: 26px 0;
}
.cditem {
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 11px;
  padding: 13px 18px;
  min-width: 72px;
}
.cdnum {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
}
.cdlbl {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 3px;
  display: block;
}
.spimgw {
  position: relative;
  text-align: center;
}
.spglow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(246, 166, 35, 0.24),
    transparent 70%
  );
}
.spimgw img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 28px 56px rgba(246, 166, 35, 0.28));
  animation: fltimg 5s ease-in-out infinite;
}
@keyframes fltimg {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-17px);
  }
}
.sppbdg {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: var(--primary);
  color: #fff;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232, 40, 26, 0.5);
  animation: plsbdg 2.5s ease-in-out infinite;
}
@keyframes plsbdg {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 12px 34px rgba(232, 40, 26, 0.7);
  }
}
.sppbdg .old {
  font-size: 0.68rem;
  text-decoration: line-through;
  opacity: 0.7;
}
.sppbdg .np {
  font-size: 1.25rem;
  font-weight: 900;
}

/* ===================== GALLERY ===================== */
#gallery {
  background: var(--light);
}
.ggrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 215px);
  gap: 13px;
}
.gitem {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gitem:first-child {
  grid-row: span 2;
}
.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.gitem:hover img {
  transform: scale(1.08);
}
.gover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), transparent 60%);
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.gitem:hover .gover {
  opacity: 1;
}
.gover span {
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
}
.gover i {
  color: var(--secondary);
  margin-right: 5px;
}

/* ===================== HISTORY â€” FIX 8 ===================== */
#history {
  background: var(--cream);
}
.timeline {
  position: relative;
  padding: 18px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  top: 0;
  bottom: 0;
}
/* Grid: left-col | dot-col | right-col */
.tli {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  margin-bottom: 50px;
  align-items: start;
}
.tl-left {
  padding-right: 32px;
  text-align: right;
}
.tl-center {
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.tl-right {
  padding-left: 32px;
  text-align: left;
}
/* ODD â†’ show LEFT text, hide RIGHT */
.tli:nth-child(odd) .tl-right {
  visibility: hidden;
}
/* EVEN â†’ hide LEFT, show RIGHT */
.tli:nth-child(even) .tl-left {
  visibility: hidden;
}
.tldot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px rgba(232, 40, 26, 0.3);
  flex-shrink: 0;
}
.tlyear {
  font-family: "Dancing Script", cursive;
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 3px;
}
.tl-left h5,
.tl-right h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 7px;
  font-family: "Playfair Display", serif;
  color: var(--dark);
}
.tl-left p,
.tl-right p {
  font-size: 0.83rem;
  color: #888;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 767px) {
  .timeline::before {
    left: 16px;
  }
  .tli {
    grid-template-columns: 32px 1fr;
    gap: 0;
  }
  .tl-left {
    display: none;
  }
  .tl-right {
    display: block !important;
    visibility: visible !important;
    padding-left: 18px;
    text-align: left;
  }
  .tl-center {
    padding-top: 5px;
  }
  .tli:nth-child(even) .tl-left {
    display: none;
  }
  .tli:nth-child(odd) .tl-right {
    visibility: visible !important;
  }
}

/* ===================== CHEFS ===================== */
#chefs {
  background: #fff;
}
.chcard {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}
.chcard:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
}
.chimg {
  position: relative;
  overflow: hidden;
  height: 268px;
  background: var(--cream2);
}
.chimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: 0.5s;
}
.chcard:hover .chimg img {
  transform: scale(1.05);
}
.chsoc {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  transition: 0.4s;
  padding: 10px 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}
.chcard:hover .chsoc {
  bottom: 0;
}
.chsoc a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  transition: 0.3s;
}
.chsoc a:hover {
  background: var(--primary);
}
.chbody {
  padding: 18px;
  text-align: center;
}
.chnm {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.chrole {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.chexp {
  font-size: 0.76rem;
  color: #bbb;
  margin-top: 5px;
}

/* ===================== HOURS ===================== */
#hours {
  background: linear-gradient(135deg, var(--green), #1a4a35);
  position: relative;
  overflow: hidden;
}
.hrsbg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: repeating-linear-gradient(
    45deg,
    #fff 0,
    #fff 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 28px 28px;
}
.hrscard {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 28px;
}
.hrsrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.hrsrow:last-child {
  border: none;
}
.hrsday {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 500;
}
.hrstime {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.hdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.hdot.on {
  background: #4ade80;
  box-shadow: 0 0 7px #4ade80;
}
.hdot.off {
  background: #ff6b6b;
}
.hrscta {
  background: var(--primary);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 18px 48px rgba(232, 40, 26, 0.4);
}
.hrscta h4 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}
.hrscta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  margin: 9px 0 18px;
}
.btnw {
  background: #fff;
  color: var(--primary);
  border-radius: 50px;
  padding: 11px 28px;
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-block;
  transition: 0.3s;
}
.btnw:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  color: var(--primary);
}

/* ===================== TESTIMONIALS — PREMIUM WALL ===================== */
#testimonials {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 107, 53, 0.14) 0%, rgba(255, 107, 53, 0) 42%),
    radial-gradient(circle at 82% 74%, rgba(215, 155, 44, 0.1) 0%, rgba(215, 155, 44, 0) 46%),
    linear-gradient(180deg, #2b1a10 0%, #24160f 34%, #1f130d 68%, #22150f 100%);
  min-height: 700px;
  padding: 120px 0;
  overflow: hidden;
  overflow-x: clip;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 206, 143, 0.08), inset 0 -1px 0 rgba(255, 206, 143, 0.06);
}

#testimonials .slbl {
  color: #FF7A3D;
}

#testimonials .stitle {
  color: #FFFFFF;
}

#testimonials .stitle span {
  color: #FF6B35;
}

#testimonials .sdesc {
  color: rgba(255, 255, 255, 0.82);
}

#testimonials::before,
#testimonials::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

#testimonials::before {
  top: 12px;
  left: 50%;
  width: 660px;
  height: 300px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 167, 69, 0.2) 0%, rgba(230, 167, 69, 0.08) 34%, rgba(230, 167, 69, 0) 74%);
  filter: blur(12px);
  z-index: 0;
}

#testimonials::after {
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 214, 155, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 80%, rgba(255, 214, 155, 0.07) 0 1px, transparent 2px),
    repeating-linear-gradient(135deg, rgba(255, 225, 165, 0.025) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(45deg, rgba(255, 200, 130, 0.018) 0 1px, transparent 1px 42px);
  opacity: 0.26;
  z-index: 0;
}

.tw-wall {
  --tw-card-width: 250px;
  --tw-card-height: 150px;
  --tw-gap: 20px;
  display: grid;
  gap: 20px;
  overflow: hidden;
  overflow-x: clip;
  padding: 2px 0;
  position: relative;
  contain: paint;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

@media (min-width: 1200px) {
  #testimonials .tw-wall {
    overflow: hidden;
    min-height: 860px;
  }

  #testimonials .tw-row {
    display: flex;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 2;
  }
}

.tw-row {
  display: flex;
  gap: var(--tw-gap);
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation-name: tw-marquee;
  animation-duration: var(--duration, 64s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  backface-visibility: hidden;
}

.tw-row:hover {
  animation-play-state: paused;
}

@keyframes tw-marquee {
  from {
    transform: translate3d(var(--start-x, 0px), 0, 0);
  }
  to {
    transform: translate3d(var(--end-x, -2000px), 0, 0);
  }
}

.tw-card {
  width: var(--tw-card-width);
  min-width: var(--tw-card-width);
  height: var(--tw-card-height);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(215, 155, 44, 0.25);
  background: #fff9f3;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
}

.tw-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6px;
}

.tw-stars {
  color: #d79b2c;
  font-size: 0.8rem;
  letter-spacing: 0.9px;
  line-height: 1;
  display: inline-flex;
  gap: 2px;
}

.tw-quote {
  font-size: 1.35rem;
  color: rgba(215, 155, 44, 0.3);
  line-height: 1;
}

.tw-text {
  margin: 0;
  color: #4f392a;
  font-size: 0.74rem;
  line-height: 1.42;
  line-clamp: 3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.tw-foot {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
}

.tw-avatar {
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #d79b2c, #cb4a22);
}

.tw-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tw-name-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tw-name {
  color: #2d1c12;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.1;
  font-family: 'Playfair Display', serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tw-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #3c7c46;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.tw-service {
  color: #8c631c;
  font-size: 0.64rem;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tw-loc {
  color: #8b6c56;
  font-size: 0.62rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1199px) {
  .tw-wall {
    --tw-card-width: 168px;
    --tw-gap: 12px;
  }
}

@media (max-width: 767px) {
  .tw-wall {
    --tw-card-width: 142px;
    --tw-card-height: 142px;
    --tw-gap: 12px;
  }
  .tw-card {
    padding: 12px;
  }
  .tw-stars {
    font-size: 0.66rem;
  }
  .tw-text {
    font-size: 0.66rem;
    line-height: 1.35;
    line-clamp: 4;
    -webkit-line-clamp: 4;
  }
  .tw-avatar {
    width: 26px;
    min-width: 26px;
    height: 26px;
    font-size: 0.52rem;
  }
  .tw-name {
    font-size: 0.66rem;
  }
  .tw-service {
    font-size: 0.58rem;
  }
  .tw-loc,
  .tw-verified {
    font-size: 0.54rem;
  }
}


/* ===================== RESERVATION â€” FIX 5 ===================== */
#reservation {
  background: var(--light);
}
.resico {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  background: rgba(232, 40, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.flbl {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
  display: block;
}
.fctrl {
  width: 100%;
  border: 2px solid #eee;
  border-radius: 9px;
  padding: 11px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: 0.3s;
  color: var(--dark);
  background: #fff;
  appearance: auto;
}
.fctrl:focus {
  border-color: var(--primary);
}
.fcard {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}
.sucmsg {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(45, 106, 79, 0.07);
  border-radius: 11px;
  margin-top: 14px;
}
.sucmsg i {
  color: var(--green);
  font-size: 1.7rem;
  display: block;
  margin-bottom: 7px;
}
.sucmsg p {
  color: var(--green);
  font-weight: 600;
  margin: 0;
  font-size: 0.88rem;
}

/* ===================== BLOG ===================== */
#blog {
  background: var(--light);
}
.blcard {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.blcard:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}
.blimg {
  position: relative;
  height: 195px;
  overflow: hidden;
}
.blimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.blcard:hover .blimg img {
  transform: scale(1.06);
}
.bldatebdg {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 9px;
  padding: 5px 11px;
  text-align: center;
  line-height: 1.2;
}
.bldatebdg .bd {
  font-size: 1.15rem;
  font-weight: 800;
  display: block;
}
.bldatebdg .bm {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.blbody {
  padding: 20px;
}
.bltag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 7px;
}
.bltit {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 9px;
  line-height: 1.4;
}
.bltit a {
  color: var(--dark);
}
.bltit a:hover {
  color: var(--primary);
}
.blmeta {
  display: flex;
  gap: 14px;
  font-size: 0.76rem;
  color: #bbb;
  margin-bottom: 13px;
}
.blmeta i {
  color: var(--primary);
  margin-right: 3px;
}
.blmore {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blmore i {
  transition: 0.3s;
}
.blmore:hover {
  color: var(--dark);
}
.blmore:hover i {
  transform: translateX(5px);
}

/* ===================== NEWSLETTER ===================== */
#newsletter {
  background: linear-gradient(135deg, var(--primary), #8b0000);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.nlbg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='white' stroke-width='.4' opacity='.1'/%3E%3C/svg%3E");
  background-size: 75px;
}
.nlw {
  position: relative;
  z-index: 2;
}
.nlw h2 {
  color: #fff;
  font-size: 2.1rem;
}
/* Newsletter form â€” fixed layout */
.nl-form-wrap {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
  align-items: center;
}
.nlinput {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 0.9rem;
  outline: none;
  font-family: "Poppins", sans-serif;
  color: #333;
}
.nlbtn {
  flex-shrink: 0;
  background: var(--secondary);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}
.nlbtn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
@media (max-width: 540px) {
  .nl-form-wrap {
    flex-direction: column;
    padding: 0 10px;
  }
  .nlinput {
    width: 100%;
    border-radius: 12px;
  }
  .nlbtn {
    width: 100%;
    border-radius: 12px;
  }
}

/* ===================== CONTACT â€” FIX 6 ===================== */
#contact-section {
  background: #fff;
}
.ctdark {
  background: var(--dark);
  border-radius: 18px;
  padding: 38px;
  height: 100%;
}
.ctdark h4 {
  color: #fff;
  margin-bottom: 7px;
}
.ctdark .ctsub {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  margin-bottom: 26px;
}
.ctitem {
  display: flex;
  gap: 13px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.cticon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(232, 40, 26, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ctinfo strong {
  display: block;
  color: #aaa;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1px;
  font-family: "Poppins", sans-serif;
}
.ctinfo span {
  color: #fff;
  font-size: 0.87rem;
}
.ctsocrow {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.ctsocrow a {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  transition: 0.3s;
}
.ctsocrow a:hover {
  background: var(--primary);
  color: #fff;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--dark);
  padding: 68px 0 0;
}
.fnm {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
}
.fnm span {
  color: var(--primary);
}
.fdesc {
  color: #777;
  font-size: 0.86rem;
  line-height: 1.8;
  margin-top: 9px;
}
.fsoc {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}
.fsoc a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.88rem;
  transition: 0.3s;
}
.fsoc a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.ftit {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  font-family: "Poppins", sans-serif;
}
.flinks li {
  list-style: none;
  margin-bottom: 9px;
}
.flinks a {
  color: #777;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: 0.3s;
}
.flinks a:hover {
  color: var(--secondary);
  padding-left: 5px;
}
.flinks a i {
  color: var(--primary);
  font-size: 0.68rem;
}
.fci {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px;
}
.fciico {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(232, 40, 26, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.82rem;
  flex-shrink: 0;
}
.fciinfo {
  color: #777;
  font-size: 0.83rem;
  line-height: 1.6;
}
.fciinfo strong {
  color: #bbb;
  display: block;
  font-size: 0.77rem;
}
.fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  margin-top: 46px;
}
.fbot p {
  color: #555;
  font-size: 0.8rem;
  margin: 0;
}
.fbot span {
  color: var(--primary);
}
.fbot a {
  color: #555;
  font-size: 0.8rem;
  margin-left: 18px;
}
.fbot a:hover {
  color: var(--secondary);
}

/* ===================== FLOATING BUTTONS ===================== */
.floating-btn {
  position: fixed;
  right: 16px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.floating-btn.whatsapp {
  bottom: calc(16px + env(safe-area-inset-bottom));
  gap: 8px;
  padding: 11px 16px;
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .2px;
  background: linear-gradient(135deg, #16a34a, #0f8a3e);
  box-shadow: 0 14px 28px rgba(15, 138, 62, 0.38);
}

.floating-btn.whatsapp i {
  font-size: 1rem;
}

.floating-btn.whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(15, 138, 62, 0.46);
}

.floating-btn.call {
  bottom: calc(16px + env(safe-area-inset-bottom));
  left: 16px;
  right: auto;
  gap: 8px;
  padding: 11px 16px;
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .2px;
  background: linear-gradient(135deg, #FE0030, #c01e12);
  box-shadow: 0 14px 28px rgba(254, 0, 48, 0.38);
}

.floating-btn.call i {
  font-size: 1rem;
}

.floating-btn.call:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(254, 0, 48, 0.46);
}

.floating-btn.top {
  width: 44px;
  height: 44px;
  bottom: calc(74px + env(safe-area-inset-bottom));
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #bf3a25);
  box-shadow: 0 10px 22px rgba(155, 44, 24, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.floating-btn.top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-btn.top:hover {
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .floating-btn.whatsapp {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    padding: 8px 12px;
    font-size: .78rem;
    gap: 6px;
  }

  .floating-btn.call {
    left: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    padding: 8px 12px;
    font-size: .78rem;
    gap: 6px;
  }

  .floating-btn.top {
    right: 12px;
    width: 38px;
    height: 38px;
    bottom: calc(60px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 400px) {
  .floating-btn.whatsapp,
  .floating-btn.call {
    padding: 7px 10px;
    font-size: 0.72rem;
  }
}

/* ===================== UTILITIES ===================== */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(232, 40, 26, 0.38);
  opacity: 0;
  transform: translateY(18px);
  transition: 0.4s;
}
#btt.show {
  opacity: 1;
  transform: translateY(0);
}
#btt:hover {
  transform: translateY(-4px) !important;
}
.cartfl {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9990;
  background: var(--secondary);
  border-radius: 50px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 7px 22px rgba(246, 166, 35, 0.38);
  cursor: pointer;
  transition: 0.3s;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.88rem;
}
.cartfl:hover {
  transform: translateY(-4px);
}
.cartfl .ccount {
  background: var(--primary);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
}

/* ====================================================
   ALL POPUP / MODAL STYLES
==================================================== */

/* --- FIX 1: SEARCH POPUP --- */
#searchOv {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 5, 5, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 78px;
}
#searchOv.open {
  display: flex;
  animation: fadeov 0.28s ease;
}
@keyframes fadeov {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#searchOv .sovclose {
  position: absolute;
  top: 22px;
  right: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  transition: 0.3s;
}
#searchOv .sovclose:hover {
  background: var(--primary);
}
.sovbox {
  width: 100%;
  max-width: 680px;
  padding: 0 18px;
}
.sovbox h4 {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 26px;
  font-family: "Playfair Display", serif;
}
.sovinput {
  display: flex;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 60px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}
.sovinput input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 17px 24px;
  color: #fff;
  font-size: 1.05rem;
  font-family: "Poppins", sans-serif;
  outline: none;
}
.sovinput input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}
.sovinput button {
  background: var(--primary);
  border: none;
  padding: 0 26px;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}
.sovinput button:hover {
  background: #c01e12;
}
.sovcats {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-top: 28px;
}
.sovcat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50px;
  padding: 7px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Poppins", sans-serif;
}
.sovcat img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}
.sovcat:hover,
.sovcat.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.sovtrend {
  text-align: center;
  margin-top: 26px;
}
.sovtrend p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  margin-bottom: 9px;
}
.sovtrend .ttag {
  display: inline-block;
  margin: 3px;
  background: rgba(246, 166, 35, 0.13);
  border: 1px solid rgba(246, 166, 35, 0.28);
  color: var(--secondary);
  border-radius: 20px;
  padding: 3px 13px;
  font-size: 0.76rem;
  cursor: pointer;
  transition: 0.3s;
}
.sovtrend .ttag:hover {
  background: var(--secondary);
  color: var(--dark);
}

/* ====================================================
   BOOKING POPUP — GLASSMORPHISM PROFESSIONAL STYLE
==================================================== */

.mimg { cursor: pointer; }
.mcard { cursor: pointer; }

/* --- Overlay --- */
#menuPop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 5, 20, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}
#menuPop.open {
  display: flex;
  animation: bkFadeIn 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes bkFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --- Modal Box --- */
.mpbox {
  background: #fff;
  border-radius: 24px;
  max-width: 900px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  animation: bkSlideUp 0.36s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes bkSlideUp {
  from { transform: translateY(28px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.mpbox::-webkit-scrollbar { width: 4px; }
.mpbox::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* --- Close Button --- */
.mpclose {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.07);
  border: none;
  font-size: 0.92rem;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
  z-index: 10;
  flex-shrink: 0;
}
.mpclose:hover {
  background: var(--primary);
  color: #fff;
  transform: rotate(90deg);
}

/* --- Left Image Panel --- */
.mpimg-wrap {
  width: 42%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
  min-height: 480px;
  background: var(--cream2);
}
.mpimg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.mpbox:hover .mpimg-wrap img {
  transform: scale(1.04);
}
.mpimg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 5, 20, 0.72) 0%,
    rgba(10, 5, 20, 0.18) 45%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 22px;
}
.mpcat-badge {
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(232, 40, 26, 0.45);
}

/* --- Right Body Panel --- */
.mpbody {
  flex: 1;
  padding: 32px 28px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mpbody::-webkit-scrollbar { width: 3px; }
.mpbody::-webkit-scrollbar-thumb { background: var(--primary); }

/* --- Service Info --- */
.mpinfo { margin-bottom: 16px; }

.mpcat-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 6px;
}
.mp-title {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 9px;
}
.mp-desc {
  font-size: 0.84rem;
  color: #777;
  line-height: 1.75;
  margin-bottom: 12px;
}

/* Benefits List */
.mp-benefits {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}
.mp-benefits p {
  font-size: 0.8rem;
  color: #555;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5;
}
.mp-benefits p i {
  color: var(--green);
  font-size: 0.78rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Tags */
.mptags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}
.mptag {
  background: rgba(246, 166, 35, 0.12);
  color: #7a5a00;
  border: 1px solid rgba(246, 166, 35, 0.3);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.71rem;
  font-weight: 600;
}

/* --- Divider --- */
.mp-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 18px;
}
.mp-divider::before,
.mp-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #e5e5e5, transparent);
}
.mp-divider span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- Booking Form Grid --- */
.mpform { flex: 1; }

.mpform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.mpfield {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mpfield-full {
  grid-column: 1 / -1;
}
.mpfield label {
  font-size: 0.76rem;
  font-weight: 600;
  color: #444;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mpfield label i {
  color: var(--primary);
  font-size: 0.72rem;
  width: 14px;
  text-align: center;
}
.mpfield label .req {
  color: var(--primary);
  margin-left: 1px;
}
.mpfield input,
.mpfield select,
.mpfield textarea {
  width: 100%;
  border: 1.8px solid #e8e8e8;
  border-radius: 10px;
  padding: 10px 13px;
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  color: var(--dark);
  background: #fafafa;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  appearance: auto;
}
.mpfield input:focus,
.mpfield select:focus,
.mpfield textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232, 40, 26, 0.08);
}
.mpfield input::placeholder,
.mpfield textarea::placeholder {
  color: #bbb;
  font-size: 0.8rem;
}
.mpfield textarea {
  resize: vertical;
  min-height: 76px;
}

/* --- Error Message --- */
.bk-error {
  background: rgba(232, 40, 26, 0.07);
  border: 1.5px solid rgba(232, 40, 26, 0.25);
  border-radius: 10px;
  padding: 11px 15px;
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bk-error::before {
  content: "\f071";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* --- Submit Button --- */
.bk-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, #c01e12 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: 0.3s;
  box-shadow: 0 6px 22px rgba(232, 40, 26, 0.32);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.bk-submit-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 40, 26, 0.44);
}
.bk-submit-btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

/* --- Success Message --- */
.bk-success {
  text-align: center;
  padding: 28px 18px;
  background: linear-gradient(135deg,
    rgba(45, 106, 79, 0.06),
    rgba(45, 106, 79, 0.12)
  );
  border: 1.5px solid rgba(45, 106, 79, 0.22);
  border-radius: 16px;
  margin-bottom: 12px;
  animation: bkFadeIn 0.4s ease;
}
.bk-success-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #1b5e40);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.35);
}
.bk-success-icon i {
  color: #fff;
  font-size: 1.6rem;
}
.bk-success h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 6px;
}
.bk-success p {
  font-size: 0.83rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* --- WhatsApp Button --- */
.bk-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(135deg, #25D366, #128C4A);
  color: #fff;
  border-radius: 12px;
  padding: 13px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  margin-top: 2px;
}
.bk-whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.44);
  color: #fff;
}
.bk-whatsapp-btn i {
  font-size: 1.15rem;
}

/* --- Responsive: Tablet --- */
@media (max-width: 820px) {
  .mpimg-wrap {
    width: 100%;
    min-height: 220px;
    border-radius: 24px 24px 0 0;
    max-height: 260px;
  }
  .mpbox {
    flex-direction: column;
    max-height: 92vh;
  }
  .mpbody {
    padding: 22px 18px 22px;
  }
  .mp-title {
    font-size: 1.3rem;
  }
}

/* --- Responsive: Mobile --- */
@media (max-width: 540px) {
  #menuPop {
    padding: 8px;
    align-items: flex-end;
  }
  .mpbox {
    border-radius: 20px 20px 0 0;
    max-height: 96dvh;
    animation: bkSlideUp 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .mpimg-wrap {
    min-height: 180px;
    max-height: 200px;
    border-radius: 20px 20px 0 0;
  }
  .mpbody {
    padding: 18px 14px 24px;
  }
  .mpform-grid {
    grid-template-columns: 1fr;
  }
  .mpfield-full {
    grid-column: 1;
  }
  .mp-title {
    font-size: 1.15rem;
  }
  .mpclose {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .mpfield input,
  .mpfield select,
  .mpfield textarea {
    min-height: 46px;
    font-size: 16px;
  }

  .mpfield textarea {
    min-height: 92px;
  }
}

/* --- FIX 7: GALLERY POPUP --- */
#galPop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.96);
  align-items: center;
  justify-content: center;
  padding: 18px;
}
#galPop.open {
  display: flex;
  animation: fadeov 0.28s ease;
}
.gpbox {
  max-width: 880px;
  width: 100%;
  position: relative;
  text-align: center;
}
.gpbox img {
  width: 100%;
  max-height: 64vh;
  object-fit: contain;
  border-radius: 14px;
}
.gpclose {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.gpclose:hover {
  background: var(--primary);
}
.gpcap {
  color: #fff;
  margin-top: 18px;
}
.gpcap h5 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #fff;
}
.gpcap p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}
.gpnav {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 14px;
}
.gpnav button {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 50px;
  padding: 7px 20px;
  cursor: pointer;
  font-size: 0.83rem;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
}
.gpnav button:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Magnific video override */
.mfp-bg {
  background: #000 !important;
  opacity: 0.93 !important;
}
.mfp-close {
  color: #fff !important;
}

/* ===================== HOURS (LEGACY SOURCE OF TRUTH) ===================== */
#hours {
  background:
    radial-gradient(circle at 10% 0%, rgba(246,166,35,.18), transparent 24%),
    radial-gradient(circle at 94% 86%, rgba(232,40,26,.1), transparent 25%),
    var(--cream);
  position: relative;
  overflow: hidden;
}
#hours .hrsbg { opacity: .28; background-size: 26px 26px; }
#hours .hrs-section-label { color: var(--primary); }
#hours .hrs-section-title { color: var(--dark); }
#hours .hrs-section-title span { color: var(--primary); }
#hours .hrscard {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(232,40,26,.12);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 42px rgba(74,31,13,.1);
}
#hours .hrs-card-title {
  color: var(--dark);
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
#hours .hrsday { color: #4a3c36; font-weight: 700; font-size: 0.9rem; }
#hours .hrstime { color: var(--dark); font-weight: 700; font-size: 0.9rem; }
#hours .hrsrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(91,54,35,.11);
}
#hours .hrsrow:last-child { border-bottom: none; }
.hdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.hdot.on {
  background: #4ade80;
  box-shadow: 0 0 7px #4ade80;
}
.hdot.off {
  background: #ff6b6b;
}
#hours .hrscta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--primary), #bd170d);
  box-shadow: 0 20px 44px rgba(232,40,26,.29);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  color: #fff;
}
#hours .hrs-cta-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
#hours .hrscta h4 {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
#hours .hrscta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.86rem;
  margin-bottom: 18px;
}
#hours .btnw {
  min-width: 166px;
  background: #fff;
  color: var(--primary);
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.86rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 22px rgba(99,18,12,.24);
}
#hours .btnw:hover {
  color: #fff;
  background: transparent;
  box-shadow: none;
}
.chamber-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 14px;
}
.chamber-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  color: #943018;
  font-size: .73rem;
  font-weight: 700;
  background: var(--cream2);
  border: 1px solid rgba(232,40,26,.15);
  border-radius: 50px;
}
.chamber-pill i { color: var(--primary); font-size: .68rem; }
.chamber-note {
  margin: 0 0 10px;
  padding: 9px 10px;
  color: #765342;
  font-size: .73rem;
  font-weight: 600;
  line-height: 1.45;
  background: rgba(246,166,35,.12);
  border-left: 3px solid var(--secondary);
  border-radius: 0 8px 8px 0;
}
.chamber-note i { margin-right: 5px; color: #c8870d; }
#hours .hrscontact-link { color: var(--primary); font-weight: 700; text-decoration: none; }
#hours .hrscontact-link:hover { color: #a4160c; }
#hours .hrsday i { color: var(--secondary); }

/* ===================== CONTACT (LEGACY SOURCE OF TRUTH) ===================== */
#contact-section {
  background: #fff;
}
.ctdark {
  background: var(--dark);
  border-radius: 18px;
  padding: 38px;
  height: 100%;
}
.ctdark h4 {
  color: #fff;
  margin-bottom: 7px;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 800;
}
.ctdark .ctsub {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  margin-bottom: 26px;
}
.ctitem {
  display: flex;
  gap: 13px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.cticon {
  width: 40px;
  height: 40px;
  border-radius: 99px;
  background: rgba(232, 40, 26, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ctinfo strong {
  display: block;
  color: #aaa;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1px;
  font-family: "Poppins", sans-serif;
}
.ctinfo span, .ctinfo span a {
  color: #fff !important;
  font-size: 0.87rem;
  text-decoration: none;
}
.ctsocrow {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.ctsocrow a {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  transition: 0.3s;
}
.ctsocrow a:hover {
  background: var(--primary);
  color: #fff;
}
.flbl {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}
.fctrl {
  width: 100%;
  border: 1.8px solid #e8e8e8;
  border-radius: 10px;
  padding: 11px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 0.86rem;
  color: var(--dark);
  background: #fafafa;
  outline: none;
  transition: 0.25s;
}
.fctrl:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232, 40, 26, 0.08);
}
.sucmsg {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(45, 106, 79, 0.08);
  border: 1px solid rgba(45, 106, 79, 0.25);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 18px;
}
.sucmsg i {
  color: var(--green);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.sucmsg p {
  color: var(--dark);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .hrscard, .hrscta { height: auto; }
  .hcircle {
    width: 320px;
    height: 320px;
  }
  .fc1,
  .fc2,
  .fc3 {
    transform: scale(0.82);
    transform-origin: center;
  }
  .ggrid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gitem:first-child {
    grid-row: span 1;
  }
  .asm {
    display: none;
  }
  /* Timeline mobile: collapse to single column */
  .timeline::before {
    left: 16px;
  }
  .tli {
    grid-template-columns: 32px 1fr !important;
  }
  .tl-left {
    display: none !important;
  }
  .tl-right {
    display: block !important;
    visibility: visible !important;
    padding-left: 18px !important;
    text-align: left !important;
  }
  .tl-center {
    padding-top: 5px;
  }
  .tli:nth-child(odd) .tl-right,
  .tli:nth-child(even) .tl-right {
    visibility: visible !important;
    display: block !important;
  }
}
@media (max-width: 480px) {
  .hrscard { padding: 22px 18px; }
  .hrsrow { gap: 12px; }
  .hrscontact-link { font-size: .76rem; }
  .chamber-pill { padding: 6px 9px; font-size: .69rem; }
  .chamber-note { font-size: .69rem; }
}
@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  .btn-red,
  .bk-submit-btn,
  .bk-whatsapp-btn,
  .btnw {
    min-height: 46px;
  }

  .navbar-toggler,
  #navSearchBtn,
  .madd,
  .ctsocrow a,
  .fsoc a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-toggler {
    padding: 0;
    border-radius: 10px;
  }

  .navbar-nav .nav-link {
    padding: 14px 10px !important;
    font-size: 0.95rem;
  }

  .btn-red {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
  }

  .fctrl {
    min-height: 46px;
    font-size: 16px;
  }

  #topbar {
    padding: 7px 0;
  }

  #topbar .container > .d-flex {
    gap: 7px !important;
  }

  #topbar .top-contact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.84rem;
  }

  #topbar .top-contact span {
    margin-right: 0 !important;
    white-space: normal;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
  }

  #topbar .top-contact span a {
    overflow-wrap: anywhere;
  }

  #topbar .ttag {
    font-size: 0.74rem;
    padding: 5px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), #d3190f);
    color: #fff;
  }

  #topbar .d-flex.align-items-center.gap-3 {
    width: 100%;
    justify-content: space-between;
    gap: 8px !important;
  }

  #topbar .tsoc {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  #topbar .tsoc a {
    margin-right: 0 !important;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  #nav {
    top: 0;
    z-index: 1001;
  }

  .blogo {
    gap: 8px;
  }

  .bico {
    width: 40px;
    height: 40px;
    font-size: 1.08rem;
  }

  .bname {
    font-size: 1.08rem;
    line-height: 1.1;
  }

  .bsub {
    font-size: 0.54rem;
    letter-spacing: 1.2px;
  }

  .navbar-toggler {
    border: 2px solid #666 !important;
    border-radius: 14px;
    background: #f4f4f4;
    z-index: 1004;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(232, 40, 26, 0.15);
  }

  #navmenu,
  #navmenu.collapsing {
    margin-top: 0;
    border-radius: 22px 0 0 22px;
    background: #fafafa;
    border: 1px solid #ececec;
    border-right: 0;
    padding: 82px 14px 16px;
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 340px);
    height: 100dvh;
    z-index: 1003;
    overflow-y: auto;
    box-shadow: -16px 0 42px rgba(0, 0, 0, 0.22);
    transform: translateX(106%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.25s ease;
  }

  #navmenu.collapse {
    display: block !important;
  }

  #navmenu.collapse.show,
  #navmenu.collapsing {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  #navmenu.collapsing {
    height: 100dvh !important;
  }

  body.nav-drawer-open {
    overflow: hidden;
    touch-action: none;
  }

  body.nav-drawer-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.36);
    z-index: 1002;
    pointer-events: none;
  }

  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1002;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: default;
  }

  #navmenu .navbar-nav {
    gap: 3px;
    margin-bottom: 8px;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-link {
    border-radius: 10px;
    padding: 11px 12px !important;
    font-weight: 600;
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:hover {
    background: rgba(232, 40, 26, 0.08);
    color: var(--primary) !important;
  }

  #navmenu .d-flex.align-items-center.gap-1 {
    display: grid !important;
    grid-template-columns: 44px 1fr;
    gap: 8px !important;
    align-items: center;
  }

  #navSearchBtn {
    margin: 0;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    background: #fff;
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
    min-height: 44px;
    justify-content: center;
    border-radius: 12px;
    padding: 10px 14px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 22px rgba(232, 40, 26, 0.34);
  }

  section {
    padding: 55px 0;
  }

  #hero .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  #hero .row.align-items-center.g-5 {
    --bs-gutter-x: 0;
    margin-left: 0;
    margin-right: 0;
  }

  #hero .col-lg-6 {
    padding-left: 0;
    padding-right: 0;
  }

  .hs1 {
    width: 360px;
    height: 360px;
    right: -140px;
    top: -80px;
  }

  .hs2 {
    width: 220px;
    height: 220px;
    left: -20px;
    bottom: -40px;
  }

  #topbar .top-contact span:last-child {
    display: none;
  }
  .hcircle {
    width: 260px;
    height: 260px;
  }
  /* Hide only hero floating cards, NOT form cards */
  .fcard.fc1,
  .fcard.fc2,
  .fcard.fc3 {
    display: none !important;
  }
  .hstats {
    display: none !important;
  }
  .ggrid {
    grid-template-columns: 1fr 1fr;
  }

  .mqtrack {
    gap: 26px;
  }

  .mqitem {
    font-size: 0.78rem;
  }

  .cdwrap {
    gap: 8px;
  }
  .cditem {
    min-width: 56px;
    padding: 9px;
  }
  .nl-form-wrap {
    flex-direction: column;
    padding: 0 8px;
  }
  .nlinput,
  .nlbtn {
    width: 100%;
    border-radius: 12px;
  }
  .fcard {
    padding: 22px 18px;
  }
}
@media (max-width: 480px) {
  .hcircle {
    width: 220px;
    height: 220px;
  }
  .htitle {
    font-size: 2.4rem;
  }
  .stitle {
    font-size: 1.8rem;
  }
}

/* ====================================================
   YOUTUBE SHORTS REELS CAROUSEL
==================================================== */
#chefs.yt-shorts-section {
  overflow: hidden;
  padding: 100px 0;
  background: #fff8f5;
}
.shorts-viewport {
  overflow: hidden;
  width: 100%;
  padding: 8px 0 18px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.shorts-track,
.shorts-repeat {
  display: flex;
  align-items: stretch;
  gap: 18px;
}
.shorts-track {
  width: max-content;
  animation: reelMarquee 58s linear infinite;
}
.shorts-repeat { display: flex; }
.shorts-viewport:hover .shorts-track { animation-play-state: paused; }
.reel-card {
  position: relative;
  display: block;
  width: clamp(175px, 17vw, 230px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 19px;
  background: #180b09;
  box-shadow: 0 12px 26px rgba(43, 12, 8, 0.18);
}
.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.reel-card:hover img { transform: scale(1.08); }
.reel-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06) 35%, rgba(0,0,0,0.78) 100%);
}
.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #e62117;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 20px rgba(0,0,0,0.34);
  transition: transform 0.25s ease;
}
.reel-card:hover .reel-play { transform: translate(-50%, -50%) scale(1.12); }
.reel-play i { margin-left: 3px; font-size: 1rem; }
.reel-caption {
  position: absolute;
  right: 14px;
  bottom: 13px;
  left: 14px;
  color: #fff;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.15px;
}
.reel-caption .fab { color: #ff3b30; margin-left: 4px; }
@keyframes reelMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 575px) {
  #chefs.yt-shorts-section { padding: 74px 0; }
  .reel-card { width: 165px; border-radius: 16px; }
  .shorts-track, .shorts-repeat { gap: 12px; }
  .shorts-track { animation-duration: 45s; }
}
@media (prefers-reduced-motion: reduce) {
  .shorts-track { animation: none; }
}
/* ====================================================
   CONSULTATION HOURS & CLICK-TO-CALL
==================================================== */
#hours {
  padding: 104px 0;
  background:
    radial-gradient(circle at 15% 12%, rgba(246, 166, 35, 0.22), transparent 27%),
    radial-gradient(circle at 86% 85%, rgba(19, 191, 126, 0.22), transparent 30%),
    linear-gradient(135deg, #053d2c, #096847 52%, #063d30);
}
#hours .sline { box-shadow: 0 3px 16px rgba(246,166,35,.55); }
.hrscard,
.hrscta {
  height: 100%;
  border-radius: 22px;
}
.hrscard {
  padding: 29px;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.19);
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
  backdrop-filter: blur(10px);
}
.hrs-card-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 13px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .96rem;
  font-weight: 700;
  letter-spacing: .15px;
}
.hrs-card-title i { color: var(--secondary); }
.hrsrow { padding: 14px 0; }
.hrsday { color: rgba(255,255,255,.88); }
.hrstime { color: #fff; font-weight: 700; }
.hrscta {
  position: relative;
  overflow: hidden;
  padding: 33px 25px;
  background: linear-gradient(145deg, #f22d21, #d9120b);
  border: 1px solid rgba(255,255,255,.23);
  box-shadow: 0 20px 42px rgba(207, 25, 15, .42);
}
.hrscta::before {
  position: absolute;
  top: -75px;
  right: -62px;
  width: 175px;
  height: 175px;
  content: '';
  border-radius: 50%;
  background: rgba(255,255,255,.09);
}
.hrscta > * { position: relative; z-index: 1; }
.hrs-cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  color: rgba(255,255,255,.9);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.hrs-cta-kicker i { color: #8cffbd; font-size: .5rem; }
.hrscta h4 { font-size: 1.5rem; }
.btnw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  padding: 13px 22px;
  font-weight: 800;
}
.hrscontact-link {
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  text-align: right;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}
.hrscontact-link:hover { color: var(--secondary); transform: translateX(2px); }
.hrscontact-link .fas { margin-left: 5px; font-size: .66rem; }
@media (max-width: 991px) {
  #hours { padding: 78px 0; }
  .hrscard, .hrscta { height: auto; }
}
@media (max-width: 480px) {
  .hrscard { padding: 22px 18px; }
  .hrsrow { gap: 12px; }
  .hrscontact-link { font-size: .76rem; }
}
/* ====================================================
   LIGHT CONSULTATION HOURS + CHAMBER LOCATIONS
==================================================== */
#hours {
  background:
    radial-gradient(circle at 10% 0%, rgba(246,166,35,.18), transparent 24%),
    radial-gradient(circle at 94% 86%, rgba(232,40,26,.1), transparent 25%),
    var(--cream);
}
#hours .hrsbg { opacity: .28; background-size: 26px 26px; }
#hours .hrs-section-label { color: var(--primary); }
#hours .hrs-section-title { color: var(--dark); }
#hours .hrs-section-title span { color: var(--primary); }
#hours .hrscard {
  background: rgba(255,255,255,.88);
  border-color: rgba(232,40,26,.12);
  box-shadow: 0 18px 42px rgba(74,31,13,.1);
}
#hours .hrs-card-title { color: var(--dark); }
#hours .hrsday { color: #4a3c36; font-weight: 700; }
#hours .hrstime { color: var(--dark); }
#hours .hrsrow { border-bottom-color: rgba(91,54,35,.11); }
#hours .hrscta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--primary), #bd170d);
  box-shadow: 0 20px 44px rgba(232,40,26,.29);
}
#hours .btnw {
  min-width: 166px;
  border: 2px solid #fff;
  box-shadow: 0 10px 22px rgba(99,18,12,.24);
}
#hours .btnw:hover {
  color: #fff;
  background: transparent;
  box-shadow: none;
}
.chamber-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 14px;
}
.chamber-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  color: #943018;
  font-size: .73rem;
  font-weight: 700;
  background: var(--cream2);
  border: 1px solid rgba(232,40,26,.15);
  border-radius: 50px;
}
.chamber-pill i { color: var(--primary); font-size: .68rem; }
.chamber-note {
  margin: 0 0 10px;
  padding: 9px 10px;
  color: #765342;
  font-size: .73rem;
  font-weight: 600;
  line-height: 1.45;
  background: rgba(246,166,35,.12);
  border-left: 3px solid var(--secondary);
  border-radius: 0 8px 8px 0;
}
.chamber-note i { margin-right: 5px; color: #c8870d; }
#hours .hrscontact-link { color: var(--primary); }
#hours .hrscontact-link:hover { color: #a4160c; }
#hours .hrsday i { color: var(--secondary); }
@media (max-width: 480px) {
  .chamber-pill { padding: 6px 9px; font-size: .69rem; }
  .chamber-note { font-size: .69rem; }
}

/* Animated Book Now Button */
.nav-cta {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: #fff !important;
  border-radius: 50px;
  padding: 8px 20px !important;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(232, 40, 26, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
  animation: pulse-glow 2s infinite;
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 40, 26, 0.5);
  color: #fff !important;
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
  z-index: -1;
}
.nav-cta:hover::before {
  left: 100%;
}
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(232, 40, 26, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(232, 40, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 40, 26, 0); }
}

/* ====================================================
   PROFESSIONAL CONSULTING THEME OVERRIDES
==================================================== */
.astro-site {
  --primary: #9b2c18;
  --secondary: #d5a021;
  --dark: #0f172a;
  --green: #176b5b;
  --cream: #f8f3eb;
  --cream2: #fef7ea;
  --light: #f6f8fb;
  --shadow: 0 12px 34px rgba(15, 23, 42, 0.09);
  --shadow-lg: 0 24px 58px rgba(15, 23, 42, 0.15);
  background: linear-gradient(180deg, #fbf9f5 0%, #f5f7fb 48%, #fbf9f5 100%);
}

.astro-site #topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.astro-site #nav {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(9px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.astro-site #nav.scrolled {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.astro-site .bname {
  font-size: 1.34rem;
  letter-spacing: 0.15px;
}

.astro-site .bname span {
  color: var(--secondary);
}

.astro-site .bsub {
  color: #6b7280;
  letter-spacing: 1.7px;
}

.astro-site .navbar-nav .nav-link {
  padding-top: 22px !important;
  padding-bottom: 22px !important;
  font-weight: 600;
  color: #1f2937 !important;
}

.astro-site .navbar-nav .nav-link.active,
.astro-site .navbar-nav .nav-link:hover {
  color: #9b2c18 !important;
}

.astro-site .navbar-toggler {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.22) !important;
  background: #ffffff;
}

.astro-site .navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(155, 44, 24, 0.2);
}

@media (max-width: 1023px) {
  .astro-site .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .astro-site .navbar-toggler {
    display: none !important;
  }
}

.astro-site .nav-cta {
  border-radius: 999px;
  padding: 10px 19px !important;
  background: linear-gradient(135deg, #8f2f1e, #b53a21);
  box-shadow: 0 10px 26px rgba(143, 47, 30, 0.34);
  animation: none;
}

.astro-site .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(143, 47, 30, 0.42);
}

.astro-site section {
  padding: 96px 0;
}

.astro-site .slbl {
  letter-spacing: 0.4px;
}

.astro-site .stitle {
  line-height: 1.17;
}

.astro-site .sdesc {
  color: #5d6475;
  font-size: 0.98rem;
}

.astro-site .btn-red {
  border-radius: 999px;
  padding: 14px 30px;
  letter-spacing: 0.2px;
}

.astro-site #hero {
  background:
    radial-gradient(circle at 12% 20%, rgba(155, 44, 24, 0.13), transparent 40%),
    radial-gradient(circle at 82% 12%, rgba(213, 160, 33, 0.17), transparent 44%),
    linear-gradient(180deg, #fbf6ee 0%, #f8f3eb 100%);
  min-height: 95vh;
}

.astro-site .hbadge {
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.astro-site .hdesc {
  color: #4b5563;
}

.astro-site .hcircle {
  background: radial-gradient(circle at 38% 36%, #fffdf9, #fde8cb);
  box-shadow: 0 30px 82px rgba(143, 47, 30, 0.17);
  width: clamp(460px, 41vw, 540px);
  height: clamp(460px, 41vw, 540px);
}

.astro-site .hvideo {
  min-width: 190px;
}

@media (min-width: 768px) {
  .astro-site #hero .fcard {
    display: none !important;
  }
}

.astro-site .fcard {
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.astro-site #menu,
.astro-site #testimonials,
.astro-site #history,
.astro-site #contact-section {
  background: transparent;
}

.astro-site #testimonials .slbl,
.astro-site #testimonials .stitle,
.astro-site #testimonials .sdesc {
  color: #1f2937;
}

.astro-site #testimonials .stitle span {
  color: #9b2c18;
}

.astro-site .filtbtn {
  border-radius: 999px;
  border: 1px solid #e6e9ef;
  background: #fff;
  color: #475569;
}

.astro-site .filtbtn.active,
.astro-site .filtbtn:hover {
  background: linear-gradient(135deg, #8f2f1e, #b53a21);
  color: #fff;
  border-color: transparent;
}

.astro-site .mcard,
.astro-site .tw-card,
.astro-site .tcard,
.astro-site #contact-section .fcard,
.astro-site .ctdark {
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.astro-site .mcard:hover,
.astro-site .tcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.astro-site .ctdark {
  background: linear-gradient(155deg, #111827, #1f2937 58%, #334155);
}

.astro-site #hours {
  background:
    radial-gradient(circle at 16% 18%, rgba(155, 44, 24, 0.08), transparent 36%),
    radial-gradient(circle at 85% 80%, rgba(213, 160, 33, 0.1), transparent 34%),
    linear-gradient(180deg, #f7f9fc 0%, #f1f5f9 100%);
}

.astro-site #hours .hrsbg {
  display: none;
}

.astro-site footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(155, 44, 24, 0.22), transparent 34%),
    radial-gradient(circle at 87% 100%, rgba(213, 160, 33, 0.18), transparent 30%),
    linear-gradient(180deg, #0b1222 0%, #0f172a 100%);
}

.astro-site .fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.astro-site footer .fnm {
  font-size: clamp(1.7rem, 3.5vw, 2.05rem);
}

.astro-site footer .fdesc {
  color: #c2c9d6;
  max-width: 360px;
}

.astro-site footer .ftit {
  color: #f3f4f6;
  border-bottom-color: rgba(213, 160, 33, 0.95);
}

.astro-site footer .flinks a {
  color: #c0c8d8;
}

.astro-site footer .flinks a:hover {
  color: #f4cc76;
}

.astro-site footer .fciinfo {
  color: #d4dae6;
}

.astro-site footer .fciinfo strong {
  color: #f3f4f6;
  letter-spacing: 0.2px;
}

.astro-site footer .fciico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(155, 44, 24, 0.28);
}

.astro-site footer .fciinfo a {
  color: inherit;
  text-decoration: none;
}

.astro-site footer .fciinfo a:hover {
  color: #f4cc76;
}

.astro-site .fbot-inner {
  row-gap: 8px;
}

.astro-site .fbot p {
  color: #a8b1c2;
}

.astro-site .fbot-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.astro-site .fbot-links a {
  margin-left: 0;
  color: #c2cad9;
  font-size: 0.8rem;
  text-decoration: none;
}

.astro-site .fbot-links a:hover {
  color: #f4cc76;
}

@media (max-width: 991px) {
  .astro-site section {
    padding: 72px 0;
  }

  .astro-site .stitle {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .astro-site .hdesc {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .astro-site #hero {
    min-height: auto;
    padding-top: 36px;
  }

  .astro-site #nav {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .astro-site .blogo {
    gap: 9px;
  }

  .astro-site .bname {
    font-size: 1.12rem;
  }

  .astro-site .bsub {
    letter-spacing: 1.2px;
    font-size: 0.56rem;
  }

  .astro-site .hero-cta {
    justify-content: center;
    width: 100%;
  }

  .astro-site .btn-red {
    width: 100%;
    justify-content: center;
  }

  .astro-site .hvideo {
    justify-content: center;
    width: 100%;
    text-align: center;
    margin-top: 2px;
  }

  .astro-site .hcircle {
    width: 300px;
    height: 300px;
  }

  .astro-site #hero .col-lg-6:last-child {
    margin-top: 6px;
  }

  .astro-site .mcard,
  .astro-site .tw-card,
  .astro-site #contact-section .fcard {
    border-radius: 18px;
  }

  .astro-site .ctdark {
    border-radius: 18px;
  }

  .astro-site footer {
    padding-top: 56px;
  }

  .astro-site footer .row.g-5 {
    --bs-gutter-y: 2rem;
  }

  .astro-site footer .fnm {
    font-size: 1.62rem;
  }

  .astro-site footer .fdesc {
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .astro-site footer .ftit {
    margin-bottom: 14px;
  }

  .astro-site footer .fci {
    gap: 10px;
    margin-bottom: 12px;
  }

  .astro-site footer .fciinfo {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .astro-site .fbot {
    margin-top: 28px;
    padding: 14px 0 18px;
  }

  .astro-site .fbot-inner {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .astro-site .fbot p,
  .astro-site .fbot-links a {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .astro-site .hcircle {
    width: 278px;
    height: 278px;
  }
}

/* ====================================================
   MOBILE RESPONSIVE CONTACT FORM & FOOTER FIXES
   ==================================================== */
#contact-section,
.astro-site #contact-section {
  position: relative !important;
  z-index: 10 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
  padding-bottom: 4rem !important;
  display: block !important;
  clear: both !important;
}

#contact-section .fcard,
.astro-site #contact-section .fcard {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  height: auto !important;
  min-height: auto !important;
  margin: 0 !important;
  overflow: hidden !important;
}

#contact-section .ctdark,
.astro-site #contact-section .ctdark {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  height: auto !important;
  min-height: auto !important;
  margin: 0 !important;
  overflow: hidden !important;
}

#contact-section .fctrl,
.astro-site #contact-section .fctrl {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  font-size: 16px !important;
  min-height: 48px !important;
  display: block !important;
}

footer,
.astro-site footer {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
  clear: both !important;
  display: block !important;
}

@media (max-width: 767px) {
  #contact-section,
  .astro-site #contact-section {
    padding-top: 3rem !important;
    padding-bottom: calc(3.5rem + env(safe-area-inset-bottom)) !important;
  }

  #contact-section .fcard,
  .astro-site #contact-section .fcard {
    padding: 1.5rem !important;
    border-radius: 20px !important;
  }

  #contact-section .ctdark,
  .astro-site #contact-section .ctdark {
    padding: 1.5rem !important;
    border-radius: 20px !important;
  }

  footer,
  .astro-site footer {
    padding-top: 3.5rem !important;
    padding-bottom: calc(96px + env(safe-area-inset-bottom)) !important;
  }

  footer .row.g-5,
  .astro-site footer .row.g-5 {
    row-gap: 2.25rem !important;
  }

  footer .fbot,
  .astro-site footer .fbot {
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
    padding-bottom: 1rem !important;
  }
}

@media (max-width: 414px) {
  #contact-section .fcard,
  .astro-site #contact-section .fcard,
  #contact-section .ctdark,
  .astro-site #contact-section .ctdark {
    padding: 1.25rem !important;
  }
}