/* ==========================================================================
   TAMARAI HOMES - MODERN REBUILD STYLESHEET
   Clean, Responsive, High Performance & Secure Architecture
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  --primary-gold: #b08434;
  --primary-gold-dark: #986d1c;
  --primary-gold-light: #c99c3e;
  --accent-gold: #f2b72c;
  --topbar-bg: #af8534;
  --header-bg: #f6f4e7;
  --text-dark: #000000;
  --text-body: #333333;
  --text-light: #ffffff;
  --border-color: #e2e8f0;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Josefin Sans', sans-serif;
  --font-heading: 'Josefin Sans', sans-serif;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  font-size: 16px;
}

section[id],
#heroSection,
#aboutSection,
#whyChooseSection,
#servicesSection,
#showcaseSlider,
#floorPlansSection,
#architecturalInteriorsSection,
#testimonialsSection,
#gallerySection,
#siteFooter {
  scroll-margin-top: 85px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea {
  font-family: var(--font-primary);
}

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

ul {
  list-style: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  background-color: var(--topbar-bg);
  color: #ffffff;
  padding: 6px 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar-content-group {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-divider {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  font-size: 0.82rem;
}

.top-bar-welcome {
  letter-spacing: 0.2px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  transition: var(--transition);
}

.top-bar-item:hover {
  opacity: 0.85;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
}

/* ==========================================================================
   MAIN HEADER / NAVIGATION
   ========================================================================== */
.main-header {
  background-color: #F5F5DC;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.main-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  min-height: 76px;
}

/* Brand Logo Left */
.header-logo-left {
  display: flex;
  align-items: center;
}

.header-logo-left a {
  display: flex;
  align-items: center;
}

.header-logo-left img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

/* Brand Logo Right */
.header-logo-right {
  display: flex;
  align-items: center;
}

.header-logo-right a {
  display: flex;
  align-items: center;
}

.header-logo-right img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Navigation Menu */
.nav-container {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: #000000;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: #000000;
}

/* Short centered gold dash underline for active menu link matching screenshot */
.nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2.5px;
  background-color: var(--topbar-bg);
  border-radius: 2px;
  margin-top: 3px;
  transition: width 0.25s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 22px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-dark);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  background-image: url('../images/slides/slider-1.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  color: #ffffff;
  padding: 80px 20px 100px;
  overflow: hidden;
}

/* Background Video Playing Automatically */
.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 25, 0.4) 0%,
    rgba(10, 15, 25, 0.48) 50%,
    rgba(10, 15, 25, 0.68) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: heroFadeIn 0.9s ease-out;
}

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

/* Play Video Button */
.play-btn-wrapper {
  margin-bottom: 28px;
}

.play-video-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #1a1e28;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  cursor: pointer;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseRipple 2.2s infinite;
}

.play-video-btn:hover {
  transform: scale(1.1);
  background-color: #ffffff;
}

.play-video-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
  fill: #1a1e28;
}

@keyframes pulseRipple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7), 0 0 0 0 rgba(178, 131, 40, 0.4);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0), 0 0 0 28px rgba(178, 131, 40, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 0 rgba(178, 131, 40, 0);
  }
}

/* Hero Typography */
.hero-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-title .highlight {
  color: var(--accent-gold);
}

.hero-description {
  font-size: 1.08rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  max-width: 680px;
  margin: 0 auto 34px;
  line-height: 1.65;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* CTA Button */
.hero-cta-btn {
  display: inline-block;
  background-color: var(--primary-gold);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 34px;
  border-radius: 4px;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

.hero-cta-btn:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(176, 132, 52, 0.4);
}

/* ==========================================================================
   VIDEO MODAL LIGHTBOX
   ========================================================================== */
.video-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  background-color: #000000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.video-modal-close:hover {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #ffffff;
  transform: scale(1.1);
}

.video-modal-body {
  width: 100%;
  aspect-ratio: 16 / 9;
}

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

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (ON TOP)
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 82px;
  right: 28px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.65);
}

.floating-whatsapp img,
.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .nav-menu {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  /* Hide top bar on mobile/tablet view */
  .top-bar {
    display: none !important;
  }
  
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--header-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(175, 133, 52, 0.2);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    width: 100%;
    font-size: 1.05rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    align-items: flex-start;
  }
  
  .nav-link::after {
    margin-top: 4px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .main-header-inner {
    padding: 10px 8px;
    min-height: 70px;
  }

  .header-logo-left {
    padding-left: 16px;
  }

  .header-logo-left img {
    height: 48px;
  }

  .mobile-toggle {
    margin-right: 12px;
  }

  /* Hide blue partner logo on mobile/tablet screens */
  .header-logo-right {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
  }
}

/* ==========================================================================
   ABOUT / WELCOME SECTION
   ========================================================================== */
.about-section {
  padding: 95px 0;
  position: relative;
  background-color: #ffffff;
}

.about-container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 55px;
  align-items: center;
}

/* Overlapping Images Gallery */
.about-images-wrapper {
  position: relative;
  width: 100%;
  min-height: 520px;
}

.about-img-item {
  position: absolute;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  transition: var(--transition);
}

.about-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-img-item:hover img {
  transform: scale(1.03);
}

/* Top Right Image */
.about-img-top {
  top: 0;
  right: 0;
  width: 72%;
  height: 300px;
  z-index: 1;
}

/* Bottom Left Image */
.about-img-bottom {
  bottom: 0;
  left: 0;
  width: 72%;
  height: 300px;
  z-index: 2;
  border: 5px solid #ffffff;
}

/* Right Content */
.about-content {
  padding-left: 10px;
}

.about-subtitle {
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 600;
  color: #11141a;
  line-height: 1.2;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.about-title span {
  color: var(--primary-gold);
}

.about-text p {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: #525a66;
  line-height: 1.72;
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
  font-weight: 500;
  color: #22262e;
}

/* Action Buttons */
.about-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary-gold {
  background-color: var(--primary-gold);
  color: #ffffff;
  border: 2px solid var(--primary-gold);
  box-shadow: 0 4px 14px rgba(176, 132, 52, 0.25);
}

.btn-primary-gold:hover {
  background-color: var(--primary-gold-dark);
  border-color: var(--primary-gold-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(176, 132, 52, 0.4);
}

.btn-outline-dark {
  background-color: transparent;
  color: #11141a;
  border: 2px solid #11141a;
}

.btn-outline-dark:hover {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(176, 132, 52, 0.25);
}

/* Scroll To Top (BELOW WHATSAPP) */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 33px;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background-color: var(--header-bg);
  border: 1.5px solid var(--primary-gold);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-gold);
  color: #ffffff;
  transform: translateY(-3px);
}

/* Responsive Rules for About Section */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-images-wrapper {
    min-height: 460px;
    max-width: 580px;
    margin: 0 auto;
  }
  
  .about-content {
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 60px 0;
  }

  .about-images-wrapper {
    min-height: 380px;
  }

  .about-img-top,
  .about-img-bottom {
    height: 220px;
    width: 80%;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .floating-whatsapp {
    bottom: 68px;
    right: 20px;
    width: 48px;
    height: 48px;
  }

  .back-to-top {
    bottom: 16px;
    right: 24px;
    width: 40px;
    height: 40px;
  }
}

/* ==========================================================================
   DISCLAIMER POPUP MODAL (INDEX PAGE ONLY)
   ========================================================================== */
.disclaimer-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.disclaimer-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.disclaimer-modal-dialog {
  background-color: #ffffff;
  width: 100%;
  max-width: 640px;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(-24px) scale(0.98);
  transition: transform 0.3s ease;
  border: 1px solid #e2e8f0;
}

.disclaimer-modal-overlay.active .disclaimer-modal-dialog {
  transform: translateY(0) scale(1);
}

.disclaimer-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #edf2f7;
}

.disclaimer-modal-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.disclaimer-close-btn {
  background: transparent;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: #718096;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s, background-color 0.2s;
}

.disclaimer-close-btn:hover {
  color: #1a202c;
  background-color: #f7fafc;
}

.disclaimer-modal-body {
  padding: 20px 24px;
  font-size: 0.93rem;
  color: #4a5568;
  line-height: 1.68;
  max-height: 60vh;
  overflow-y: auto;
}

.disclaimer-modal-body p {
  margin: 0;
}

.disclaimer-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 14px 24px;
  border-top: 1px solid #edf2f7;
  background-color: #ffffff;
}

.btn-agree {
  background-color: #007bff;
  color: #ffffff;
  border: none;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 9px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.btn-agree:hover {
  background-color: #0056b3;
}

.btn-agree:active {
  transform: scale(0.98);
}

@media (max-width: 576px) {
  .disclaimer-modal-dialog {
    max-height: 88vh;
  }
  .disclaimer-modal-header,
  .disclaimer-modal-body,
  .disclaimer-modal-footer {
    padding: 14px 18px;
  }
  .disclaimer-modal-title {
    font-size: 1.2rem;
  }
  .disclaimer-modal-body {
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   WHY CHOOSE TAMARAI ELITE VILLAS SECTION
   ========================================================================== */
.why-choose-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-color: #1a1a1a;
}

.why-choose-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.why-choose-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.why-choose-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
}

.why-choose-card {
  position: relative;
  width: 58%;
  min-width: 520px;
  background-color: #b08434;
  color: #ffffff;
  padding: 65px 55px 65px max(calc((100vw - 1360px) / 2 + 32px), 48px);
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.3);
  border-right: 5px solid #f6f4e7;
  overflow: hidden;
}

.why-choose-watermark {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 65%;
  background-image: url('../images/about-overlay-style2.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  opacity: 0.28;
  pointer-events: none;
}

.why-choose-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.why-choose-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.22;
}

.why-choose-desc {
  font-size: 0.94rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 28px;
  font-weight: 400;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.amenities-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
}

.amenity-item .check-icon {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .why-choose-card {
    width: 68%;
    padding-left: 40px;
  }
}

@media (max-width: 992px) {
  .why-choose-card {
    width: 85%;
    padding: 50px 36px 50px 32px;
  }

  .why-choose-watermark {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .why-choose-card {
    width: 100%;
    min-width: 0;
    border-right: none;
    padding: 40px 24px;
  }

  .why-choose-watermark {
    display: none !important;
  }

  .why-choose-title {
    font-size: 1.85rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================================================
   OUR SPECIAL SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 95px 0 115px;
  background-color: #ffffff;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 600;
  color: #11141a;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-title span {
  color: var(--primary-gold);
}

.title-divider {
  width: 44px;
  height: 2.5px;
  background-color: var(--primary-gold);
  margin: 0 auto;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 30px;
}

.service-card {
  position: relative;
  transition: var(--transition);
}

.service-image-box {
  position: relative;
  width: 100%;
  height: 265px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.service-card:hover .service-image-box img {
  transform: scale(1.06);
}

.service-content-box {
  position: relative;
  width: 84%;
  background-color: #ffffff;
  padding: 22px 20px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
  margin-top: -38px;
  margin-left: 12px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.service-plus-badge {
  position: absolute;
  top: -14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background-color: #f7f4e8;
  color: var(--primary-gold);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  z-index: 10;
  transition: var(--transition);
}

.service-card:hover .service-plus-badge {
  background-color: var(--primary-gold);
  color: #ffffff;
}

.service-card:hover .service-content-box {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 600;
  color: #11141a;
  line-height: 1.35;
  margin: 0;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-content-box {
    width: 90%;
    margin-left: 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   LUXURY SHOWCASE SLIDER SECTION
   ========================================================================== */
.showcase-slider-section {
  position: relative;
  width: 100%;
  background-color: #151922;
  overflow: hidden;
}

.showcase-slider-wrapper {
  position: relative;
  width: 100%;
  min-height: 680px;
  display: flex;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  z-index: 1;
}

.showcase-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  min-height: 680px;
  width: 100%;
  z-index: 2;
}

.showcase-slide-bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  transition: transform 6s ease;
}

.showcase-slide.active .showcase-slide-bg {
  transform: scale(1.04);
}

.slide-bg-1 {
  background-size: cover !important;
  background-position: right center !important;
  background-color: #1a222e !important;
}

.slide-bg-2,
.slide-bg-3 {
  background-size: cover !important;
  background-position: right center !important;
}

.showcase-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 22, 32, 0.95) 0%,
    rgba(17, 22, 32, 0.76) 42%,
    rgba(17, 22, 32, 0.2) 75%,
    rgba(17, 22, 32, 0.04) 100%
  );
  z-index: 2;
}

.showcase-slide-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 125px 32px;
}

.showcase-slide-content {
  max-width: 620px;
  color: #ffffff;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.badge-bar {
  width: 3px;
  height: 16px;
  background-color: var(--primary-gold);
  display: inline-block;
  border-radius: 1px;
}

.badge-text {
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.showcase-subhead {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 4px;
}

.showcase-title {
  font-family: var(--font-heading);
  font-size: 3.35rem;
  font-weight: 600;
  color: #cfa344;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.showcase-tagline {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
}

.showcase-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-slider-gold {
  background-color: #b08434;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 4px;
  border: 1.5px solid #b08434;
  letter-spacing: 0.6px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.btn-slider-gold:hover {
  background-color: #ffffff;
  color: #11141a;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(207, 163, 68, 0.35);
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.slider-arrow:hover {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-prev {
  left: 28px;
}

.slider-arrow-next {
  right: 28px;
}

/* Pagination Dots */
.slider-pagination {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}

.pagination-dot.active {
  width: 26px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--primary-gold);
}

/* Bottom Caption Strip */
.slider-caption-strip {
  background-color: #ffffff;
  padding: 16px 0;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
}

.slider-caption-strip span {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .showcase-slider-wrapper,
  .showcase-slide.active {
    min-height: 480px;
  }

  .showcase-slide-container {
    padding: 60px 20px;
  }

  .showcase-title {
    font-size: 2.35rem;
  }

  .showcase-subhead {
    font-size: 1.05rem;
  }

  .showcase-tagline {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }

  .slider-arrow {
    display: none !important;
  }
}

/* ==========================================================================
   OUR FLOOR PLANS SECTION
   ========================================================================== */
.floor-plans-section {
  padding: 95px 0 105px;
  background-color: #ffffff;
  position: relative;
}

.floor-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 45px;
}

.floor-plan-card {
  position: relative;
  border: 2.5px solid #b08434;
  border-radius: 4px;
  overflow: hidden;
  background-color: #b8cdef;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.floor-plan-card:hover {
  box-shadow: 0 14px 36px rgba(176, 132, 52, 0.3);
  transform: translateY(-4px);
}

.floor-plan-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
  background-color: #b8cdef;
}

.floor-plan-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.floor-plan-card:hover .floor-plan-img-wrap img {
  transform: scale(1.05);
}

/* Gold Semi-transparent Hover Overlay */
.floor-plan-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(184, 142, 60, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 5;
}

.floor-plan-card:hover .floor-plan-overlay {
  opacity: 1;
  visibility: visible;
}

.overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.floor-plan-card:hover .overlay-inner {
  transform: scale(1);
}

.overlay-icon {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-icon svg {
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
}

.overlay-sub {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.overlay-title {
  font-family: var(--font-primary);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.floor-plans-action {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.btn-floor-plans-gold {
  background-color: #af8534;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 36px;
  border-radius: 4px;
  border: 2px solid #af8534;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(175, 133, 52, 0.25);
  cursor: pointer;
  text-align: center;
}

.btn-floor-plans-gold:hover {
  background-color: #8c6722;
  border-color: #8c6722;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(175, 133, 52, 0.35);
}

/* ==========================================================================
   IMAGE LIGHTBOX MODAL FOR FLOOR PLANS
   ========================================================================== */
.image-lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.image-lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-lightbox-content img {
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  background-color: #ffffff;
}

.image-lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.image-lightbox-close:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: rotate(90deg);
}

@media (max-width: 992px) {
  .floor-plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .floor-plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   ARCHITECTURAL DESIGNS & INTERIORS SECTION
   ========================================================================== */
.architectural-interiors-section {
  padding: 85px 0 0;
  background-color: #ffffff;
  position: relative;
  z-index: 10;
  overflow: visible;
}

.arch-interiors-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 10;
}

.arch-image-col {
  position: relative;
  z-index: 12;
}

.arch-image-wrapper {
  position: relative;
  width: 100%;
  height: 560px;
  background-color: #ffffff;
  border: 12px solid #ffffff;
  border-radius: 0;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.16);
  margin-bottom: -110px;
  z-index: 15;
  overflow: hidden;
}

.arch-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.arch-image-wrapper:hover .arch-main-img {
  transform: scale(1.05);
}

.arch-content-col {
  padding-bottom: 75px;
}

.arch-content-inner {
  padding-left: 10px;
}

.arch-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: #11141a;
  line-height: 1.2;
  margin-top: 6px;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.arch-title span {
  color: var(--primary-gold);
}

/* Executive Feature Block */
.arch-feature-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.arch-feature-icon {
  width: 54px;
  height: 54px;
  background-color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(176, 132, 52, 0.3);
}

.arch-feature-text h3 {
  font-family: var(--font-primary);
  font-size: 1.28rem;
  font-weight: 700;
  color: #11141a;
  line-height: 1.35;
  margin: 0;
}

.arch-feature-text h3 span {
  color: var(--primary-gold);
}

/* Checkmarks List */
.arch-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.arch-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.arch-check-icon {
  color: var(--primary-gold);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
  flex-shrink: 0;
}

.arch-check-text {
  font-family: var(--font-primary);
  font-size: 0.98rem;
  color: #555e6c;
  line-height: 1.68;
  font-weight: 400;
}

.arch-bottom-divider {
  width: 100%;
  height: 1px;
  background-color: #eef2f7;
}

@media (max-width: 992px) {
  .architectural-interiors-section {
    padding: 60px 0 40px;
    overflow: hidden;
  }

  .arch-interiors-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .arch-image-wrapper {
    height: 400px;
    max-width: 600px;
    margin: 0 auto 10px;
    border-width: 8px;
  }

  .arch-content-col {
    padding-bottom: 0;
  }

  .arch-content-inner {
    padding-left: 0;
  }

  .arch-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .arch-image-wrapper {
    height: 290px;
    border-width: 6px;
  }

  .arch-title {
    font-size: 1.85rem;
  }

  .arch-feature-text h3 {
    font-size: 1.12rem;
  }
}

/* ==========================================================================
   TESTIMONIALS SECTION ("WHAT OUR CLIENTS SAYING?")
   ========================================================================== */
.testimonials-section {
  position: relative;
  padding: 90px 0 110px;
  background-image: url('../images/bg-image/row-bgimage-4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 5;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 142, 60, 0.92) 0%, rgba(166, 124, 44, 0.92) 100%);
  z-index: 1;
}

.testimonials-container {
  position: relative;
  z-index: 2;
}

.testimonial-subtitle {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.testimonial-main-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.testimonial-divider {
  width: 44px;
  height: 2.5px;
  background-color: #ffffff;
  margin: 0 auto 50px;
  border-radius: 2px;
}

/* Carousel Outer & Track */
.testimonials-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-item {
  flex: 0 0 calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
  display: flex;
  flex-direction: column;
}

/* Speech Bubble */
.testimonial-bubble {
  position: relative;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 32px 28px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
  margin-bottom: 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

.testimonial-bubble::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 36px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 13px solid #ffffff;
}

.testimonial-quote-icon {
  font-family: "Georgia", serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--primary-gold);
  margin-bottom: 6px;
  font-weight: 700;
}

.testimonial-quote-text {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: #525a66;
  line-height: 1.68;
  margin: 0;
  font-weight: 400;
}

/* Author Row */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 16px;
}

.author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 2px;
  line-height: 1.2;
}

.author-city {
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

/* Pagination Dots */
.testimonial-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 45px;
}

.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}

.test-dot.active {
  width: 28px;
  height: 8px;
  border-radius: 4px;
  background-color: #ffffff;
}

@media (max-width: 992px) {
  .testimonial-item {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }

  .testimonial-main-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .testimonials-section {
    padding: 70px 0 80px;
  }

  .testimonial-item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .testimonial-main-title {
    font-size: 1.85rem;
  }
}

/* ==========================================================================
   OUR GALLERY SCROLLER SECTION
   ========================================================================== */
.gallery-scroller-section {
  padding: 95px 0 105px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.gallery-scroller-wrapper {
  position: relative;
  width: 100%;
  margin: 35px 0 45px;
}

.gallery-scroll-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 0;
  width: fit-content;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 10;
}

.gallery-scroll-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #11141a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-scroll-btn:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.gallery-scroll-btn:hover {
  background-color: var(--primary-gold);
  color: #ffffff;
}

.gallery-scroll-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.gallery-scroll-track:active {
  cursor: grabbing;
}

.gallery-scroll-track::-webkit-scrollbar {
  display: none;
}

.gallery-scroll-item {
  flex: 0 0 calc((100% - 64px) / 5);
  min-width: 270px;
  height: 220px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  background-color: #f7f4e8;
}

.gallery-scroll-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(176, 132, 52, 0.25);
}

.gallery-scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.gallery-scroll-item:hover img {
  transform: scale(1.06);
}

.gallery-action {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn-gallery-gold {
  background-color: var(--primary-gold);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 36px;
  border-radius: 4px;
  border: 2px solid var(--primary-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(176, 132, 52, 0.25);
  cursor: pointer;
  text-align: center;
}

.btn-gallery-gold:hover {
  background-color: var(--primary-gold-dark);
  border-color: var(--primary-gold-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(176, 132, 52, 0.35);
}

@media (max-width: 992px) {
  .gallery-scroll-item {
    flex: 0 0 calc((100% - 32px) / 3);
    min-width: 240px;
    height: 190px;
  }
}

@media (max-width: 768px) {
  .gallery-scroll-controls {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .gallery-scroller-section {
    padding: 60px 0 70px;
  }

  .gallery-scroll-item {
    flex: 0 0 calc((100% - 16px) / 1.5);
    min-width: 210px;
    height: 160px;
  }
}

/* ==========================================================================
   MAIN SITE FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--primary-gold); /* #b08434 / #af8534 */
  color: #ffffff;
  padding-top: 75px;
  position: relative;
  overflow: hidden;
  font-family: var(--font-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 210px 1.4fr 1.05fr 1.15fr;
  gap: 36px;
  align-items: flex-start;
  padding-bottom: 55px;
}

/* Column 1: Brand Logo Card */
.footer-logo-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
}

.footer-brand-logo {
  width: 100%;
  max-height: 125px;
  object-fit: contain;
  display: block;
}

/* Column Titles */
.footer-col-title {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 22px;
  letter-spacing: -0.2px;
}

/* Column 2: Contact Info */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-text {
  font-family: var(--font-primary);
  font-size: 0.94rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 400;
}

.contact-text a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-text a:hover {
  text-decoration: underline;
  color: #f6f4e7;
}

/* Column 3: Useful Links */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 0.94rem;
  transition: all 0.2s ease;
}

.footer-links-list li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.link-check {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.link-label {
  line-height: 1.4;
}

/* Column 4: Get Quote */
.footer-quote-numbers {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}

.footer-quote-numbers a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-quote-numbers a:hover {
  text-decoration: underline;
  color: #f6f4e7;
}

.footer-quote-text {
  font-family: var(--font-primary);
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
}

.btn-footer-call {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid #ffffff;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-footer-call:hover {
  background-color: #ffffff;
  color: var(--primary-gold);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 22px 0;
  background-color: rgba(0, 0, 0, 0.04);
}

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

.footer-copyright p {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-credit-link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all 0.25s ease;
}

.footer-credit-link:hover {
  color: #11141a;
  background-color: #f6f4e7;
  padding: 2px 8px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-social-links a {
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.footer-social-links a:hover {
  color: #ffffff;
  transform: translateY(-2px) scale(1.15);
}

/* Responsive Rules for Footer */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 55px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }

  .footer-logo-card {
    max-width: 180px;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 14px;
  }
}
