/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Soligant';
  font-style: normal;
  font-weight: 400;
  src: local('Soligant'), url('https://fonts.cdnfonts.com/s/64358/Soligant-d98nK.woff') format('woff');
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Soligant', 'Century Gothic', CenturyGothic, sans-serif;
}

:root {
  --gold: #947550;
  --gold-light: #947550;
  --gold-dark: #947550;
  --navy: #0B244A;
  --navy-dark: #0B244A;
  --navy-mid: #0B244A;
  --white: #ffffff;
  --off-white: #f9f5ee;
  --text: #2d2d2d;
  --text-muted: #666;
  --border: #e0d4b0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Century-Gothic', sans-serif;
}
.sidebar-list li{
    font-family: var(--font-body);
}
body {
  background-image: url("./bg-pattern.webp");
  background-attachment: fixed;
  background-size: cover;
}

p,
li,
span,
a {
  font-family: var(--font-body);
}

::-webkit-scrollbar {
  width: 2px;
  height: 12px;
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  /* font-family: 'Inter', sans-serif; */
  color: var(--text);
  /* background: var(--white); */
  /*line-height: 1.7;*/
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--navy-dark);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  font-size: 0.95rem;
  padding: 13px;
  border-radius: 8px;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.4);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  /* border-bottom: 1px solid rgba(201, 168, 76, 0.2); */
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  background: var(--off-white);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.mb-0 {
  margin-bottom: 0px;
}

.my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 52px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  /* min-height: 100vh; */
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, #243050 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero-image-wrap {
  position: relative;
  flex-shrink: 0;
  width: 390px;
}

.hero-img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.25) 0%, transparent 70%);
  filter: blur(20px);
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 6px;
  padding: 8px 16px;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.hero-badge-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.hero-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-city {
  display: block;
  font-size: clamp(3rem, 7vw, 5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), #fff8dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero-tags {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  margin-bottom: 36px;
}

.htag {
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ===== SECTION LABEL ===== */
.section-label {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 28px;
  text-transform: uppercase;
}

/* ===== LOCATION ===== */
.location-section {
  /* background: var(--off-white); */
  padding: 60px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.map-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  /* border: 1px solid var(--border); */
}

.map-city {
  font-size: calc(1.3rem + 5px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.map-address {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.map-contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.map-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
}

.map-contact-item:hover {
  color: var(--gold-dark);
}

.map-embed {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}

.open-maps-link {
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 600;
}

.open-maps-link:hover {
  color: var(--navy);
}

/* FORM */
.contact-form-card {
  background: var(--navy-dark);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.form-group input,
.form-group select {
  padding: 11px 14px;
  border-radius: 7px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.form-group select option {
  background: var(--navy-dark);
  color: var(--white);
}

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-check label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  cursor: pointer;
}

.form-success {
  display: none;
  text-align: center;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.form-success.show {
  display: block;
  animation: fadeIn 0.4s;
}

/* ===== CONTENT ===== */
.content-section {
  padding: 70px 0;
  /* background: var(--white); */
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* .content-article {} */

.content-h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 12px;
}

.content-h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.content-h3 {
  /* font-size: 1.1rem; */
  font-weight: 700;
  color: var(--navy);
  margin: 26px 0 10px;
}

.content-article p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.content-list {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}

.content-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 5px 0 5px 20px;
  position: relative;
}

.content-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.sub_text{
    font-size:14px;
    font-weight:400;
}
/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 84px;
}

.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.sidebar-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  /* margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border); */
}

.sidebar-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 5px 0;
}

.gold-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: rgba(201, 168, 76, 0.3);
}

.gold-rate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
  transition: background 0.25s, padding-left 0.25s;
}

.gold-rate-item::after {
  content: '→';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  opacity: 0;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  transition: opacity 0.25s, transform 0.25s;
}

.gold-rate-item:hover {
  background: rgba(255, 255, 255, 0.06);
  padding-left: 18px;
}

.gold-rate-item:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.gold-price {
  font-weight: 400;
  color: var(--gold-light);
  font-size: 0.78rem;
}

.gold-rate-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 10px;
}

.sidebar-cta {
  text-align: center;
  justify-content: center;
  padding: 13px;
  font-size: 0.9rem;
}

/* ===== TAGS ===== */
.tags-section {
  padding: 50px 0;
  /* background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); */
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tag {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--navy);
  padding: 7px 16px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.tag:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.tag-sm {
  font-size: 0.76rem;
  padding: 5px 13px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 56px 24px 40px;
}

.logo-footer .logo-main {
  font-size: 1rem;
}

.logo-footer img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 16px;
  line-height: 1.7;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-contact-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.popular-search {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 24px;
}

.popular-search .section-label {
  color: rgba(255, 255, 255, 0.3);
}

.popular-search .tag {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
}

.popular-search .tag:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 24px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-credit {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.footer-credit-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-credit-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 20px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.chat-bubble {
  position: fixed;
  bottom: 88px;
  left: 18px;
  z-index: 998;
  animation: bubblePop 1s ease-out 2s both;
}

.chat-bubble-inner {
  background: var(--white);
  border-radius: 12px 12px 12px 0;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
  white-space: nowrap;
}

@keyframes bubblePop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-card {
    flex: 1;
    min-width: 240px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav,
  .header-actions {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 20px 24px;
    gap: 4px;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .nav.open .nav-link {
    font-size: 0.9rem;
    padding: 10px 0;
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 60px;
  }

  .hero-image-wrap {
    width: 260px;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sidebar {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-city {
    font-size: 2.8rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-num {
    font-size: 1.5rem;
  }
}

.Sticky_Projects {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--border);
  border-color: rgba(201, 168, 76, 0.2);
}

.Sticky_Projects h4 {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  font-size: 1.25rem;
}

.gold-card .gold-rate-item p {
  font-size: 1.05rem;
}

.gold-card .gold-rate-item .gold-price {
  font-size: 0.95rem;
}

.Sticky_Projects span {
  color: var(--gold);
}

.special_char {
  font-weight: 100;
  font-family: 'Century Gothic', CenturyGothic, sans-serif;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 22px;
  z-index: 998;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-dark);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.35s, transform 0.35s, background 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 6px 20px rgba(148, 117, 80, 0.5);
  transform: translateY(-3px);
}

/* ===== STICKY ENQUIRE BUTTON (right centre, vertical tab) ===== */
.sticky-enquire-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  color: var(--white);
  border: none;
  padding: 22px 12px;
  border-radius: 10px 0 0 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  box-shadow: -4px 0 20px rgba(148, 117, 80, 0.45);
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  white-space: nowrap;
  line-height: 1;
}

.sticky-enquire-btn:hover {
  background: linear-gradient(180deg, var(--navy), var(--navy-mid));
  box-shadow: -6px 0 28px rgba(11, 36, 74, 0.5);
  padding: 26px 14px;
}

.sticky-enquire-text {
  display: block;
}

/* ===== POPUP OVERLAY ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 18, 35, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  /* hidden state */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ===== POPUP MODAL ===== */
.popup-modal {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  /* hidden state: slightly shrunk */
  transform: scale(0.9) translateY(24px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-overlay.open .popup-modal {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(0, 0, 0, 0.07);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 1;
}

.popup-close:hover {
  background: var(--gold);
  color: var(--white);
}

.popup-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 30px 28px 22px;
  text-align: center;
}

.popup-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.popup-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 5px;
  font-family: 'Soligant', sans-serif;
}

.popup-subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Popup form uses light theme */
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 28px 28px;
  background: var(--white);
}

.popup-form .form-group label {
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
}

.popup-form .form-group input {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}

.popup-form .form-group input::placeholder {
  color: rgba(0, 0, 0, 0.28);
}

.popup-form .form-group input:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(148, 117, 80, 0.12);
}

.popup-form .form-group input.input-error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.readonly-field {
  background: #f0ece4 !important;
  color: var(--gold-dark) !important;
  font-weight: 600 !important;
  cursor: not-allowed;
  border-style: dashed !important;
}

.req {
  color: #e53e3e;
  font-size: 0.75rem;
}

.field-error {
  display: block;
  font-size: 0.74rem;
  color: #e53e3e;
  min-height: 16px;
  margin-top: -4px;
}

.popup-submit-btn {
  margin-top: 4px;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  padding: 14px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  color: var(--white);
  border-radius: 9px;
}

.popup-submit-btn:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(148, 117, 80, 0.4);
}

.popup-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 480px) {
  .popup-modal {
    border-radius: 14px;
  }

  .popup-header {
    padding: 24px 20px 18px;
  }

  .popup-form {
    padding: 20px 20px 24px;
  }

  .sticky-enquire-btn {
    font-size: 0.7rem;
    padding: 10px 16px;
  }
}
/* ===== FAQ ACCORDION ===== */
.faq-list {
  margin-top: 16px;
}
.faq-item {
  border-bottom: 1px solid #e4dcd0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 4px;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-icon {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
  display: inline-block;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-item.open .faq-question {
  color: var(--gold);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 4px;
  color: #555;
  font-size: 0.95rem;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 4px 20px;
}
.faq-answer p {
  margin: 0;
}
.faq-question span {
  font-weight: 400;
  font-size: 0.9rem;
  font-family: var(--font-body);
}