:root {
  --bg-dark: #0b0b0d;
  --bg-dark-2: #121215;
  --text-light: #f5f1e8;
  --text-muted: #b7b0a1;
  --gold: #b89a67;
  --gold-light: #d7bc8c;
  --border: rgba(255, 255, 255, 0.08);
  --white: #ffffff;
  --transition: all 0.35s ease;
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-space {
  padding: 100px 0;
}

.section-tag {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-light);
}

.section-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 14px;
}

/* Loader */
#loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  letter-spacing: 6px;
  color: var(--gold-light);
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

/* Topbar */
.topbar {
  position: relative;
  z-index: 1031;
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar a {
  color: #ddd;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.topbar a:hover {
  color: var(--gold-light);
}

/* Navbar */
.custom-navbar {
  top: 40px;
  padding: 18px 0;
  transition: var(--transition);
  z-index: 1030;
}

.custom-navbar.scrolled {
  top: 0;
  background: rgba(7, 7, 8, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.navbar-brand {
  color: var(--white);
  font-weight: 600;
}

.brand-mark {
  color: var(--gold-light);
  font-size: 18px;
}

.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  letter-spacing: 2px;
}
.brand-text img{
    height: 50px;
    width: 100%;
}
.footer-brand img {
    height: 62px;
    width: 57%;
}

.nav-link {
  color: rgba(255,255,255,0.82) !important;
  margin: 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light) !important;
}

.btn-gold {
  background: var(--gold) !important;
  color: #111 !important;
  border: 1px solid var(--gold) !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  border-radius: 0 !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 12px 24px;
  border-radius: 0;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #111;
}

.btn-lg-custom {
  padding: 14px 30px;
  border-radius: 0;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Side actions */
.side-actions {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  flex-direction: column;
  gap: 12px;
}

.side-actions a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  color: var(--gold-light);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.side-actions a:hover {
  background: var(--gold);
  color: #111;
}

/* Hero */
.hero-section {
  min-height: 100vh;
  position: relative;
  background: url('../images/hero-bg.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.35)),
    linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 760px;
  padding-top: 90px;
}

.hero-subtitle {
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: 0.95;
  margin-bottom: 25px;
  color: var(--white);
}

.hero-desc {
  max-width: 600px;
  color: #ddd4c5;
  font-size: 16px;
  line-height: 1.8;
}

.hero-bottom-card {
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 130px;
  background: rgba(10, 10, 12, 0.75);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 24px 28px;
}

.hero-stat h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.hero-stat p {
  margin: 0;
  color: #c7c0b3;
  font-size: 14px;
}

.mini-link {
  color: var(--gold-light);
  font-size: 14px;
}

.mini-link:hover {
  color: var(--white);
}

/* Image frame */
.image-frame {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px;
  background: #0f0f12;
}

.image-frame img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
}

/* Services */
.services-section {
  background: linear-gradient(to bottom, #0c0c0e, #111114);
}

.service-card {
  background: #141418;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(184,154,103,0.35);
}

.service-img {
  overflow: hidden;
  height: 250px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-body {
  padding: 24px;
}

.service-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  margin-bottom: 12px;
}

.service-body p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-body a {
  color: var(--gold-light);
  font-size: 14px;
}

.service-body a:hover {
  color: var(--white);
}

/* Offices */
.offices-section {
  background: #0b0b0d;
}

.office-tabs {
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.office-tab {
  background: transparent;
  border: 1px solid var(--border);
  color: #d8d0c2;
  padding: 10px 20px;
  cursor: pointer;
  transition: var(--transition);
}

.office-tab.active,
.office-tab:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

.office-panel {
  display: none;
  animation: fadeUp 0.45s ease;
}

.office-panel.active {
  display: block;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.office-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.office-content {
  padding: 10px 0;
}

.office-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  margin-bottom: 16px;
}

.office-content p,
.office-content li {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 15px;
}

.office-content ul {
  margin-top: 15px;
}

.office-content li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.office-content li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 11px;
}

/* Luxury Cards */
.luxury-links {
  background: linear-gradient(to bottom, #111114, #0c0c0e);
}

.luxury-card {
  background: #141418;
  border: 1px solid var(--border);
  padding: 28px;
  height: 100%;
  transition: var(--transition);
}

.luxury-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184,154,103,0.35);
}

.luxury-card span {
  display: inline-block;
  color: var(--gold-light);
  font-size: 14px;
  margin-bottom: 16px;
}

.luxury-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  margin-bottom: 12px;
}

.luxury-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* News */
.news-card {
  background: #141418;
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.news-img {
  height: 260px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.news-card:hover .news-img img {
  transform: scale(1.08);
}

.news-body {
  padding: 24px;
}

.news-date {
  display: inline-block;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.news-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.news-body a {
  color: var(--gold-light);
  font-size: 14px;
}

.news-body a:hover {
  color: var(--white);
}

/* CTA */
.cta-section {
  padding-bottom: 100px;
}

.cta-box {
  background: linear-gradient(135deg, #17171b, #0f0f12);
  border: 1px solid var(--border);
  padding: 40px;
}

.cta-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 10px;
}

.cta-box p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Footer */
.footer-section {
  background: #080809;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 14px;
}

.footer-section h5 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 16px;
  letter-spacing: 0.5px;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--gold-light);
}

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

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  color: var(--gold-light);
}

.social-links a:hover {
  background: var(--gold);
  color: #111;
}

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

.footer-bottom p,
.footer-bottom a {
  color: #8d877c;
  font-size: 13px;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* Back to top */
#backToTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border: none;
  background: var(--gold);
  color: #111;
  cursor: pointer;
  display: none;
  z-index: 999;
}

#backToTop.show {
  display: block;
}
.hero-btns{
    margin-top:170px;
    margin-bottom: 50px;
}

/* =========================================
   FORM RESPONSE MESSAGES
========================================= */
.gj-form-message {
  min-height: 24px;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
}

.gj-form-message.success-message {
  color: #d7bc8c;
  background: rgba(184, 154, 103, 0.08);
  border: 1px solid rgba(184, 154, 103, 0.18);
  padding: 12px 16px;
  margin-top: 16px;
}

.gj-form-message.error-message {
  color: #ffb3b3;
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 80, 80, 0.18);
  padding: 12px 16px;
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 991px) {
  .custom-navbar {
    top: 0;
    background: rgba(7, 7, 8, 0.95);
    backdrop-filter: blur(10px);
  }

  .topbar {
    display: none;
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero-bottom-card {
    position: static;
    margin-top: 40px;
  }

  .hero-section {
    padding-bottom: 40px;
  }

  .section-space {
    padding: 70px 0;
  }

  .office-image {
    height: 320px;
  }

  .image-frame img {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    line-height: 1.05;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-bottom-card {
    padding: 20px;
  }

  .service-img,
  .news-img {
    height: 220px;
  }

  .office-content h3 {
    font-size: 30px;
  }

  .cta-box {
    padding: 25px;
  }
}


/* =========================
   LEAD FORM SECTION
========================= */
.lead-form-section {
  background:
    linear-gradient(to bottom, #0c0c0e, #111114);
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,154,103,0.12), transparent 70%);
  pointer-events: none;
}

.lead-form-wrapper {
  background: linear-gradient(135deg, rgba(20,20,24,0.95), rgba(11,11,13,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.lead-info-panel {
  background:
    linear-gradient(180deg, rgba(18,18,21,0.95), rgba(10,10,12,0.98));
  border: 1px solid rgba(255,255,255,0.06);
  padding: 35px 28px;
  height: 100%;
}

.lead-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: var(--text-light);
  margin-bottom: 18px;
}

.lead-main-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 28px;
}

.lead-contact-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(184,154,103,0.18);
  background: rgba(255,255,255,0.02);
  margin-bottom: 28px;
}

.lead-contact-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: grid;
  place-items: center;
  background: rgba(184,154,103,0.12);
  border: 1px solid rgba(184,154,103,0.25);
  color: var(--gold-light);
  font-size: 22px;
}

.lead-contact-label {
  display: block;
  color: #b7ae9d;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.lead-contact-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.lead-contact-note {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 0;
}

.lead-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lead-highlight-item:last-child {
  border-bottom: 0;
}

.lead-highlight-item span {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184,154,103,0.35);
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 1px;
}

.lead-highlight-item p {
  margin: 0;
  color: #d6cfc1;
  font-size: 14px;
}

/* Form box */
.lead-form-box {
  background: #141418;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 35px 28px;
  height: 100%;
}

.lead-form-top {
  margin-bottom: 22px;
}

.lead-form-top h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  margin-bottom: 8px;
  color: var(--text-light);
}

.lead-form-top p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
}

/* Labels */
.lead-label {
  display: block;
  font-size: 12px;
  color: #b7ae9d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* Inputs */
.lead-input,
.lead-input.form-control,
.lead-input.form-select {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  color: #f5f1e8 !important;
  border-radius: 0 !important;
  min-height: 58px;
  box-shadow: none !important;
  font-size: 14px;
  padding-left: 16px;
  padding-right: 16px;
}

.lead-input:focus,
.lead-input.form-control:focus,
.lead-input.form-select:focus {
  border-color: rgba(184,154,103,0.45) !important;
  background: rgba(255,255,255,0.04) !important;
  box-shadow: 0 0 0 0.15rem rgba(184,154,103,0.08) !important;
  color: #fff !important;
}

.lead-input::placeholder {
  color: #9f988b !important;
}

/* Floating labels */
.custom-floating > .form-control,
.custom-floating > .form-control-plaintext {
  padding: 1.6rem 1rem 0.6rem 1rem;
}

.custom-floating > label {
  color: #9f988b;
  padding: 1rem 1rem;
  font-size: 14px;
}

.custom-floating > .form-control:focus ~ label,
.custom-floating > .form-control:not(:placeholder-shown) ~ label,
.custom-floating > .form-control-plaintext ~ label,
.custom-floating > .form-select ~ label {
  color: var(--gold-light);
}

.custom-floating > .form-control:focus ~ label::after,
.custom-floating > .form-control:not(:placeholder-shown) ~ label::after {
  background: transparent !important;
}

.lead-textarea {
  min-height: 130px !important;
  resize: none;
}

/* Select wrap */
.custom-select-wrap {
  width: 100%;
}

.lead-input.form-select {
  cursor: pointer;
}

/* Date icon color improvement */
input[type="date"].lead-input::-webkit-calendar-picker-indicator {
  filter: invert(0.8);
  cursor: pointer;
}

/* Submit */
.lead-submit-btn {
  min-height: 58px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Message */
.form-message {
  font-size: 14px;
  min-height: 24px;
  color: var(--gold-light);
}


/* Dropdown options color */
.lead-input.form-select option {
  color: #111 !important;      /* option text color */
  background-color: var(--gold) !important;  /* option bg color */
}
/*
/* Responsive */
@media (max-width: 991px) {
  .lead-form-wrapper {
    padding: 20px;
  }

  .lead-info-panel,
  .lead-form-box {
    padding: 24px 20px;
  }

  .lead-contact-number {
    font-size: 26px;
  }

  .lead-form-top h3 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .lead-main-title {
    font-size: 2rem;
  }

  .lead-contact-box {
    flex-direction: row;
    align-items: flex-start;
  }

  .lead-contact-number {
    font-size: 22px;
  }

  .lead-form-top h3 {
    font-size: 26px;
  }

  .lead-submit-btn {
    font-size: 13px;
    letter-spacing: 0.5px;
  }
}
