/* ============================================
   SECOND opnion – REAL ESTATE WEBSITE
   Color Palette inspired by Logo:
   Gold #C9A84C, Dark Brown #4A2500, Cream #FAF6EF
   ============================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A07830;
  --brown: #4A2500;
  --brown-mid: #6B3A0F;
  --cream: #FAF6EF;
  --cream-dark: #F0E8D8;
  --white: #FFFFFF;
  --text-dark: #2A1A00;
  --text-mid: #5A4030;
  --text-light: #8A7060;
  --shadow: 0 8px 40px rgba(74, 37, 0, 0.12);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
#mainNav {
  background: rgba(250, 246, 239, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 12px 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

#mainNav.scrolled {
  background: rgba(250, 246, 239, 0.98);
  padding: 8px 0;
  box-shadow: 0 4px 20px rgba(74, 37, 0, 0.1);
}

.nav-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--brown) !important;
  letter-spacing: 0.5px;
  padding: 8px 18px !important;
  position: relative;
  transition: color 0.3s;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active-link::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover {
  color: var(--gold-dark) !important;
}

.btn-enquiry {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--white) !important;
  border-radius: 30px !important;
  padding: 10px 28px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s !important;
}

.btn-enquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.5) !important;
}

.btn-enquiry::after {
  display: none !important;
}

.toggler-icon {
  color: var(--brown);
  font-size: 1.3rem;
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}

.dropdown-menu {
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: var(--cream);
  padding: 8px;
  min-width: 200px;
}

.dropdown-item {
  border-radius: 8px;
  font-weight: 600;
  color: var(--brown);
  font-size: 0.9rem;
  padding: 10px 16px;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-dark);
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #1a0e00;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 37, 0, 0.85) 0%, rgba(74, 37, 0, 0.4) 60%, rgba(201, 168, 76, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 60px 0 100px;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.25);
  border: 1px solid rgba(201, 168, 76, 0.6);
  color: var(--gold-light);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 24px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 42vh;
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
  transition: all 0.3s;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201, 168, 76, 0.55);
  color: var(--white);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 34px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}

/* ===== JOURNEY BAR ===== */
.journey-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(74, 37, 0, 0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  z-index: 10;
}

.journey-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid rgba(201, 168, 76, 0.2);
  transition: background 0.3s;
}

.journey-step:last-child {
  border-right: none;
}

.journey-step:hover {
  background: rgba(201, 168, 76, 0.08);
}

.jstep-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.journey-step h6 {
  color: var(--gold-light);
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.journey-step p {
  color: rgba(255, 255, 255, 0.65);
  margin: 2px 0 0;
  font-size: 0.78rem;
}

/* ===== SECTION COMMON ===== */
.section-pad {
  padding: 90px 0;
}

.bg-cream {
  background: var(--cream);
}

.section-tag {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.25;
}

.section-desc {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: var(--cream);
}

.process-video-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.rounded-video {
  display: block;
  border-radius: 20px;
}

.vid-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(74, 37, 0, 0.9);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.4);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pstep {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pstep-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  min-width: 52px;
  opacity: 0.7;
}

.pstep-body h5 {
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
}

.pstep-body p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
  padding: 40px 0;
}

.stat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.35s, box-shadow 0.35s;
  background: var(--white);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(74, 37, 0, 0.2);
}

.sc-img {
  height: 220px;
  overflow: hidden;
}

.sc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

/* --- UPDATED CSS BELOW --- */

.sc-body {
  padding: 28px;
  /* Added Flexbox to control layout without changing HTML */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.sc-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 16px;
  margin-right: 15px;
  /* Added spacing between icon and text */
}

.sc-body h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 16px;
  /* Matched icon margin */
  flex: 1;
  /* Makes the heading take up the remaining space on the line */
}

.sc-body p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  width: 100%;
  /* Forces paragraph to start on a new line */
}

.sc-link {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  width: 100%;
  /* Forces link to start on a new line */
}

.sc-link i {
  transition: transform 0.3s;
}

.service-card:hover .sc-link i {
  transform: translateX(5px);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--cream);
}

.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid transparent;
  transition: all 0.3s;
  height: 100%;
}

.testi-card.featured {
  border-left-color: var(--gold);
  background: linear-gradient(135deg, #FFFBF2, #FFF8E8);
}

.testi-card:hover {
  transform: translateY(-5px);
  border-left-color: var(--gold);
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-card p {
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testi-author strong {
  display: block;
  color: var(--brown);
  font-weight: 700;
}

.testi-author span {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
  position: relative;
}

.cta-banner .btn-gold {
  background: var(--white);
  color: var(--brown);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  position: relative;
}

.cta-banner .btn-gold:hover {
  background: var(--cream);
  color: var(--brown);
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 76px;
}

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

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 37, 0, 0.8) 0%, rgba(74, 37, 0, 0.5) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 0 clamp(20px, 5vw, 80px);
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-top: 8px;
}

.page-hero-content .section-tag {
  color: var(--gold-light);
}

/* ===== ABOUT ===== */
.about-img-grid {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
  height: 420px;
  object-fit: cover;
}

.about-img-sm {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brown);
  font-weight: 600;
  font-size: 0.9rem;
}

.about-feat i {
  color: var(--gold);
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-6px);
}

.val-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.value-card h5 {
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.team-card {
  text-align: center;
}

.team-img-wrap {
  width: 140px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h5 {
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.team-card span {
  color: var(--text-light);
  font-size: 0.85rem;
}

.team-scroll-wrapper {
  overflow: hidden;
  padding-bottom: 20px;
  width: 100%;
  position: relative;
  /* hide scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.team-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.team-scroll-track {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
}

.team-scroll-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

.team-card-wrap {
  flex: 0 0 auto;
  width: 180px;
}

/* ===== SERVICES PAGE ===== */
.service-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stab {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold-dark);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stab.active,
.stab:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
}

/* --- UPDATED CSS BELOW --- */

.svc-feat-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: var(--white);
  transition: all 0.3s;
  height: 100%;

  /* Added Flexbox to align icon and heading */
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.svc-feat-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.svc-feat-card i {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 10px;
  margin-right: 12px;
  /* Added space between icon and heading */
  /* display: block; removed so it can sit inline */
}

.svc-feat-card h6 {
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 10px;
  /* Matched icon margin */
  flex: 1;
  /* Makes the heading take up the remaining space on the line */
}

.svc-feat-card p {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
  width: 100%;
  /* Forces the paragraph to jump to the next line */
}

.rounded-img {
  border-radius: 20px;
}

.shadow-gold {
  box-shadow: var(--shadow-gold);
}

/* ===== BENEFITS PAGE ===== */
/* ===== BENEFITS PAGE ===== */
.benefit-card {
  padding: 32px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  transition: all 0.3s;
  height: 100%;

  /* Added Flexbox to align icon and heading */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.benefit-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.3));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.4rem;
  margin-bottom: 16px;
  margin-right: 16px;
  /* Added space between icon and heading */
}

.benefit-card h5 {
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 16px;
  /* Matched icon margin */
  flex: 1;
  /* Makes the heading take up the remaining space on the line */
}

.benefit-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  width: 100%;
  /* Forces the paragraph to jump to the next line */
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.how-step span {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-weight: 900;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.how-step h6 {
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
}

.how-step p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* ===== ENQUIRY PAGE ===== */
.enquiry-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 60px rgba(74, 37, 0, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.enquiry-form-wrap label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
  display: block;
}

.enquiry-form-wrap .form-control,
.enquiry-form-wrap .form-select {
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  background: var(--cream);
}

.enquiry-form-wrap .form-control:focus,
.enquiry-form-wrap .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  outline: none;
}

.enquiry-form-wrap .btn-gold {
  border-radius: 12px;
  padding: 15px 30px;
  font-size: 1rem;
}

.form-success {
  text-align: center;
  padding: 60px 30px;
}

.form-success i {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.form-success h4 {
  font-family: 'Playfair Display', serif;
  color: var(--brown);
  font-weight: 700;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-mid);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-item i {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.ci-item strong {
  display: block;
  color: var(--brown);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.ci-item a,
.ci-item span {
  color: var(--text-mid);
  font-size: 0.9rem;
  text-decoration: none;
}

.ci-item a:hover {
  color: var(--gold-dark);
}

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

.soc-btn {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.soc-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.soc-btn.sm {
  width: 38px;
  height: 38px;
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */

.main-footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 0;
}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.main-footer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.footer-head {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}

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

/* CONTACT */

.contact-footer li {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 0.88rem;

  line-height: 1.55;

  margin-bottom: 10px;
}

.contact-footer li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-footer li span {
  color: rgba(255, 255, 255, 0.65);
}

/* FOOTER BOTTOM */

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

  padding: 20px 0;

  text-align: center;

  margin-top: 40px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-bottom .fa-heart {
  color: var(--gold);
}

/* ===== DEVELOPER LINK ===== */

.developer-link {
  color: var(--gold-light);
  text-decoration: none;
  transition: 0.3s ease;
}

.developer-link:hover {
  color: #ffffff;
}

/* ===== QR CODE ===== */

.qr-box {
  margin-top: 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;

  background: rgba(255, 255, 255, 0.04);

  padding: 14px;

  border-radius: 14px;
}

.qr-left {
  flex: 1;
}

.qr-right {
  flex-shrink: 0;
}

.footer-qr {
  width: 110px;
  height: 110px;

  background: #fff;

  padding: 8px;

  border-radius: 12px;

  object-fit: cover;

  transition: 0.3s ease;
}

.footer-qr:hover {
  transform: scale(1.05);
}

.qr-text {
  margin-top: 8px;

  font-size: 0.82rem;

  line-height: 1.5;

  color: rgba(255, 255, 255, 0.6);
}

/* ===== MOBILE ===== */

@media (max-width: 576px) {

  .qr-box {
    flex-direction: column;
    align-items: flex-start;
  }

}

/* ===== FLOATING BUTTONS ===== */
.float-btn {
  position: fixed;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 9999;
  border: none;
  text-decoration: none;
}

.whatsapp-btn {
  background: #25D366;
  color: var(--white);
  bottom: 30px;
  right: 30px;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background: #1ebe5c;
  color: var(--white);
}

.scroll-top-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  bottom: 92px;
  right: 30px;
  opacity: 0;
  pointer-events: none;
}

.scroll-top-btn.show {
  opacity: 1;
  pointer-events: all;
}

.scroll-top-btn:hover {
  transform: scale(1.1) translateY(-2px);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-content>* {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-badge {
  animation-delay: 0.2s;
}

.hero-title {
  animation-delay: 0.4s;
}

.hero-sub {
  animation-delay: 0.6s;
}

.hero-cta-row {
  animation-delay: 0.8s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .about-img-sm {
    display: none;
  }

  .journey-step {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  }

  .journey-step:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
  }

  .hero-video-wrap {
    position: relative;
    margin-top: 76px;
    /* Offset to start below navbar */
    width: 100%;
    height: auto;
  }

  .hero-video {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 37, 0, 0.85) 0%, rgba(74, 37, 0, 0.4) 60%, rgba(201, 168, 76, 0.15) 100%);
  }

  .hero-content {
    position: absolute;
    top: 90px;
    /* Offset to fully clear mobile navbar logo/padding */
    left: 0;
    right: 0;
    padding: 30px 16px 0;
    /* Add top spacing from navbar bottom */
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    width: 100%;
    margin: 0 auto;
    z-index: 10;
  }

  .hero-badge {
    font-size: clamp(10px, 2.8vw, 13px) !important;
    padding: 3px 12px !important;
    letter-spacing: 1px !important;
    margin-bottom: 12px !important;
  }

  .hero-cta-row {
    margin-top: 22vw;
    /* Proportional vertical gap to fit below video text */
    display: flex;
    flex-direction: row !important;
    gap: 12px;
    justify-content: center;
    width: 100%;
    flex-wrap: nowrap;
  }

  .hero-cta-row .btn-gold,
  .hero-cta-row .btn-ghost {
    padding: 6px 12px !important;
    font-size: clamp(0.68rem, 2.6vw, 0.78rem) !important;
    width: auto !important;
    white-space: nowrap;
    text-align: center;
  }

  .journey-bar {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    background: rgba(74, 37, 0, 0.95);
    z-index: 10;
  }

  .section-pad {
    padding: 60px 0;
  }

  .enquiry-form-wrap {
    padding: 28px 20px;
  }

  .page-hero {
    height: 280px;
  }

  .page-hero-content {
    padding: 0 20px;
  }

  .about-img-main {
    height: 280px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
  }

  .scroll-top-btn {
    bottom: 76px;
    right: 20px;
  }
}