/* =========================
   UPDATED THEME: Warm Beige + Gold
   Fonts & palette at top
   ========================= */

/* Fonts for warm-luxury look */
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;600;700;900&display=swap");

:root {
  --cream: #f6e7da;
  --pale-beige: #be9d5c;
  --warm-beige: #ecd6c1;
  --gold: #c89a44;
  --gold-dark: #b77a1e;
  --brown: #2b1f00;
  --charcoal: #0b0b0b;
  --muted: #6b5a4a;
  --muted2: #ffffff;
}

/* Reset + base */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tbody,
tfoot,
thead,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* FIXED TYPO: global selector */
*,
*:focus {
  outline: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === GLOBAL IMAGE / MEDIA SAFETY RULES (prevents overflow) === */
html,
body {
  overflow-x: hidden; /* hard guard horizontal scroll */
  scroll-behavior: smooth !important;
}

img,
picture,
svg,
video,
iframe,
object,
embed {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

/* For elements that should crop (hero, gallery tiles, modal banner) */
.img-cover,
.carousel-inner img,
.gallery img,
.floor-plan img,
.modal-content .mb-l img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Body & typography */
body {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 26px !important;
  color: var(--charcoal) !important;
  height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/* Sticky header */
.sticky {
  position: fixed !important;
  z-index: 999 !important;
  width: 100%;
  left: 0;
  top: 0;
  padding: 0px 0;
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.15);
  background-color: var(--brown);
  border-radius: 0;
}

.top-nav .container {
  padding-top: 0;
  padding-bottom: 0;
}

.top-nav i {
  color: #fff;
  margin: 0 5px 0 0;
}

.top-nav span {
  float: right;
  text-align: right !important;
}

@media screen and (max-width: 992px) {
  .sticky {
    padding: 5px 0;
  }
}

/* header */
header {
  position: absolute;
  z-index: 1000;
  left: 10px;
  top: 10px;
  width: calc(100% - 20px);
  background-color: rgba(0, 0, 0, 0.85);
  height: auto;
  padding: 5px;
  border-radius: 0 15px 0 15px;
}

header .container {
  padding-top: 0;
  padding-bottom: 0;
}

header .logo {
  float: left;
  width: 25%;
  padding: 0;
}

header .logo img {
  width: auto;
  height: 70px;
  max-width: 100%;
  object-fit: contain;
}

header .header-right {
  float: left;
  width: 75%;
  text-align: right;
  padding-top: 15px;
}

header .header-right img {
  width: auto;
  height: auto;
}

header .call {
  float: right;
  text-align: right;
  text-transform: uppercase;
}

header .call a {
  color: #ffffff !important;
  background: linear-gradient(120deg, var(--gold-dark), var(--gold)) !important;
  display: inline-block;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 16px;
  line-height: 40px;
  font-weight: 700;
  padding: 0 8px;
  margin: 0 0 0 10px;
  border-radius: 0 10px 0 10px;
  border: solid 0px rgba(0, 0, 0, 0);
}

header .call a i {
  font-size: 16px;
  line-height: 35px;
  margin-right: 0px;
}

.t-menu {
  float: right;
  margin: 0;
  width: auto;
}

.navigation {
  width: 100%;
  display: block;
  color: var(--brown);
}

.expert {
  position: fixed;
  z-index: 999;
  right: 0;
  top: 50%;
  margin: -104px 0 0 0;
  display: none;
  width: 49px;
  height: 208px;
}

@media screen and (max-width: 992px) {
  header {
    position: relative;
    width: 100% !important;
    left: 0;
    top: 0;
    padding: 5px 0;
    border-radius: 0;
    background-color: #000000;
  }
  header .logo {
    float: left;
    width: 40%;
    padding: 0;
    position: relative;
  }
  header .logo img {
    width: auto;
    height: 50px;
  }
  header .header-right {
    float: left;
    width: 60%;
    padding: 6px 50px 0 0;
    text-align: right;
  }
  header .call a {
    font-size: 13px;
    line-height: 33px;
    padding: 0 8px;
    margin: 0 0 0 5px;
    border-radius: 0 10px 0 10px;
  }
}

/* Slides & layout */
.slide {
  width: 100%;
  position: relative;
  font-size: 16px !important;
  line-height: 32px !important;
  padding: 60px 0;
}

/* Highlights contents */
.slide2 {
  background-color: #ffffff;
  background: url(../images/bg1.jpg) no-repeat left bottom scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  text-decoration: none;
  padding: 60px 0;
  color: var(--charcoal);
}

.slide2 h6 {
  color: var(--charcoal) !important;
}

.slide2 h2 {
  color: var(--charcoal);
}

.slide3 {
  width: 100%;
  background-color: var(--pale-beige);
  position: relative;
  font-size: 16px !important;
  line-height: 32px !important;
  padding: 60px 0;
}

.slide hr {
  border: 0;
  height: 1px;
  margin: 10px 0;
  background: linear-gradient(to right, #d6cabb, #e7d9c8, #d0beaa);
}

.clear {
  clear: both;
  height: 0px;
  line-height: 0px;
}

/* Headings */
h1 {
  font-family: "Playfair Display", serif !important;
  font-weight: 700 !important;
  font-size: 40px !important;
  padding: 0 !important;
  color: var(--charcoal);
  margin: 0 0 10px 0 !important;
  line-height: normal;
  position: relative;
}

h2 {
  font-family: "Playfair Display", serif !important;
  font-weight: 700 !important;
  font-size: 40px !important;
  padding: 0 !important;
  color: var(--charcoal);
  margin: 0 0 10px 0 !important;
  line-height: normal;
  position: relative;
}

.subtitle {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 17px;
  display: inline-block;
  letter-spacing: 2.8px;
  padding: 0 0;
  position: relative;
  margin-bottom: 30px;
  z-index: 10;
  color: #ffffff;
}

.subtitle::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--brown);
  left: 0;
  bottom: -10px;
  z-index: -1;
}

.subtitle2 {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 17px;
  display: inline-block;
  letter-spacing: 2.8px;
  padding: 0 0;
  position: relative;
  margin-bottom: 30px;
  z-index: 10;
  color: var(--charcoal);
}

.subtitle2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--brown);
  left: 0;
  bottom: -10px;
  z-index: -1;
}

h3 {
  color: var(--charcoal);
  font-size: 22px;
  font-weight: 600 !important;
  position: relative;
  padding: 0 0 15px 0;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

h3 strong {
  font-weight: 700 !important;
  color: var(--brown);
}

h4 {
  color: var(--charcoal);
  font-size: 22px;
  font-weight: 500 !important;
  position: relative;
}

h4 strong {
  font-weight: 700 !important;
  color: #ffffff;
}

h5 {
  font-weight: 600 !important;
  color: var(--charcoal);
  font-size: 18px !important;
  position: relative;
  margin: 0 0 10px 0 !important;
}

h6 {
  font-size: 16px;
  line-height: 30px;
  color: var(--muted2);
  margin: 0 0 15px 0 !important;
  font-style: italic;
}

div p {
  font-size: 14px;
  line-height: 26px;
  text-align: justify;
  color: var(--muted);
}

div p:last-child {
  font-size: 14px;
  line-height: 26px;
  text-align: justify;
  margin-bottom: 0 !important;
}

.text-center p {
  text-align: center !important;
  align-items: center;
}

.text-justify p {
  text-align: justify !important;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 32px !important;
    padding: 0 !important;
    margin: 0 0 5px 0 !important;
  }
  h2 {
    font-size: 32px !important;
    padding: 0 !important;
    margin: 0 0 5px 0 !important;
  }
  .subtitle {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 17px;
    display: inline-block;
    letter-spacing: 2.8px;
    padding: 0 0;
    position: relative;
    margin-bottom: 30px;
    z-index: 10;
    color: #010000;
  }
  .subtitle::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    background-color: #0c0000;
    left: 0;
    bottom: -10px;
    z-index: -1;
  }
  .subtitle2 {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 17px;
    display: inline-block;
    letter-spacing: 2.8px;
    padding: 0 0;
    position: relative;
    margin-bottom: 30px;
    z-index: 10;
    color: var(--charcoal);
  }
  .subtitle2::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    background-color: #666;
    left: 0;
    bottom: -10px;
    z-index: -1;
  }
  h3 {
    color: var(--charcoal);
    font-size: 22px;
    font-weight: 600 !important;
    position: relative;
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
    text-transform: uppercase;
  }
  h3 strong {
    font-weight: 700 !important;
    color: var(--brown);
  }
  h4 {
    color: rgba(0, 0, 0, 0.6);
    font-size: 22px;
    font-weight: 500 !important;
    position: relative;
  }
  h4 strong {
    font-weight: 700 !important;
    color: var(--gold-dark);
  }
  h5 {
    font-weight: 600 !important;
    color: var(--charcoal);
    font-size: 18px !important;
    position: relative;
    margin: 0 0 10px 0 !important;
  }
  h6 {
    font-size: 16px;
    line-height: 30px;
    color: var(--muted2);
    font-style: italic;
  }
  p {
    font-size: 14px;
    line-height: 26px;
    text-align: justify;
  }
}

@media screen and (max-width: 570px) {
  .container {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

.slide ul {
}

.slide ul li {
  margin: 0 0 15px 0;
}

.slider {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: var(--cream);
  padding: !important;
}

.slider .slide {
  padding: 0;
}

/* HERO CAROUSEL - prevent overflow & maintain visual height */
.carousel-inner {
  width: 100%;

  overflow: hidden; /* key to avoid horizontal scroll */
}
.carousel-inner .carousel-item {
  width: 100%;

  display: block;
}
.carousel-inner img {
  width: 100%;
  height: 850px; /* desktop hero height */

  object-fit: cover;
  object-position: center;
  display: block;
}

/* Mobile hero height adjustments */
@media screen and (max-width: 992px) {
  .carousel-inner img {
    height: 320px;
  }
}
@media screen and (max-width: 768px) {
  .carousel-inner img {
    height: 220px;
  }
}
@media screen and (max-width: 480px) {
  .carousel-inner img {
    height: 180px;
  }
}

.slide-text {
  top: 30%;
  position: absolute;
  z-index: 98;
  color: #fff;
  width: 100%;
  text-shadow: 0 2px 18px rgba(43, 31, 0, 0.25);
}

.slide-text .container-fluid {
  padding-top: 30px;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 30px;
}

/* brief (hero CTA card) */
.brief {
  background-color: rgba(43, 31, 0, 0.82);
  padding: 20px;
  border-radius: 0 35px 0 35px;
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.brief .subheading {
  font-size: 24px;
  font-weight: 500;
  font-family: "Playfair Display", serif !important;
  background: linear-gradient(120deg, var(--gold), var(--gold));
  color: #fff;
  margin: 0 0 15px 0;
  padding: 0 10px;
  border-radius: 0 10px 0 10px;
  display: inline-block;
}

.brief h3 {
  font-size: 28px;
  font-weight: 700 !important;
  font-family: "Playfair Display", serif !important;
  color: #ffffff;
  padding: 0 !important;
  margin: 0 !important;
  text-transform: capitalize;
}

.brief h4 {
  color: #ffffff;
  font-weight: 700 !important;
}

.brief h5 {
  color: var(--brown);
}

.brief h6 {
  font-size: 18px;
  font-style: normal;
  color: #fff;
}

.brief a {
  background-color: #fff;
  border-radius: 0 10px 10px 0;
  line-height: 50px;
  padding: 0px 15px 0px 10px;
  display: inline-block;
  text-decoration: none !important;
  font-weight: 800 !important;
  font-size: 22px;
  margin: 10px 0 0 0;
  color: #000000 !important;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}

.brief a i {
  float: left;
  background-color: #000000;
  display: inline-block;
  width: 40px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  margin: 0 5px 0 0;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}

.brief ul {
  display: block;
  width: 100%;
  list-style: none;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
}

.brief ul li {
  display: inline-block;
  margin: 0 10px 0 0;
}

.brief ul li i {
  color: #ffffff;
}

/* enquiry card */
.enquiry {
  width: 90%;
  float: right;
  font-weight: 700;
  background: linear-gradient(
    120deg,
    rgba(200, 154, 68, 0.12),
    rgba(184, 122, 30, 0.08)
  ) !important;
  margin-top: 0;
  text-align: left;
  padding: 20px;
  border-radius: 0 15px 0 15px;
  color: var(--charcoal);
}

.enquiry h2 {
  font-size: 24px !important;
  font-weight: 700 !important;
  padding-bottom: 10px !important;
  color: var(--charcoal);
}

.enquiry form {
  padding: 0;
}

/* form submit style */
.zf-submitColor {
  background-color: #000000;
  width: 100%;
  display: block;
  padding: 0px 20px;
  line-height: 50px;
  font-weight: 600 !important;
  color: #fff !important;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 14px;
  margin: 0px 0 0 0;
  border: 0;
  border-radius: 0 10px 0 10px;
  text-align: center;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
}

/* responsive adjustments */
@media screen and (max-width: 992px) {
  .slide,
  .slide2,
  .slide3 {
    padding: 30px 0;
  }
  .slide-text {
    top: 0;
    position: relative;
    z-index: auto;
    color: #fff;
    width: 100%;
    padding: 0 0 20px 0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0);
  }
  .slide-text .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
  .brief {
    background-color: rgba(0, 0, 0, 0);
    padding: 20px 0;
    border-radius: 0 35px 0 35px;
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
  }
  .brief a {
    background-color: #fff;
    border-radius: 10px 0 10px 0;
    line-height: 50px;
    padding: 0px 15px 0px 10px;
    display: inline-block;
    text-decoration: none !important;
    font-weight: 800 !important;
    font-size: 22px;
    margin: 10px 0 0 0;
    color: #000000 !important;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
  }
  .enquiry {
    width: 100%;
    float: none;
  }
}

@media screen and (max-width: 480px) {
  .slide-text {
    top: 0;
    position: relative;
    z-index: auto;
    color: #fff;
    width: 100%;
    padding: 0 0 20px 0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0);
  }
  .slide-text .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
  .brief {
    background-color: rgba(43, 31, 0, 0.95);
    padding: 20px 0;
    border-radius: 0 35px 0 35px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
  }
  .brief .subheading {
    font-size: 24px;
    font-weight: 500;
    font-family: "Playfair Display", serif !important;
    background-color: var(--brown);
    color: #fff;
    margin: 0 0 15px 0;
    padding: 0 10px;
    border-radius: 0 10px 0 10px;
    display: inline-block;
  }
  .brief h3 {
    font-size: 30px;
  }
  .brief h4 {
    color: #ffffff;
    font-size: 18px;
  }
  .brief h5 {
    color: var(--brown);
  }
  .brief h6 {
    font-size: 14px;
    color: #fffefe;
  }
}

.types {
}

.types ul {
  display: table;
  width: 100%;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  outline: 0 !important;
}

.types ul li {
  float: left;
  width: 33.33% !important;
  line-height: 1.3;
  text-align: center;
  padding: 20px;
  color: var(--muted);
}

.types ul li div {
  display: inline-block;
  margin: 0 auto;
  text-align: left;
  min-width: 260px;
}

.types ul li i {
  float: left;
  font-size: 56px;
  margin-right: 10px;
  color: var(--brown);
}

.types ul li strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 8px 0 0 0;
}

.types ul li span {
  font-size: 14px;
}

/* =========================
   Finance & Highlights – Width & Height Alignment Fix
   ========================= */

.subtypes2 {
  width: 100%;
  max-width: 800px; /* MATCH main landing container */
  margin: 48px auto; /* vertical rhythm like other sections */
  padding: 32px 40px; /* reduced height, wider feel */
  background: linear-gradient(135deg, #c6a45d, #b8944a);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Inner keeps content centered */
.subtypes2__inner {
  max-width: 100%;
}

/* Title */
.subtypes2__title {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  text-align: center;
  margin-bottom: 6px;
}

/* Subtitle */
.subtypes2__tagline {
  text-align: center;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 26px;
}

/* Bank strip */
.subtypes2__list {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Card */
.subtypes2__card {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 280px;
  transition: all 0.35s ease;
}

.subtypes2__card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
}

/* Logo */
.subtypes2__logo {
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subtypes2__logo img {
  max-width: 100%;
  height: auto;
}

/* Text */
.subtypes2__body h4 {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  margin: 0 0 6px;
}

.badge.finance {
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  font-weight: 700;
}

/* =========================
   Responsive – stays compact
   ========================= */
@media (max-width: 992px) {
  .subtypes2 {
    padding: 26px 20px;
    margin: 32px auto;
  }

  .subtypes2__list {
    flex-direction: column;
    gap: 14px;
  }

  .subtypes2__card {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Project size strip (subtypes) */
.subtypes {
  padding: 20px;
  background-color: var(--pale-beige);
  color: var(--brown);
  border-radius: 0 25px 0 25px;
}

.subtypes ul {
  display: table;
  width: 100%;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  outline: 0 !important;
}

.subtypes ul li {
  float: left;
  width: 25% !important;
  line-height: 1.3;
  text-align: center;
  position: relative;
  color: var(--brown);
}

.subtypes ul li::after {
  position: absolute;
  right: -20px;
  top: 10px;
  width: 1px;
  height: 80px;
  background-color: #fff;
  transform: rotate(20deg);
  color: #fff;
  content: "";
}

.subtypes ul li:last-child::after {
  display: none;
}

.subtypes ul li div {
  text-align: center;
}

.subtypes ul li strong {
  font-family: "Playfair Display", serif !important;
  display: block;
  font-size: 46px;
  font-weight: 900 !important;
  color: #ffffff;
  margin: 8px 0 0 0;
  background: transparent;
  -webkit-text-stroke: 0px transparent;
}

/* Mobile adjustments for subtypes */
@media screen and (max-width: 768px) {
  .types ul li {
    float: left;
    width: 50% !important;
    line-height: 1.3;
    text-align: left;
    padding: 10px 0;
    color: var(--charcoal);
  }
  .types ul li div {
    display: block;
    margin: 0 auto;
    text-align: center;
    min-width: 100%;
  }
  .types ul li i {
    float: none;
    font-size: 32px;
    color: var(--brown);
    margin-right: 0px;
  }
  .types ul li strong {
    font-size: 15px;
    margin: 8px 0 0 0;
  }
  .types ul li span {
    font-size: 13px;
  }
  .subtypes {
    padding: 15px;
    background-color: var(--pale-beige);
  }
  .subtypes ul li {
    float: left;
    width: 50% !important;
    line-height: 1.3;
    text-align: center;
    position: relative;
    color: #fff;
  }
  .subtypes ul li::after {
    display: none;
  }
  .subtypes ul li strong {
    font-size: 32px;
    font-weight: 900 !important;
    margin: 8px 0 0 0;
  }
  .subtypes ul li span {
    font-size: 12px;
  }
}

/* Amenities, contact, modals and gallery styles */
#amenities {
  box-shadow: inset 0px 0px 30px rgba(0, 0, 0, 0.2);
}

#amenities ol {
  margin: 0 0 0 22px;
}

#amenities ol li {
  margin: 10px 0;
}

#amenities .amt-img img {
  margin-bottom: 30px;
}

#contact {
  background-color: var(--charcoal);
  color: rgba(255, 255, 255, 1);
  padding: 0;
}

#contact h3 {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700 !important;
}

#contact h5 {
  font-size: 20px !important;
  text-transform: uppercase;
  padding: 7px 0 0 0 !important;
  margin: 0px 0 0 0 !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 1) !important;
}

#contact .cont-link,
#contact .cont-link h5,
#contact .cont-link p {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 1) !important;
  text-decoration: none;
}

#contact .cont-link i {
  float: left;
  background-color: rgba(0, 0, 0, 0.5);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 10px 0 10px 0;
  font-size: 32px;
  margin: 0 10px 0 0;
}

#contact p {
  font-size: 14px !important;
}

#contact p a {
  font-size: 18px !important;
  color: rgba(255, 255, 255, 1) !important;
  text-decoration: none;
}

#contact hr {
  border: 0;
  height: 1px;
  margin: 0px 0 25px 0 !important;
  background: linear-gradient(
    to right,
    rgba(244, 244, 244, 0.2),
    rgba(245, 245, 245, 0.12),
    rgba(249, 249, 249, 0.08)
  );
}

#contact form {
  margin: -60px 0 0 0;
  border-radius: 50px 0 50px 0;
  background: linear-gradient(120deg, var(--gold-dark), var(--gold));
  padding: 50px;
  color: #111;
}

#contact form button {
  background-color: #000000;
  width: 100%;
  display: block;
  padding: 0px 20px;
  line-height: 50px;
  font-weight: 600 !important;
  color: #fff !important;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 14px;
  margin: 0px 0 0 0;
  border: 0;
  border-radius: 10px 0 10px 0;
  text-align: center;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
}

#contact footer {
  background-color: #000000;
  font-size: 12px;
  line-height: 1.3;
  padding: 15px 0;
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
}

#contact footer a {
  color: var(--gold);
}

/* small screen contact tweaks */
@media screen and (max-width: 992px) {
  #contact {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  #contact form {
    margin: 20px 0 0 0;
    border-radius: 50px 0 50px 0;
    background-color: var(--brown);
    padding: 30px;
  }
  #contact footer {
    padding: 15px 0 70px 0;
  }
}

@media screen and (max-width: 768px) {
  #contact {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  #contact form {
    margin: 0;
    border-radius: 20px 0 20px 0;
    padding: 15px 10px 10px 10px;
  }
}

.floor-plan {
  border-radius: 15px 0 15px 0;
  overflow: hidden;
  margin: 0 0 14px 0;
  width: 100%;
  height: auto;
  border: solid 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 10px 15px -5px rgba(0, 0, 0, 0.15);
}

.floor-plan img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===== Premium Gallery (pgallery) + Lightbox styles ===== */

/* Gallery heading & tagline */
.gallery__title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  color: var(--charcoal);
  text-align: center;
}
.gallery__tagline {
  color: rgba(43, 31, 0, 0.6);
  margin-top: 6px;
  font-size: 15px;
  font-weight: 600;
}

/* Grid of thumbnails */
.pgallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 18px;
}

/* thumbnail button */
.pgallery__item {
  display: block;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(43, 31, 0, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pgallery__item:focus {
  outline: 3px solid rgba(43, 31, 0, 0.12);
}
.pgallery__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(43, 31, 0, 0.1);
}

/* thumbnail image */
.pgallery__item img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  transition: transform 0.28s ease;
}
.pgallery__item:hover img {
  transform: scale(1.03);
}

/* responsive */
@media (max-width: 992px) {
  .pgallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .pgallery__item img {
    height: 180px;
  }
}
@media (max-width: 576px) {
  .pgallery {
    grid-template-columns: 1fr;
  }
  .pgallery__item img {
    height: 220px;
    border-radius: 12px;
  }
}

/* ================= Lightbox styles (pg-lightbox) ================= */
.pg-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
}
.pg-lightbox[aria-hidden="false"] {
  display: flex;
  pointer-events: auto;
}

.pg-lightbox__overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 7, 7, 0.65);
  backdrop-filter: blur(2px);
}

/* panel */
.pg-lightbox__panel {
  position: relative;
  width: min(1100px, 96%);
  max-width: 1100px;
  margin: 12px;
  z-index: 3002;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* header: counter + fullscreen + close */
.pg-lightbox__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.pg-lightbox__meta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.pg-lightbox__counter {
  color: #fff;
  font-weight: 700;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  font-size: 13px;
}
.pg-lightbox__fs {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold));
  border: 0;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}
.pg-lightbox__close {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold));
  color: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 44px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* inner content */
.pg-lightbox__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: transparent;
}

/* nav */
.pg-lightbox__nav {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}
.pg-lightbox__nav:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

/* frame (image + caption) */
.pg-lightbox__frame {
  width: 100%;
  margin: 0;
  text-align: center;
  color: #fff;
}
.pg-lightbox__img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.6);
}
.pg-lightbox__caption {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Montserrat", sans-serif;
}

/* small screens */
@media (max-width: 576px) {
  .pg-lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
  .pg-lightbox__close {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
  .pg-lightbox__panel {
    width: calc(100% - 24px);
  }
  .pg-lightbox__img {
    max-height: 62vh;
  }
}

/* ensure box-sizing */
.pgallery,
.pgallery *,
.pg-lightbox,
.pg-lightbox * {
  box-sizing: border-box;
}

/* inputs */
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="email"] {
  font-size: 14px;
  border-radius: 4px;
  color: #666;
  font-weight: 400;
  clear: both;
  padding: 0 10px !important;
  width: 100% !important;
  text-decoration: none;
  height: 43px;
  margin: 0 0 10px 0;
  background-color: #fff;
  border: solid 1px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  box-shadow: inset 0px 0px 0px #999;
}

select {
  font-size: 14px;
  border-radius: 4px;
  color: #666;
  font-weight: 400;
  clear: both;
  padding: 0 10px !important;
  width: 90% !important;
  text-decoration: none;
  height: 43px;
  margin: 0 0 10px 0;
  background-color: #fff;
  border: solid 1px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

textarea {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 15px !important;
  border-radius: 4px;
  color: #666;
  font-weight: 400;
  clear: both;
  padding: 5px 10px !important;
  width: 100% !important;
  text-decoration: none;
  height: 45px;
  margin: 0 0 10px 0;
  background-color: #fff;
  border: solid 1px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

/* lists */
.list1 {
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
}

.list1 li {
  list-style-type: none;
  padding: 8px 0 8px 30px;
  text-indent: 3px;
  border-left: solid 0px #ff6600;
  margin: 0 0 10px 0;
  text-align: justify;
  font-weight: 600;
  position: relative;
  line-height: 1.3;
}

.list1 li:before {
  position: absolute;
  content: "\f14a";
  font-family: "Font Awesome 5 Free" !important;
  font-style: normal;
  font-weight: 700;
  text-decoration: inherit;
  color: var(--brown);
  font-size: 26px;
  top: 2px;
  left: 0px;
}

.list-map {
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
}

.list-map li {
  list-style-type: none;
  padding: 8px 0 8px 30px;
  text-indent: 3px;
  border-left: solid 0px #ff6600;
  margin: 0 0 10px 0;
  text-align: justify;
  font-weight: 600;
  position: relative;
  line-height: 1.3;
}

.list-map li:before {
  position: absolute;
  content: "\f3c5";
  font-family: "Font Awesome 5 Free" !important;
  font-style: normal;
  font-weight: 700;
  text-decoration: inherit;
  color: var(--brown);
  font-size: 26px;
  top: 2px;
  left: 0px;
}

/* Modals */
.modal-backdrop.in {
  filter: alpha(opacity=60) !important;
  opacity: 0.6 !important;
}

.modal-content {
  border-radius: 15px !important;
  outline: 0;
  box-shadow: 15px 15px 25px rgba(0, 0, 0, 0.3);
  background-color: #fff !important;
  border: 0 !important;
}

.modal-body {
  padding: 0 !important;
  display: flex;
}

.modal-content .mb-l {
  width: 50%;
  border-radius: 15px 0 0 15px;
  overflow: hidden;
  align-self: center !important;
}

.modal-content .mb-l img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  vertical-align: top;
}

.modal-content .mb-r {
  position: relative;
  width: 50%;
  padding: 30px 30px 30px 30px;
  align-self: auto !important;
}

.modal-content .mb-r img {
  height: 50px;
}

.modal-content .mb-r .m-call {
  width: 100%;
  height: 45px;
  line-height: 45px;
  text-align: center;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  background: linear-gradient(120deg, var(--gold-dark), var(--gold)) !important;
  color: #fffefe;
  border-radius: 0 0 15px 0;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
}

.modal-content h2 {
  font-weight: 700 !important;
  text-transform: capitalize;
  font-size: 26px !important;
  padding: 0 0 15px 0;
  color: #000000 !important;
  margin: 0 0 15px 0 !important;
  line-height: normal;
  position: relative;
}

.modal-content .mb-r h4 {
  color: #fff !important;
}

/* close button styled with gold */
.modal-body .close {
  position: absolute;
  z-index: 1;
  right: -10px;
  top: -10px;
  font-size: 28px !important;
  font-weight: 700;
  color: #000;
  opacity: 1;
  margin: 0;
  background: linear-gradient(45deg, var(--gold-dark), var(--gold)) !important;
  width: 39px;
  height: 39px;
  line-height: 39px !important;
  border-radius: 50%;
  border: solid 0px #fff !important;
  outline: none !important;
}

.modal-body .close:hover,
.modal-body.close:focus {
  background-color: #000;
  opacity: 1;
  color: #000;
}

@media screen and (max-width: 992px) {
  .modal-body {
    padding: 0 !important;
    display: block;
  }
  .modal-content .mb-l {
    width: 100%;
  }
  .modal-content .mb-l img {
    display: none;
  }
  .modal-content .mb-r {
    width: 100%;
    padding: 30px 30px 75px 30px;
  }
  .modal-body .close {
    position: absolute;
    z-index: 1;
    right: -5px;
    top: -5px;
    font-size: 28px !important;
    font-weight: 700;
    color: #ffffff;
    opacity: 1;
    margin: 0;
    background: linear-gradient(
      120deg,
      var(--gold-dark),
      var(--gold)
    ) !important;
    width: 39px;
    height: 39px;
    line-height: 39px !important;
    border-radius: 50%;
    border: solid 0px #fff !important;
    outline: none !important;
  }
  .modal-body .close:hover,
  .modal-body.close:focus {
    background-color: #000;
    opacity: 1;
    color: #fff;
  }
}

/* fixed contact widgets */
.fix-call {
  position: fixed;
  right: 0;
  bottom: 10px;
  width: 160px;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0) !important;
  text-align: center;
  padding: 0 10px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0) !important;
  text-align: right;
}

.fix-call a {
  color: #fff !important;
  font-size: 30px;
  width: auto;
  height: auto;
  display: inline-block;
  text-align: center;
}

.fix-call a:hover {
  text-decoration: none;
}

.fix-call a i {
  color: #fff !important;
  font-size: 22px !important;
  width: 52px !important;
  height: 52px !important;
  line-height: 52px !important;
  border-radius: 100%;
  display: inline-block;
  margin: 0 2px;
  border: solid 0px #0b0c0b;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}

.fix-call a.wa img {
  display: none;
}

.fix-call a.fx-call {
  display: none;
}

/* phone icon gradient -> warm gold */
.fix-call a .fa-phone {
  background: linear-gradient(90deg, #b3802b 0%, #caa13e 50%, #e8ce4f 100%);
}

/* keep whatsapp green for recognition */
.fix-call a .fa-whatsapp {
  background-color: #13990a;
  font-size: 26px !important;
  line-height: 52px !important;
  color: #fff !important;
}

/* envelope icon dark */
.fix-call a .fa-envelope-open {
  background-color: #000000;
}

.fix-call a span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  display: none;
  text-transform: uppercase;
}

@media screen and (max-width: 992px) {
  .fix-call {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(
      120deg,
      var(--gold-dark),
      var(--gold)
    ) !important;
    text-align: center;
    padding: 0 0 0 0;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1) !important;
    display: table;
  }
  .fix-call a {
    display: table-cell;
    width: 40% !important;
    color: #000 !important;
    height: auto;
    line-height: 1;
    text-align: center;
    text-decoration: none !important;
    margin: 0;
    padding: 3px 5px;
    font-size: 22px !important;
    vertical-align: middle;
    border-right: solid 0px rgba(0, 0, 0, 0.3);
  }
  .fix-call a i {
    display: inline-block;
    color: #ffffff !important;
    font-size: 14px !important;
    width: auto !important;
    height: auto !important;
    line-height: 45px !important;
    border-radius: 0;
    margin: 0 3px 0 0;
    border: solid 0px rgba(255, 255, 255, 0);
    vertical-align: middle;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0);
    background: transparent !important;
  }
  .fix-call a i {
    background: transparent;
  }
  .fix-call a.fx-call {
    display: table-cell;
    width: 40% !important;
  }
  .fix-call a.wa {
    position: relative;
    z-index: 10;
    top: -5px;
    padding: 3px 5px;
    width: 20% !important;
    background-color: #13990a;
    border-radius: 5px;
    margin-top: 0px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  }
  .fix-call a.wa img {
    display: inline-block;
    height: 40px;
    vertical-align: middle;
  }
  .fix-call a.wa span {
    display: none;
  }
  .fix-call a .fa-whatsapp {
    display: none !important;
    font-size: 22px !important;
    background: transparent;
    color: #13990a !important;
  }
  .fix-call a span {
    display: inline-block;
    line-height: 45px;
  }
}

/* left & right fix rotated panels */
.left-fix {
  position: fixed;
  left: -88px;
  z-index: 101;
  top: 50%;
  margin-top: 0px;
  width: 210px;
  text-align: center;
  transform: rotate(-90deg);
  font-size: 16px;
}

.left-fix a {
  display: block;
  background: linear-gradient(120deg, var(--gold-dark), var(--gold)) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  line-height: 35px;
  padding: 0 0;
  font-weight: 700 !important;
  text-transform: uppercase;
  border-radius: 0 0 5px 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
}

.left-fix a:hover {
  text-decoration: none !important;
}

.left-fix i {
  color: #fff;
  font-size: 20px;
  background-color: #000;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
}

.right-fix {
  position: fixed;
  right: -88px;
  z-index: 999;
  top: 50%;
  margin-top: 0px;
  width: 210px;
  text-align: center;
  transform: rotate(-90deg);
  font-size: 16px;
}

.right-fix a {
  display: block;
  background-color: var(--brown);
  color: #fff !important;
  text-decoration: none !important;
  line-height: 35px;
  padding: 0 0;
  font-weight: 700 !important;
  text-transform: uppercase;
  border-radius: 5px 5px 0 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
}

.right-fix a:hover {
  text-decoration: none !important;
}

.right-fix i {
  color: #fff;
  font-size: 20px;
  background-color: #000;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
}

@media screen and (max-width: 992px) {
  .left-fix {
    position: fixed;
    left: -74px;
    top: 50%;
    width: 175px;
    font-size: 14px;
  }
  .left-fix a {
    line-height: 28px;
    padding: 0 0;
  }
  .right-fix {
    position: fixed;
    right: -74px;
    top: 50%;
    width: 175px;
    text-align: center;
  }
  .right-fix a {
    display: block;
    color: #fff;
    text-decoration: none;
    line-height: 28px;
    padding: 0 0;
    font-size: 15px;
  }
  .right-fix2 {
    position: fixed;
    right: -65px;
    top: 60%;
    width: 150px;
    text-align: center;
    transform: rotate(-90deg);
    text-transform: uppercase;
    font-size: 14px;
  }
  .right-fix2 a {
    display: block;
    color: #fff;
    text-decoration: none;
    line-height: 20px;
    padding: 0 0;
  }
}

/* dynamic lists, video container, maps */
.dynamic {
}

.dynamic ul {
  margin: 0 0 0 20px;
}

.dynamic ul li {
  margin: 0 0 10px 0;
  text-align: justify;
  line-height: 1.7;
}

.dynamic ol {
  margin: 0 0 0 20px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  background-color: #e9dccf;
  margin-bottom: 15px;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-container {
}

.map-container iframe {
  width: 100%;
  height: 200px;
  background-color: #fff;
  padding: 2px;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
  margin: 0 0 10px 0;
  border-radius: 8px;
  display: block;
}

/* Buttons variations - blue replaced with gold/brown */
.btn1 {
  background-color: var(--brown);
  display: inline-block;
  padding: 5px 20px;
  line-height: 30px;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  font-size: 16px;
  margin: 10px 0 0 0;
  border: 0;
  transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
}

.btn1:hover {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold)) !important;
  color: #fff;
}

.btn2 {
  width: auto;
  display: inline-block;
  padding: 0px 30px;
  line-height: 50px;
  font-weight: 700 !important;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 16px;
  margin: 0;
  border: 0;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  background: linear-gradient(120deg, var(--gold-dark), var(--gold)) !important;
  color: #ffffff !important;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
}

.btn2:hover {
  background-color: var(--brown);
  color: #fff !important;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.btn3 {
  background-color: #000000;
  width: 100%;
  display: block;
  padding: 0px 20px;
  line-height: 50px;
  font-weight: 700 !important;
  color: #fff !important;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 14px;
  margin: 0;
  border: 0;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
}

.btn3:hover {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold)) !important;
  color: #000 !important;
}

.btn4 {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold)) !important;
  width: 100%;
  display: block;
  padding: 0px 20px;
  line-height: 50px;
  font-weight: 400 !important;
  color: #fff !important;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 14px;
  margin: 10px 0 0 0;
  border: 0;
  text-align: center;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
}

.btn4:hover {
  background-color: var(--brown) !important;
  color: #ffff !important;
}

.btn5 {
  background-color: #f9f9f9;
  display: inline-block;
  padding: 0px 15px;
  line-height: 35px;
  font-weight: 700 !important;
  color: rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
  font-size: 14px;
  margin: 0px 0 0 0;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  text-align: center;
  text-decoration: none !important;
  transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
}

.btn5:hover {
  background-color: #000000;
  color: #fff;
}

.btn6 {
  background-color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  padding: 0px 5px;
  line-height: 25px;
  font-weight: 700 !important;
  color: rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
  font-size: 11px;
  margin: 0px 0 0 0;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  text-align: center;
  text-decoration: none !important;
  transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
}

/* show/hide read more buttons */
#dots {
  display: inline-block;
}
#more {
  display: none;
}
#myBtn {
  display: inline-block !important;
}

#dots2 {
  display: inline-block;
}
#more2 {
  display: none;
}
#myBtn2 {
  display: inline-block !important;
}

#dots3 {
  display: inline-block;
}
#more3 {
  display: none;
}
#myBtn3 {
  display: inline-block !important;
}

.grecaptcha-badge {
  opacity: 0;
}

.newlist {
  list-style: none;
  line-height: 1;
  padding-left: 22px;
  text-align: left;
  font-size: 12px;
}

.newlist a {
  color: #fff;
}

.newlist li:before {
  content: "✓";
  font-weight: 800;
  margin-right: 10px;
  font-size: 13px;
  margin-left: -22px;
}

.modal-content-footer {
  border-radius: 15px !important;
  outline: 0;
  box-shadow: 15px 15px 25px rgba(0, 0, 0, 0.3);
  background-color: #fff !important;
  border: 0 !important;
}

.modal-body-footer {
  padding: 0 !important;
  padding: 20px !important;
  display: flex;
}

.modal-content-footer h2 {
  font-weight: 700 !important;
  text-transform: capitalize;
  font-size: 23px !important;
  padding: 0 0 15px 0;
  color: #000000 !important;
  margin: 0 0 15px 0 !important;
  line-height: normal;
  position: relative;
}

.modal-content-footer p {
  font-size: 12px !important;
  line-height: 1.6;
}

.modal-body-footer .close {
  position: absolute;
  z-index: 1;
  right: -10px;
  top: -10px;
  font-size: 28px !important;
  font-weight: 700;
  color: #000;
  opacity: 1;
  margin: 0;
  background: linear-gradient(45deg, var(--gold-dark), var(--gold)) !important;
  width: 39px;
  height: 39px;
  line-height: 39px !important;
  border-radius: 50%;
  border: solid 0px #fff !important;
  outline: none !important;
}

.modal-body-footer .close:hover,
.modal-body.close:focus {
  background-color: #000;
  opacity: 1;
  color: #000;
}

@media screen and (max-width: 992px) {
  .modal-body-footer {
    padding: 5px !important;
    display: block;
  }
  .modal-content-footer p {
    font-size: 12px !important;
    line-height: 1.6 !important;
  }
  .modal-body-footer .close {
    position: absolute;
    z-index: 1;
    right: -5px;
    top: -5px;
    font-size: 28px !important;
    font-weight: 700;
    color: #000;
    opacity: 1;
    margin: 0;
    background: linear-gradient(
      45deg,
      var(--gold-dark),
      var(--gold)
    ) !important;
    width: 39px;
    height: 39px;
    line-height: 39px !important;
    border-radius: 50%;
    border: solid 0px #fff !important;
    outline: none !important;
  }
  .modal-body-footer .close:hover,
  .modal-body.close:focus {
    background-color: #000;
    opacity: 1;
    color: #fff;
  }
}

/* Force-remove any leftover hard-coded blue backgrounds */
*[style*="#052863"],
*[style*="#2989d8"],
*[style*="#207cca"],
*[style*="#7db9e8"],
*[style*="#052b3a"] {
  background: none !important;
  background-color: transparent !important;
}

/* Optional helpers */
/* Brand script class (use in HTML for the cursive 'Live' style) */
.brand-script {
  font-family: "Great Vibes", cursive !important;
  color: var(--brown) !important;
  font-size: 48px;
  line-height: 1;
}

/* Hero title utility */
.hero-title {
  letter-spacing: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: var(--charcoal);
}

/* End of stylesheet */
