/* ═══════════════════════════════════════════
   SHARED
═══════════════════════════════════════════ */
section {
  padding: 92px 0;
}

.sl_ {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sf);
  margin-bottom: 10px;
  display: block;
}

.sh_ {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  color: var(--ch);
  line-height: 1.18;
  margin-bottom: 16px;
}

.sh_ em {
  font-style: italic;
  color: var(--sf);
}

.ss_ {
  font-size: .92rem;
  color: var(--tw);
  line-height: 1.85;
  max-width: 560px;
}

.orn {
  width: 48px;
  height: 3px;
  background: var(--sf);
  border-radius: 2px;
  margin-bottom: 24px;
}

.orn.cx {
  margin-left: auto;
  margin-right: auto;
}

.btn-p {
  background: var(--sf);
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  font-size: .86rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(232, 114, 42, .32);
}

.btn-p:hover {
  background: var(--br);
  color: #fff;
  transform: translateY(-2px);
}

.btn-o {
  background: transparent;
  color: var(--br);
  padding: 12px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--br);
  font-size: .86rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-o:hover {
  background: var(--br);
  color: #fff;
  transform: translateY(-2px);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--tr);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .3);
}

.btn-wa:hover {
  background: #20b957;
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 72px;
}

.phi {
  position: absolute;
  inset: 0;
}

.phi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: hz 10s ease forwards;
}

@keyframes hz {
  to {
    transform: scale(1);
  }
}

.pho {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(44, 24, 8, .84) 0%, rgba(92, 52, 24, .55) 50%, rgba(232, 114, 42, .1) 100%);
}

.hring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .06);
  pointer-events: none;
}

.hr1 {
  width: 540px;
  height: 540px;
  top: -200px;
  right: -120px;
  animation: spR 28s linear infinite;
}

.hr2 {
  width: 300px;
  height: 300px;
  top: -40px;
  right: 100px;
  animation: spR 18s reverse linear infinite;
}

@keyframes spR {
  to {
    transform: rotate(360deg);
  }
}

.hshine {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sf), var(--gd), var(--sf));
  background-size: 200%;
  animation: shM 4s linear infinite;
}

@keyframes shM {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

.phc {
  position: relative;
  z-index: 2;

  width: 100%;
}

.htag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 20px;
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: fu .9s .1s both;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 18px;
  animation: fu .9s .25s both;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gdl);
}

.page-hero .sub {
  font-size: .98rem;
  color: rgba(255, 255, 255, .74);
  line-height: 1.82;
  max-width: 560px;
  animation: fu .9s .4s both;
}

.hero-quick {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
  animation: fu .9s .55s both;
}

.hq-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  transition: var(--tr);
  cursor: pointer;
  border: none;
}

.hq-call {
  background: var(--sf);
  color: #fff;
  box-shadow: 0 6px 20px rgba(232, 114, 42, .4);
}

.hq-call:hover {
  background: var(--br);
  color: #fff;
}

.hq-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
}

.hq-wa:hover {
  background: #20b957;
  color: #fff;
}

.hq-mail {
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hq-mail:hover {
  background: rgba(255, 255, 255, .25);
}

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* BREADCRUMB */
.bc {
  background: var(--wh);
  border-bottom: 1px solid rgba(232, 114, 42, .1);
  padding: 14px 0;
}

.bc .breadcrumb {
  margin: 0;
  font-size: .76rem;
  align-items: center;
}

.bc .breadcrumb-item a {
  color: var(--sf);
  font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--sf);
  content: "›";
  font-size: 1rem;
}

/* ═══════════════════════════════════════════
   9.2 CONTACT METHODS
═══════════════════════════════════════════ */
.contact-methods {
  background: var(--wh);
  padding: 0;
}

.cm-inner {
  display: flex;
  flex-wrap: wrap;
}

.cm-card {
  flex: 1;
  min-width: 260px;
  padding: 36px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-right: 1px solid var(--be);
  transition: background .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.cm-card:last-child {
  border-right: none;
}

.cm-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform .35s;
  transform-origin: left;
}

.cm-card:hover {
  background: var(--sfm);
}

.cm-card:hover::after {
  transform: scaleX(1);
}

.cm-phone::after {
  background: var(--sf);
}

.cm-wa::after {
  background: #25D366;
}

.cm-email::after {
  background: var(--sky, #6B9EBF);
}

.cm-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--tr);
}

.cm-card:hover .cm-ico {
  transform: scale(1.1) rotate(5deg);
}

.cm-phone .cm-ico {
  background: var(--sfp);
  color: var(--sf);
}

.cm-wa .cm-ico {
  background: #E8F8EE;
  color: #25D366;
}

.cm-email .cm-ico {
  background: var(--skyp, #EDF4F9);
  color: #6B9EBF;
}

.cm-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ch);
  margin-bottom: 3px;
}

.cm-info .main {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sf);
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}

.cm-wa .cm-info .main {
  color: #25D366;
}

.cm-email .cm-info .main {
  font-size: .95rem;
  color: #6B9EBF;
}

.cm-info p {
  font-size: .72rem;
  color: var(--tw);
  margin: 0;
  line-height: 1.5;
}

.cm-arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--be);
  font-size: .9rem;
  transition: var(--tr);
}

.cm-card:hover .cm-arrow {
  color: var(--sf);
  transform: translateY(-50%) translateX(4px);
}

/* ═══════════════════════════════════════════
   9.7 EMERGENCY BLOCK (placed high - before forms)
═══════════════════════════════════════════ */
.emergency-block {
  background: linear-gradient(135deg, #8B1A1A, #B22222);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

.emergency-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255, 60, 60, .1) 0%, transparent 60%);
}

.emg-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.emg-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  animation: emgPulse 2s ease-in-out infinite;
}

@keyframes emgPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .2);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

.emg-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.emg-text p {
  font-size: .72rem;
  color: rgba(255, 255, 255, .72);
  margin: 0;
}

.emg-number {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.emg-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  text-align: right;
}

.emg-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.emg-call-btn {
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: .25s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.emg-call-btn:hover {
  background: rgba(255, 255, 255, .35);
}

/* ═══════════════════════════════════════════
   FORMS SECTION
═══════════════════════════════════════════ */
.forms-section {
  background: var(--cr);
  position: relative;
  overflow: hidden;
}

.forms-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 114, 42, .05) 0%, transparent 70%);
  pointer-events: none;
}

/* form card */
.form-card {
  background: var(--wh);
  border-radius: var(--rl);
  padding: 44px 40px;
  box-shadow: var(--sh);
  position: relative;
  height: 100%;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--rl) var(--rl) 0 0;
}

.visit-card::before {
  background: linear-gradient(90deg, var(--sf), var(--gd));
}

.enquiry-card::before {
  background: linear-gradient(90deg, var(--sg), #5C8A5A);
}

.form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ch);
  margin-bottom: 5px;
}

.form-card .fc-sub {
  font-size: .8rem;
  color: var(--tw);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* form elements */
.fg {
  margin-bottom: 18px;
}

.fg label {
  display: block;
  font-size: .73rem;
  font-weight: 600;
  color: var(--ch);
  margin-bottom: 5px;
  letter-spacing: .01em;
}

.fg label .req {
  color: var(--sf);
}

.fi {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--be);
  border-radius: 12px;
  font-size: .83rem;
  font-family: 'Poppins', sans-serif;
  color: var(--ch);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  background: var(--iv);
}

.fi:focus {
  border-color: var(--sf);
  box-shadow: 0 0 0 3px rgba(232, 114, 42, .11);
  background: var(--wh);
}

.fi::placeholder {
  color: rgba(74, 48, 32, .32);
}

textarea.fi {
  resize: vertical;
  min-height: 88px;
}

.fi-tel {
  display: flex;
  gap: 0;
}

.tel-pre {
  background: var(--sfp);
  border: 1.5px solid var(--be);
  border-right: none;
  border-radius: 12px 0 0 12px;
  padding: 11px 14px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--sf);
  white-space: nowrap;
}

.fi-tel .fi {
  border-radius: 0 12px 12px 0;
}

/* radio groups */
.radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ropt {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .77rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--be);
  color: var(--tw);
  background: var(--iv);
  transition: var(--tr);
  display: flex;
  align-items: center;
  gap: 7px;
  user-select: none;
}

.ropt input[type="radio"] {
  display: none;
}

.ropt.sel {
  background: var(--sf);
  color: #fff;
  border-color: var(--sf);
  box-shadow: 0 4px 14px rgba(232, 114, 42, .28);
}

/* date picker */
input[type="date"].fi {
  cursor: pointer;
}

input[type="date"].fi::-webkit-calendar-picker-indicator {
  opacity: .5;
  cursor: pointer;
}

/* submit */
.submit-btn {
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  border: none;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
}

.visit-submit {
  background: linear-gradient(135deg, var(--sf), var(--sfl));
  color: #fff;
  box-shadow: 0 8px 28px rgba(232, 114, 42, .38);
}

.visit-submit:hover {
  background: linear-gradient(135deg, var(--br), var(--sf));
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(232, 114, 42, .45);
}

.enquiry-submit {
  background: linear-gradient(135deg, var(--sg), #5C8A5A);
  color: #fff;
  box-shadow: 0 8px 28px rgba(122, 155, 118, .35);
}

.enquiry-submit:hover {
  background: linear-gradient(135deg, #5C8A5A, var(--sg));
  transform: translateY(-2px);
}

/* confirmation overlay */
.confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.confirm-overlay.open {
  display: flex;
}

.confirm-card {
  background: var(--wh);
  border-radius: var(--rl);
  padding: 52px 44px;
  max-width: 500px;
  width: 92%;
  text-align: center;
  animation: fu .4s ease;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .3);
  position: relative;
}

.confirm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--rl) var(--rl) 0 0;
  background: linear-gradient(90deg, var(--sf), var(--gd));
}

.confirm-ico {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--sgp);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--sg);
}

.confirm-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--ch);
  margin-bottom: 10px;
}

.confirm-card p {
  font-size: .84rem;
  color: var(--tw);
  line-height: 1.78;
  margin-bottom: 10px;
}

.confirm-detail {
  background: var(--sfp);
  border-radius: 14px;
  padding: 16px 20px;
  margin: 18px 0;
  text-align: left;
}

.confirm-detail .cd-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.confirm-detail .cd-row:last-child {
  margin-bottom: 0;
}

.confirm-detail i {
  color: var(--sf);
  font-size: .85rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}

.confirm-detail span {
  font-size: .78rem;
  color: var(--tw);
  line-height: 1.5;
}

.whatsapp-note {
  background: #E8F8EE;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: .74rem;
  color: #1a7a3f;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

/* ═══════════════════════════════════════════
   9.5 ADDRESS & MAP
═══════════════════════════════════════════ */
.address-section {
  background: var(--iv);
}

.map-embed {
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--sw);
  height: 420px;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cr), var(--be));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.map-placeholder i {
  font-size: 3.5rem;
  color: var(--sf);
  opacity: .6;
}

.map-placeholder h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--ch);
}

.map-placeholder p {
  font-size: .8rem;
  color: var(--tw);
  text-align: center;
  max-width: 280px;
  line-height: 1.6;
}

.map-overlay-card {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(250, 246, 240, .96);
  backdrop-filter: blur(12px);
  border-radius: var(--r);
  padding: 18px 22px;
  max-width: 280px;
  box-shadow: var(--sw);
}

.map-overlay-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ch);
  margin-bottom: 8px;
}

.map-overlay-card p {
  font-size: .74rem;
  color: var(--tw);
  line-height: 1.6;
  margin-bottom: 12px;
}

.dir-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--sf);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  transition: .25s;
}

.dir-btn:hover {
  background: var(--br);
  color: #fff;
}

/* address card */
.addr-card {
  background: var(--wh);
  border-radius: var(--rl);
  padding: 36px 32px;
  box-shadow: var(--sc);
  height: 100%;
}

.addr-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--be);
}

.addr-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.addr-ico {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  flex-shrink: 0;
  background: var(--sfp);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.addr-ico i {
  color: var(--sf);
  font-size: .95rem;
}

.addr-row h5 {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ch);
  margin-bottom: 3px;
}

.addr-row p {
  font-size: .78rem;
  color: var(--tw);
  line-height: 1.6;
  margin: 0;
}

/* landmarks */
.landmark-card {
  background: var(--sfp);
  border-radius: var(--r);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(232, 114, 42, .15);
  transition: var(--tr);
}

.landmark-card:hover {
  background: var(--sfm);
  transform: translateX(4px);
}

.landmark-card i {
  color: var(--sf);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.landmark-card h6 {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ch);
  margin-bottom: 2px;
}

.landmark-card p {
  font-size: .73rem;
  color: var(--tw);
  margin: 0;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   9.6 VISITING HOURS
═══════════════════════════════════════════ */
.hours-section {
  background: var(--cr);
}

.hours-table-wrap {
  background: var(--wh);
  border-radius: var(--rl);
  box-shadow: var(--sc);
  overflow: hidden;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th {
  background: var(--sf);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}

.hours-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--be);
  font-size: .82rem;
  color: var(--tw);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table tr:hover td {
  background: var(--sfm);
}

.hours-table .day {
  font-weight: 600;
  color: var(--ch);
}

.hours-table .time {
  color: var(--sf);
  font-weight: 600;
}

.hours-table .note {
  font-size: .7rem;
  color: var(--sg);
  font-weight: 500;
}

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--sgp);
  color: var(--sg);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: .62rem;
  font-weight: 600;
}

.open-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sg);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

/* visiting hour cards on side */
.vh-highlight {
  background: var(--sf);
  border-radius: var(--rl);
  padding: 36px 32px;
  color: #fff;
  box-shadow: 0 12px 40px rgba(232, 114, 42, .35);
  position: relative;
  overflow: hidden;
}

.vh-highlight::before {
  content: '\f017';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -16px;
  bottom: -24px;
  font-size: 10rem;
  color: rgba(255, 255, 255, .06);
  pointer-events: none;
}

.vh-highlight h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 14px;
}

.vh-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
}

.vh-row:last-child {
  margin-bottom: 0;
}

.vh-row i {
  font-size: .85rem;
  opacity: .8;
}

.vh-row span {
  font-size: .82rem;
  opacity: .9;
}

/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cta-band {
  background: var(--ch);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232, 114, 42, .15) 0%, transparent 70%);
}

.cta-band::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sf), var(--gd), var(--sf));
  background-size: 200%;
  animation: shM 4s linear infinite;
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-weight: 600;
}

.cta-band h2 em {
  font-style: italic;
  color: var(--gdl);
}

.cta-band p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
  max-width: 500px;
  margin: 12px auto 0;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* FOOTER */
.footer {
  background: var(--ch);
  padding: 64px 0 0;
}

.fbr h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--sf);
  margin-bottom: 8px;
}

.fbr p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  max-width: 280px;
}

.fh {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sf);
  margin-bottom: 18px;
}

.fl {
  display: block;
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 10px;
  transition: color .2s;
}

.fl:hover {
  color: var(--sfl);
}

.fci {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.fci i {
  color: var(--sf);
  font-size: .9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.fci span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}

.fbot {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.fbot p {
  font-size: .72rem;
  color: rgba(255, 255, 255, .3);
  margin: 0;
}

.sic {
  display: flex;
  gap: 10px;
}

.si {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}

.si:hover {
  background: var(--sf);
}

.si i {
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
  transition: color .3s;
}

.si:hover i {
  color: #fff;
}

.fb {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.fbt {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all .3s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

.fwa {
  background: #25D366;
  color: #fff;
}

.fwa:hover {
  background: #20b957;
  transform: scale(1.1);
}

.fca {
  background: var(--sf);
  color: #fff;
}

.fca:hover {
  background: var(--br);
  transform: scale(1.1);
}

/* ── RESPONSIVE ── */
@media(max-width:991px) {
  .cm-inner {
    flex-direction: column;
  }

  .cm-card {
    border-right: none;
    border-bottom: 1px solid var(--be);
    padding: 15px;
  }

  .cm-card:last-child {
    border-bottom: none;
  }
}

@media(max-width:767px) {
  section {
    padding: 64px 0;
  }

  .hbtn {
    display: flex;
  }

  .nav-links-desktop {
    display: none !important;
  }

  .fbot {
    flex-direction: column;
    text-align: center;
  }

  .form-card {
    padding: 28px 22px;
  }

  .hero-quick {
    flex-direction: column;
    align-items: flex-start;
  }

  .emg-number {
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
  }

.cm-info .main {
    font-size: 1rem;}

.ss_ {
    font-size: .8rem;}


.hours-table td {
    padding: 14px 8px;
    border-bottom: 1px solid var(--be);
    font-size: .7rem;
    color: var(--tw);
}
.ss_ {
    font-size: .8rem;
    color: var(--tw);
    line-height: 1.85;
    max-width: 560px;
}
.rc-text {
    font-size: .8rem;
    color: var(--tw);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 22px;
}



}

label.error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.fi.error {
  border-color: #dc3545 !important;
}