/* =========================================================
   Express Gold Exchange – Landing Page Styles
   ========================================================= */

/* ---------- Local fonts ---------- */
@font-face { font-family: "Poppins"; font-weight: 300; font-style: normal; font-display: swap; src: url("../fonts/poppins-300.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 400; font-style: normal; font-display: swap; src: url("../fonts/poppins-400.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 500; font-style: normal; font-display: swap; src: url("../fonts/poppins-500.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 600; font-style: normal; font-display: swap; src: url("../fonts/poppins-600.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-weight: 700; font-style: normal; font-display: swap; src: url("../fonts/poppins-700.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-weight: 600; font-style: normal; font-display: swap; src: url("../fonts/montserrat-600.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-weight: 700; font-style: normal; font-display: swap; src: url("../fonts/montserrat-700.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-weight: 800; font-style: normal; font-display: swap; src: url("../fonts/montserrat-800.woff2") format("woff2"); }

/* ---------- Tokens ---------- */
:root {
  --gold: #D4AF37;
  --gold-dark: #A8841F;
  --gold-light: #F3DC8C;
  --gold-grad: linear-gradient(135deg, #F3DC8C 0%, #D4AF37 45%, #B8912A 100%);
  --charcoal: #121212;
  --charcoal-2: #1C1C1C;
  --ink: #222;
  --text: #4a4a4a;
  --cream: #FBF7EE;
  --cream-2: #F5EEDD;
  --white: #fff;
  --radius: 18px;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, .06);
  --shadow: 0 14px 40px rgba(20, 16, 4, .10);
  --shadow-gold: 0 10px 28px rgba(212, 175, 55, .35);
  --nav-h: 82px;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Montserrat", "Poppins", system-ui, sans-serif;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) - 2px); }
@supports (overflow: clip) { html, body { overflow-x: clip; } }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--ink); font-weight: 700; line-height: 1.2; }
a { color: var(--gold-dark); text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold); }
img { max-width: 100%; }
::selection { background: var(--gold); color: #111; }

.text-gold { color: var(--gold) !important; }
.text-gold-dark { color: var(--gold-dark) !important; }

.section { padding: 80px 0; }
@media (min-width: 992px) { .section { padding: 110px 0; } }

.section-head { max-width: 720px; margin: 0 auto 50px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 12px;
}
.section-tag::before, .section-head .section-tag::after {
  content: ""; width: 28px; height: 2px; background: var(--gold-grad); border-radius: 2px;
}
.section-tag.tag-dark { color: var(--gold); }
.section-title { font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem); margin-bottom: 16px; }
.section-sub { font-size: 1.02rem; color: #6b6b6b; margin: 0; }
.lead-text { font-size: 1.08rem; color: #333; }

/* ---------- Buttons ---------- */
.btn { font-weight: 600; border-radius: 50px; padding: .65rem 1.5rem; transition: all .3s ease; letter-spacing: .01em; }
.btn-lg { padding: .85rem 1.9rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.15rem; font-size: .88rem; }

.btn-gold {
  background: var(--gold-grad); background-size: 150% 150%; color: #1a1400; border: 0;
  box-shadow: 0 6px 18px rgba(212, 175, 55, .28);
}
.btn-gold:hover, .btn-gold:focus-visible { color: #1a1400; background-position: 100% 0; transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-gold:active { transform: translateY(0); }

.btn-outline-light { border: 2px solid rgba(255, 255, 255, .8); color: #fff; }
.btn-outline-light:hover { background: #fff; color: #111; transform: translateY(-2px); }

.btn-outline-dark-gold { border: 2px solid var(--gold); color: var(--ink); background: transparent; }
.btn-outline-dark-gold:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--gold); transform: translateY(-2px); }


.btn:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 2px; }

/* ---------- Navbar ---------- */
.site-nav {
  background: rgba(255, 255, 255, .97);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  backdrop-filter: saturate(160%) blur(10px);
  min-height: var(--nav-h);
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 175, 55, .25);
  transition: box-shadow .3s, padding .3s;
  z-index: 1030;
}
.site-nav.scrolled { box-shadow: 0 6px 24px rgba(0, 0, 0, .08); padding: 6px 0; }
.brand-logo { height: 54px; width: auto; display: block; }
@media (max-width: 575.98px) { .brand-logo { height: 40px; } :root { --nav-h: 66px; } }

.site-nav .nav-link {
  font-weight: 500; font-size: .95rem; color: var(--ink);
  padding: .5rem .9rem !important; position: relative;
}
.site-nav .nav-link::after {
  content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .25rem; height: 2px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.site-nav .nav-link:hover, .site-nav .nav-link.active { color: var(--gold-dark); }
.site-nav .nav-link:hover::after, .site-nav .nav-link.active::after { transform: scaleX(1); }

.btn-call-nav { padding: .6rem 1.4rem; animation: pulseGold 2.4s infinite; }
@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, .55); }
  70% { box-shadow: 0 0 0 14px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.navbar-toggler { border: 1px solid rgba(212, 175, 55, .5); border-radius: 10px; padding: 6px 10px; font-size: 1.6rem; color: var(--ink); line-height: 1; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(212, 175, 55, .3); }

@media (max-width: 991.98px) {
  .navbar-collapse { padding: 12px 0 16px; }
  .site-nav .nav-link::after { display: none; }
  .site-nav .nav-link { border-bottom: 1px solid #f1ead8; }
  .btn-call-nav { width: 100%; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--charcoal); }
.hero .carousel-item { height: calc(100vh - var(--nav-h)); min-height: 560px; max-height: 900px; overflow: hidden; }
@media (max-width: 575.98px) { .hero .carousel-item { height: calc(100svh - var(--nav-h) - 64px); min-height: 520px; } }

.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.08); transition: transform 7s ease-out;
}
.carousel-item.active .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 8, 2, .88) 0%, rgba(10, 8, 2, .62) 50%, rgba(10, 8, 2, .30) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, 0) 40%);
}
.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  color: #fff; padding-bottom: 40px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; font-size: .82rem; font-weight: 500; letter-spacing: .06em;
  color: var(--gold-light); padding: 8px 16px; border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, .45); background: rgba(212, 175, 55, .10);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); margin-bottom: 22px;
}
.hero-title {
  color: #fff; font-weight: 800; font-size: clamp(2.1rem, 1.3rem + 4vw, 4.2rem);
  max-width: 760px; margin-bottom: 20px; letter-spacing: -.01em;
}
.hero-text { font-size: clamp(1rem, .9rem + .45vw, 1.22rem); color: rgba(255, 255, 255, .86); max-width: 600px; margin-bottom: 32px; font-weight: 300; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 575.98px) {
  .hero-content { align-items: stretch; text-align: left; }
  .hero-eyebrow { align-self: flex-start; font-size: .72rem; }
  .hero .hero-btns .btn { flex: 1 1 100%; }
}

/* animated text on active slide */
.carousel-item .hero-eyebrow,
.carousel-item .hero-title,
.carousel-item .hero-text,
.carousel-item .hero-btns { opacity: 0; transform: translateY(26px); }
.carousel-item.active .hero-eyebrow,
.carousel-item.active .hero-title,
.carousel-item.active .hero-text,
.carousel-item.active .hero-btns { animation: heroUp .9s cubic-bezier(.2, .7, .2, 1) forwards; }
.carousel-item.active .hero-title { animation-delay: .15s; }
.carousel-item.active .hero-text { animation-delay: .3s; }
.carousel-item.active .hero-btns { animation-delay: .45s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }

.hero .carousel-control-prev, .hero .carousel-control-next { width: 70px; opacity: 1; z-index: 3; }
.hero-arrow {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(212, 175, 55, .6); color: var(--gold-light); font-size: 1.25rem;
  background: rgba(0, 0, 0, .35); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: all .3s;
}
.hero .carousel-control-prev:hover .hero-arrow, .hero .carousel-control-next:hover .hero-arrow { background: var(--gold); color: #111; }
@media (min-width: 992px) { .hero .carousel-control-next { right: 48px; } }
@media (max-width: 767.98px) { .hero .carousel-control-prev, .hero .carousel-control-next { display: none; } }

.hero .carousel-indicators { margin-bottom: 70px; z-index: 3; }
.hero .carousel-indicators [data-bs-target] {
  width: 30px; height: 4px; border-radius: 4px; border: 0; background: rgba(255, 255, 255, .5); opacity: 1; transition: all .3s;
}
.hero .carousel-indicators .active { width: 50px; background: var(--gold); }

/* ---------- Highlight strip ---------- */
.highlight-strip { position: relative; z-index: 5; margin-top: -48px; }
.strip-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid rgba(212, 175, 55, .25); overflow: hidden;
}
.strip-item {
  display: flex; align-items: center; gap: 14px; padding: 22px 24px; height: 100%;
  font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .98rem;
}
.strip-item i {
  flex: 0 0 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  font-size: 1.3rem; color: var(--gold-dark); background: var(--cream-2);
}
.col-6:nth-child(odd) .strip-item { border-right: 1px solid #f0e8d4; }
.col-6:nth-child(-n+2) .strip-item { border-bottom: 1px solid #f0e8d4; }
@media (min-width: 992px) {
  .strip-item { justify-content: center; }
  .col-lg-3 .strip-item { border-bottom: 0 !important; border-right: 1px solid #f0e8d4; }
  .col-lg-3:last-child .strip-item { border-right: 0; }
}
@media (max-width: 575.98px) {
  .strip-item { flex-direction: column; text-align: center; gap: 8px; padding: 16px 10px; font-size: .84rem; }
}

/* ---------- About ---------- */
.about-section { background: var(--white); }
.about-media { position: relative; padding: 0 0 30px 0; }
.about-media::before {
  content: ""; position: absolute; top: -18px; left: -18px; width: 55%; height: 60%;
  border: 2px solid var(--gold); border-radius: var(--radius); z-index: 0;
}
.about-img {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.about-badge {
  position: absolute; z-index: 2; right: -10px; bottom: 0; display: flex; align-items: center; gap: 14px;
  background: var(--charcoal); color: #fff; padding: 14px 20px 14px 14px; border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .25); border: 1px solid rgba(212, 175, 55, .35);
}
.about-badge img { width: 58px; height: auto; border-radius: 10px; background: #fff; padding: 4px; }
.about-badge strong { display: block; font-family: var(--font-head); color: var(--gold); font-size: 1.05rem; }
.about-badge span { font-size: .82rem; color: rgba(255, 255, 255, .75); }
@media (max-width: 575.98px) {
  .about-media::before { left: -8px; top: -8px; }
  .about-badge { right: 10px; left: 10px; }
}

.about-list { list-style: none; padding: 0; margin: 22px 0 30px; display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 576px) { .about-list { grid-template-columns: 1fr 1fr; } }
.about-list li {
  display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--ink);
  background: var(--cream); border: 1px solid #f0e6cc; padding: 12px 14px; border-radius: 12px; font-size: .95rem;
  transition: transform .3s, box-shadow .3s;
}
.about-list li:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.about-list i { color: var(--gold); font-size: 1.15rem; }

/* ---------- Services ---------- */
.services-section { background: linear-gradient(180deg, var(--cream) 0%, #fff 100%); }
.service-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; height: 100%;
  box-shadow: var(--shadow-sm); border: 1px solid #f1e9d3;
  display: flex; flex-direction: column; transition: transform .4s ease, box-shadow .4s ease, border-color .4s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 22px 50px rgba(20, 16, 4, .14); border-color: rgba(212, 175, 55, .6); }
.service-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.service-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .35) 100%);
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { position: relative; padding: 38px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.service-icon {
  position: absolute; top: -28px; left: 24px; width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.45rem; color: #1a1400;
  background: var(--gold-grad); box-shadow: var(--shadow-gold); border: 3px solid #fff; transition: transform .4s;
}
.service-card:hover .service-icon { transform: rotate(-8deg) scale(1.06); }
.service-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-body p { font-size: .94rem; color: #666; margin-bottom: 20px; flex: 1; }
.service-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.btn-call-sm {
  border: 1.5px solid #e5d7ad; color: var(--ink); padding: .45rem 1rem; font-size: .88rem; border-radius: 50px; background: #fff;
}
.btn-call-sm:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--gold); }

/* ---------- Why choose us ---------- */
.why-section {
  position: relative; background: radial-gradient(1000px 500px at 85% 0%, rgba(212, 175, 55, .12), transparent 60%), var(--charcoal);
  overflow: hidden;
}
.why-section::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: radial-gradient(rgba(212, 175, 55, .18) 1px, transparent 1px);
  background-size: 26px 26px; -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%); mask-image: linear-gradient(180deg, #000, transparent 70%);
}
.why-section .container { position: relative; }
.feature-box {
  height: 100%; padding: 34px 28px; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid rgba(212, 175, 55, .22); transition: transform .4s, border-color .4s, background .4s;
  position: relative; overflow: hidden;
}
.feature-box::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: var(--gold-grad);
  transform: scaleX(0); transform-origin: left; transition: transform .5s;
}
.feature-box:hover { transform: translateY(-6px); border-color: rgba(212, 175, 55, .6); background: linear-gradient(160deg, rgba(212, 175, 55, .12), rgba(255, 255, 255, .02)); }
.feature-box:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 20px;
  font-size: 1.6rem; color: var(--gold); border: 1.5px solid var(--gold); transition: all .4s;
}
.feature-box:hover .feature-icon { background: var(--gold); color: #111; transform: rotateY(180deg); }
.feature-box:hover .feature-icon i { transform: rotateY(180deg); display: inline-block; }
.feature-box h3 { color: #fff; font-size: 1.18rem; margin-bottom: 10px; }
.feature-box p { color: rgba(255, 255, 255, .68); margin: 0; font-size: .95rem; }

/* ---------- CTA ---------- */
.cta-section {
  position: relative; padding: 100px 0; color: #fff;
  background: url("../images/cta-bg.jpg") center / cover no-repeat;
}
@media (min-width: 992px) { .cta-section { background-attachment: fixed; padding: 130px 0; } }
.cta-section::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10, 8, 2, .9), rgba(10, 8, 2, .7));
}
.cta-section .container { position: relative; max-width: 820px; }
.cta-title { color: #fff; font-size: clamp(1.9rem, 1.2rem + 3vw, 3.2rem); font-weight: 800; margin-bottom: 18px; }
.cta-text { font-size: 1.1rem; color: rgba(255, 255, 255, .82); margin: 0 auto 34px; max-width: 620px; }
@media (max-width: 575.98px) { .cta-section .hero-btns .btn { flex: 1 1 100%; } }

/* ---------- Contact ---------- */
.contact-section { background: var(--cream); }
.contact-info {
  background: var(--charcoal); color: #fff; padding: 40px 32px; border-radius: var(--radius);
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.contact-info::before {
  content: ""; position: absolute; width: 260px; height: 260px; right: -90px; top: -90px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, .35), transparent 70%);
}
.contact-logo { width: 72px; height: auto; background: #fff; border-radius: 14px; padding: 6px; margin-bottom: 16px; position: relative; }
.contact-info h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: 24px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 30px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.contact-list li:last-child { border-bottom: 0; }
.ci-icon {
  flex: 0 0 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  color: var(--gold); font-size: 1.2rem; background: rgba(212, 175, 55, .12); border: 1px solid rgba(212, 175, 55, .3);
}
.contact-list small { display: block; color: rgba(255, 255, 255, .55); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-list a, .contact-list address { color: #fff; font-weight: 500; font-size: 1rem; word-break: break-word; }
.contact-list a:hover { color: var(--gold); }
.contact-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-btns .btn { flex: 1 1 auto; white-space: nowrap; padding-left: 1.25rem; padding-right: 1.25rem; }

@media (max-width: 575.98px) { .contact-info { padding: 30px 20px; } }


.form-label { font-weight: 500; font-size: .9rem; color: var(--ink); margin-bottom: 6px; }
.form-control, .form-select {
  border-radius: 12px; border: 1.5px solid #e8e0cb; padding: .75rem 1rem; font-size: .95rem; background-color: #fffdf8;
}
.form-control:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212, 175, 55, .18); background-color: #fff; }
.enquiry-form .form-group .form-control { margin-bottom: 15px; }
.enquiry-form input[name="mobile"] { border-color: var(--gold); }

/* ---------- Map (inside contact) ---------- */
.map-card {
  position: relative; min-height: 420px; border-radius: var(--radius); overflow: hidden;
  background: #e9e4d8; box-shadow: var(--shadow); border: 1px solid #f0e6cc;
}
.map-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.map-directions {
  position: absolute; left: 16px; bottom: 16px; z-index: 2; display: inline-flex; align-items: center;
  background: var(--charcoal); color: var(--gold-light); font-weight: 600; font-size: .9rem;
  padding: 10px 18px; border-radius: 50px; border: 1px solid rgba(212, 175, 55, .5); box-shadow: var(--shadow);
}
.map-directions:hover { background: var(--gold); color: #111; }
@media (max-width: 575.98px) { .map-card { min-height: 340px; } }

/* ---------- Footer (copyright only) ---------- */
.site-footer { background: #0c0c0c; border-top: 3px solid var(--gold); padding: 22px 0; text-align: center; }
.site-footer p { margin: 0; color: rgba(255, 255, 255, .7); font-size: .9rem; }
@media (max-width: 991.98px) { .site-footer { padding: 18px 76px 18px 16px; } .site-footer p { font-size: .82rem; } }

/* ---------- Floating elements ---------- */
.side-enquire {
  position: fixed; right: 0; top: 50%; z-index: 1040;
  transform: translateY(-50%) rotate(180deg); writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 10px;
  background: var(--gold-grad); color: #1a1400; border: 0; font-weight: 700; font-size: .9rem; letter-spacing: .06em;
  padding: 20px 12px; border-radius: 0 12px 12px 0; box-shadow: -6px 0 22px rgba(0, 0, 0, .18);
}
.side-enquire i { transform: rotate(90deg); font-size: 1.1rem; }
.side-enquire:hover { filter: brightness(1.05); }
@media (max-width: 991.98px) { .side-enquire { display: none; } }

.float-call {
  position: fixed; right: 22px; bottom: 24px; z-index: 1040; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; background: var(--gold-grad); color: #1a1400; font-size: 1.5rem;
  box-shadow: var(--shadow-gold); transition: transform .3s;
}
.float-call::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--gold); animation: ripple 2s infinite;
}
.float-call i { animation: ring 2.4s infinite; }
.float-call:hover { color: #1a1400; transform: scale(1.08); }
@keyframes ripple { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes ring {
  0%, 60%, 100% { transform: rotate(0); }
  65%, 75%, 85% { transform: rotate(-15deg); }
  70%, 80%, 90% { transform: rotate(15deg); }
}

.back-top {
  position: fixed; right: 30px; bottom: 96px; z-index: 1039; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; background: var(--charcoal); color: var(--gold); border: 1px solid rgba(212, 175, 55, .5);
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s;
}
.back-top.show { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { background: var(--gold); color: #111; }

/* Mobile CTA bar */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1045; display: flex;
  background: var(--charcoal); border-top: 2px solid var(--gold); box-shadow: 0 -8px 24px rgba(0, 0, 0, .25);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-cta a, .mobile-cta button {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 4px; min-height: 58px; color: #fff; font-size: .95rem; font-weight: 600;
  background: transparent; border: 0;
}
.mobile-cta i { font-size: 1.2rem; color: var(--gold); }
.mobile-cta button { background: var(--gold-grad); color: #1a1400; }
.mobile-cta button i { color: #1a1400; }
@media (max-width: 991.98px) {
  body { padding-bottom: 58px; }
  .float-call { bottom: 76px; right: 16px; width: 52px; height: 52px; font-size: 1.35rem; }
  .back-top { bottom: 138px; right: 21px; }
}

/* ---------- Modal ---------- */
.enquiry-modal { border: 0; border-radius: 22px; overflow: hidden; box-shadow: 0 30px 80px rgba(0, 0, 0, .35); }
.modal-head {
  display: flex; align-items: center; gap: 14px; padding: 22px 24px;
  background: linear-gradient(135deg, #1b1b1b, #0d0d0d); border-bottom: 3px solid var(--gold); position: relative;
}
.modal-head img { width: 54px; height: auto; background: #fff; border-radius: 10px; padding: 4px; }
.modal-head .modal-title { color: var(--gold); font-size: 1.35rem; margin: 0; }
.modal-head p { color: rgba(255, 255, 255, .72); margin: 0; font-size: .88rem; }
.modal-head .btn-close { position: absolute; top: 18px; right: 18px; }
.enquiry-modal .modal-body { padding: 24px; }
.modal-alt { text-align: center; margin: 14px 0 0; font-size: .9rem; }
.modal-alt a { font-weight: 600; }
.modal-backdrop.show { opacity: .7; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.reveal-left { transform: translateX(-40px); }
.reveal.reveal-right { transform: translateX(40px); }
.reveal.visible { opacity: 1; transform: none; }
@media (max-width: 991.98px) { .reveal.reveal-left, .reveal.reveal-right { transform: translateY(40px); } .reveal.visible { transform: none; } }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .carousel-item .hero-eyebrow, .carousel-item .hero-title, .carousel-item .hero-text, .carousel-item .hero-btns { opacity: 1 !important; transform: none !important; }
  .hero-bg { transform: none; }
}
