@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Space+Mono:wght@400;700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

/* ==========================================
   MINIMALIST SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 97, 0.4);
  border-radius: 5px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 169, 97, 0.7);
}

::-webkit-scrollbar-thumb:active {
  background: var(--brand);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 169, 97, 0.4) transparent;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

::selection {
  background: var(--brand);
  color: #fff;
}

/* =========================
   THEME / RESET
   ========================= */
:root {
  --brand: #C9A961;
  --brand-2: #d4b374;

  --text: #333;
  --muted: #666;
  --bg: #fff;

  --container: 90%;
  --container-wide: 90%;

  --radius-sm: 0;
  --radius-lg: 0;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 22px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.16);

  --t-fast: 0.25s;
  --t-mid: 0.55s;

  --font-header: 'Playfair Display', serif;
  --font-body: 'Source Sans 3', sans-serif;

  --arrow-size-md: 36px;
  --arrow-size-sm: 34px;
  --arrow-icon: 14px;
  --arrow-icon-md: 13px;
  --arrow-icon-sm: 12px;
}

/* GLOBAL BUTTON FONT-WEIGHT STANDARDIZATION */
button,
.btn,
.btn-primary,
.enquire-nav-btn,
.submit-btn,
.modal-close,
.cta-button,
.resource-link,
.brochure-trigger,
.floor-plan-trigger,
a.btn,
input[type="submit"],
input[type="button"] {
  font-weight: 600 !important;
}

.amenity-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-top: 15px;
  color: #333;
  font-family: var(--font-header);
}

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

@media (max-width: 768px) {
  section {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}




html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative;
  -webkit-overflow-scrolling: touch;
  font-family: var(--font-body);
}

html {
  scroll-behavior: smooth;
}

body,
p,
label,
input,
select,
textarea,
.iconic-typology,
.iconic-project-location {
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  border-radius: 0 !important;
}

p {
  text-align: justify;
}

body {
  color: var(--text);
  line-height: 1.8;
  background: var(--bg);
  font-weight: 400;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.gold-title,
.modal-title,
.thankyou-title,
.section-title-global,
.art-title,
.iconic-title {
  font-family: var(--font-header);
  text-transform: none;
  font-weight: 500;
  line-height: 1.2;
  color: var(--brand);
}


.section-title-global {
  font-family: var(--font-header) !important;
  font-size: 42px !important;
  color: var(--brand) !important;
  text-transform: none !important;
  line-height: 1.2 !important;
  margin-bottom: 0 !important;
  text-align: center !important;
  display: block;
}

.iconic-header {
  margin-bottom: 60px;
  text-align: center;
}

@media (max-width: 1024px) {
  .section-title-global {
    font-size: 36px !important;
  }

  .iconic-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .section-title-global {
    font-size: 30px !important;
    text-align: center !important;
  }

  .iconic-header {
    margin-bottom: 50px;
    text-align: center !important;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .gold-title,
  .gold-title-left,
  .chairman-name,
  .modal-title,
  .thankyou-title,
  .art-title,
  .iconic-title,
  .be-title,
  .crafts-static-title {
    text-align: center !important;
  }
}

.iconic-subtitle {
  display: none;
}

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

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5%;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 0 !important;
  }

  .container {
    padding: 0 15px;
  }

  p {
    text-align: left !important;
  }
}

/* =========================
   GLOBAL BUTTON
========================= */
.btn-primary,
.submit-form-btn,
.submit-btn {
  padding: 11px 28px;
  border: none;
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-block;
  width: auto !important;
  text-align: left;
  border-radius: 0 !important;
  text-align: center;
  /* Rectangular with subtle radius */
  position: relative;
  overflow: hidden;
  transition:
    box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    background 0.35s ease,
    transform var(--t-fast) ease;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.45) 40%,
      rgba(255, 255, 255, 0) 80%);
  transform: translateX(-120%);
  transition: transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.btn-primary:hover,
.submit-form-btn:hover {
  background: #333 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-1px) !important;
}

.btn-primary:hover::before {
  transform: translateX(120%);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

/* =========================
   UNIFORM SMALL ARROW BUTTONS
========================= */
.wm-arrow,
.slider-arrow,
.hero-arrow,
.lightbox-nav {
  width: var(--arrow-size, 45px);
  height: var(--arrow-size, 45px);
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}


.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hero-prev {
  left: 30px;
}

.hero-next {
  right: 30px;
}

.btn-map-directions {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 12px 24px !important;
  background: #000 !important;
  color: #fff !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  text-transform: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s ease !important;
  border: none !important;
  pointer-events: auto !important;
  z-index: 100 !important;
}

.btn-map-directions:hover {
  background: #333 !important;
  transform: translateY(-2px);
}

.wm-arrow,
.slider-arrow {
  border: none;
  cursor: pointer;
  box-shadow: none;
  /* Removed all shadows */
  transition: transform var(--t-fast) ease, background var(--t-fast) ease;
}

.wm-arrow i,
.slider-arrow i {
  font-size: var(--arrow-icon);
  color: #000000;
  opacity: 0.85;
  /* Almost invisible until hover */
  transition: all var(--t-fast) ease;
}

.wm-arrow:hover,
.slider-arrow:hover {
  background: var(--brand);
}

.slider-arrow:hover i {
  opacity: 1;
  color: #fff;
}

.wm-arrow:hover i,
.slider-arrow:hover i {
  color: #fff;
}

@media (max-width: 768px) {

  .wm-arrow,
  .slider-arrow {
    width: var(--arrow-size-md);
    height: var(--arrow-size-md);
  }

  .wm-arrow i,
  .slider-arrow i {
    font-size: var(--arrow-icon-md);
  }
}

@media (max-width: 480px) {

  .wm-arrow,
  .slider-arrow {
    width: var(--arrow-size-sm);
    height: var(--arrow-size-sm);
  }

  .wm-arrow i,
  .slider-arrow i {
    font-size: var(--arrow-icon-sm);
  }
}

/* FIX: Prevent arrows from fading on mobile/touch */
.testimonial-slider .slider-arrow,
.testimonial-slider .slider-arrow:hover,
.testimonial-slider .slider-arrow:active,
.testimonial-slider .slider-arrow i {
  opacity: 1 !important;
  visibility: visible !important;
  color: #000 !important;
  /* Keep arrow dark */
  background: transparent !important;
  /* Remove background circle */
  border: none !important;
  box-shadow: none !important;
}

/* =========================
   NAVBAR
========================= */
/* =========================
   NAVBAR WITH DROPDOWN & MOBILE MENU
========================= */
/* =========================
   NAVBAR
========================= */
/* =========================
   NAVBAR - CLEAN WITH LOGO AT TOP
========================= */
.navbar {
  background: #fff;
  padding: 5px 20px;
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: transform 0.3s ease-out;
}
.navbar .sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .sticky + .content {
  padding-top: 60px;
}

.navbar.navbar-hidden {
  transform: translateY(-100%);
}

.nav-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 75px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  position: relative;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--brand);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.nav-menu>li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--brand);
}

/* Desktop Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 220px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  list-style: none;
  padding: 12px 0;
  z-index: 100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 8px);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  padding: 10px 20px;
  display: block;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background: #f8f8f8;
  color: var(--brand);
  border-left-color: var(--brand);
  padding-left: 24px;
}

.enquire-nav-btn {
  border: none;
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 700;
}

/* Mobile Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.nav-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* =========================
   MOBILE STYLES
========================= */
@media (max-width: 768px) {
  .navbar {
    padding: 8px 20px;
  }

  .nav-container {
    padding: 0 20px;
    justify-content: space-between;
  }

  .logo img {
    height: 60px;
    display: block;
  }

  .hamburger {
    display: flex !important;
    position: relative;
    z-index: 1000001;
    /* Above .nav-menu */
  }

  .hamburger.active {
    display: flex !important;
    position: fixed;
    /* Keep it visible when menu is open */
    top: 20px;
    right: 30px;
    z-index: 1000001;
  }

  .navbar .enquire-nav-btn {
    display: none;
  }

  /* Rewritten Mobile Sidebar to Top-Down Dropdown */
  .nav-menu {
    position: fixed;
    top: 76px;
    /* Adjusted for fixed navbar height */
    left: 0;
    width: 100%;
    max-height: 0;
    height: auto;
    overflow: hidden;
    background: #fff;
    z-index: 1000000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.show {
    max-height: 100vh;
    height: 100vh;
    overflow-y: auto;
    padding-top: 20px;
    padding-bottom: 80px;
    margin-top: -18px;
  }

  /* Menu Items */
  .nav-menu>li {
    width: 100%;
    margin: 0;
  }

  .nav-menu a {
    width: 100%;
    padding: 16px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: #444;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f8f8;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    background: #fffaf0;
    color: var(--brand);
    padding-left: 30px;
  }

  /* Mobile Dropdown */
  .nav-menu .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    padding-left: 0;
    border-radius: 0;
    background: #fcfcfc;
    width: 100%;
  }

  .nav-menu .dropdown.open .dropdown-menu {
    display: block;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu .dropdown-toggle i {
    font-size: 11px;
    transition: transform 0.3s ease;
  }

  .nav-menu .dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
  }

  .dropdown-menu li a {
    padding: 14px 25px 14px 45px;
    font-size: 14px;
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 44px;
  }
}

/* HERO SECTION CONTAINER */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Fallback */
  height: 100dvh;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #000;
  padding-top: 85px;
  /* Space for 85px header */
}

@media (max-width: 768px) {
  .hero {
    width: 100%;
    height: 100vh;
    /* Fallback */
    height: 100dvh;
    margin-top: 0;
    margin-bottom: 0;
    background: #000;
    padding-top: 76px;
    /* Space for mobile header (60px logo + 16px padding) */
  }

  /* Switch to mobile banners on mobile devices */
  .mobile-banner {
    display: block !important;
  }

  .desktop-banner {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 60px;
    /* Space for small mobile header (44px logo + 16px padding) */
  }
}

/* HERO - SLIDER */
.hero-swiper,
.hero-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-wrapper {
  transform: none !important;
}

.hero-swiper .swiper-slide {
  position: absolute;
  inset: 0;
  margin: 0 !important;
  display: flex;
  opacity: 0;
  z-index: 0;
  background: #000;
  transition: opacity 6s ease;
}

.hero-swiper .swiper-slide.is-visible-slide {
  opacity: 1;
  z-index: 1;
}

.hero-swiper .swiper-slide.is-top-slide {
  opacity: 1;
  z-index: 2;
}

.hero-swiper .swiper-slide.is-top-slide.is-leaving-slide {
  animation: heroSlideOffLeft 6s ease forwards;
}

@keyframes heroSlideOffLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-120%);
    opacity: 1;
  }
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* HERO IMAGE FOR MAXIMUM SHARPNESS */
.hero-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Changed to cover for full responsiveness */
  object-position: center;
  transform: translate(-50%, -50%) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  display: block;
}

/* Dual Banner Toggle */
.mobile-banner {
  display: none !important;
}

.desktop-banner {
  display: block !important;
}



.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-content {
  max-width: 460px;
  width: auto;
  color: #fff;
  text-align: left;
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-content.is-active {
  opacity: 1;
  transform: translateX(0);
}

.hero-content.is-leaving {
  opacity: 0;
  transform: translateX(-40px);
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 12px;
  font-weight: 700;
}

.hero-content p {
  font-size: 15px;
  max-width: 360px;
  line-height: 1.75;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hero-bg {
    background: #000;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 14px;
    max-width: 100%;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }
}

.hero-btn {
  padding: 11px 30px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-block;
  border-radius: 0;
  /* Standardized to rectangular */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

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

.hero-pagination {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.hero-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
  width: 11px;
  height: 11px;
  transform: scale(1.15);
}

/* HERO ARROWS */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  /* Transparent as requested */
  border: none;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  /* Removed shadow */
  transition: all 0.3s ease;
  color: #fff;
  /* White icon for visibility on dark bg */
}

.hero-arrow i {
  font-size: 24px;
  /* Larger icon since no button */
}

.hero-arrow:hover {
  background: transparent;
  color: var(--brand);
  /* Hover color */
  transform: translateY(-50%) scale(1.1);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

@media (max-width: 1024px) {
  .hero-inner {
    padding: 0 40px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 14px;
    max-width: 320px;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    /* Increased on mobile */
  }

  .hero-inner {
    padding: 0 30px;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 13.5px;
    margin-bottom: 20px;
  }

  .hero-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 12.5px;
  }

  .hero-btn {
    padding: 10px 24px;
    font-size: 11px;
  }

  .hero-pagination {
    bottom: 15px;
  }
}

/* =========================
   ABOUT
========================= */
.about-section {
  padding: 60px 0;
  background: #fafafa;
}

.about-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.gold-title {
  font-family: var(--font-header);
  font-size: 44px;
  color: var(--brand);
  font-weight: 500;
  margin-bottom: 24px;
}

.about-description {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin: 0 auto 60px;
  max-width: 820px;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 28px;
  max-width: 950px;
  margin: 0 auto;
}

.stat-box h3 {
  font-family: var(--font-header);
  font-size: 58px;
  color: var(--brand);
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1;
}

.testimonial-text {
  font-size: 14px !important;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
  text-align: center !important;
}

.stat-box p {
  font-size: 10px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 22px;
  }

  .gold-title {
    font-size: 38px;
  }

  .stat-box h3 {
    font-size: 48px;
  }
}

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

  .about-section .container {
    padding: 0 18px;
  }

  .about-description {
    margin-bottom: 48px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px 16px;
    max-width: 100%;
  }

  .stat-box h3 {
    font-size: 34px;
  }

  .stat-box p {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .gold-title {
    font-size: 32px;
  }

  .about-description {
    font-size: 13px;
  }

  .stat-box h3 {
    font-size: 30px;
  }
}

/* ==========================================
   GLOBAL SECTION TYPOGRAPHY
   ========================================== */
.gallery-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

@media (max-width: 768px) {
  .iconic-header {
    margin-bottom: 40px;
  }
}

/* Float CTAs in Section */
.overview-ctas {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.cta-button {
  padding: 12px 28px;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--t-fast);
  background: var(--brand);
  color: #fff;
}




.cta-whatsapp {
  background: #25D366;
  color: #fff;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .overview-image {
    width: 100%;
    margin: 0 auto;
  }
}

.what-makes-section {
  min-height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.what-makes-container {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 60px;
  width: 100%;
}

.what-makes-text {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
  padding-left: 20px;
}

.gold-title-left {
  font-size: 32px;
  color: var(--brand);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 24px;
  text-align: left !important;
}

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

.what-makes-text button {
  margin-top: 28px;
  align-self: flex-start;
}

.what-makes-slider {
  flex: 0 0 75%;
  position: relative;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
}

.what-makes-track {
  display: flex;
  gap: 20px;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wm-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  height: 480px;
}

.wm-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.wm-card:hover img {
  transform: scale(1.06);
}

.wm-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.wm-card-bottom {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #fff;
  z-index: 2;
}

.wm-card-bottom h3 {
  font-family: var(--font-header);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.wm-card-bottom p {
  font-family: var(--font-body);
  font-size: 13px;
  opacity: 0.95;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.what-makes-slider .wm-prev {
  left: 40px;
}

.what-makes-slider .wm-next {
  right: 40px;
}

/* Slider Arrow Base - Restore Missing Properties */
.wm-arrow,
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.wm-arrow:hover,
.slider-arrow:hover {
  background: var(--brand);
}

.wm-arrow i,
.slider-arrow i {
  color: #333;
  font-size: 14px;
}

.wm-arrow:hover i,
.slider-arrow:hover i {
  color: #fff;
}


@media (max-width: 1024px) {
  .what-makes-section {
    padding: 70px 20px;
  }

  .what-makes-container {
    flex-direction: column;
    gap: 40px;
  }

  .what-makes-text {
    flex: 0 0 auto;
    text-align: center;
    padding: 0;
  }
}

/* =========================
   OVERVIEW SECTION
========================= */
.overview-section {
  background: #fff;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 0px 20px 0px;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 10;
}

.overview-image {
  display: flex;
  justify-content: flex-end;
  /* Pushes image to the right edge */
  width: 100%;
}

.overview-image img {
  width: auto;
  height: auto;
  max-width: 550px;
  /* Fixed size like project pages */
  max-height: 75vh;
  object-fit: contain;
  /* Maintain aspect ratio */
  border-radius: 0;
}

@media (max-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr !important;
    width: 92% !important;
    margin: 0 auto !important;
  }

  .overview-image {
    justify-content: center !important;
    /* Center on mobile */
    margin-bottom: 30px;
  }

  .overview-image img {
    width: 370px !important;
    height: auto !important;
    max-width: 90% !important;
    object-fit: contain !important;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0) scale(1.02);
    /* Forces GPU and clarity */
  }

  .overview-content {
    padding: 0 10px;
    box-sizing: border-box;
  }

  .overview-content h2 {
    text-align: center !important;
  }

  .overview-content p {
    text-align: justify !important;
  }
}

.overview-content {
  position: relative;
  z-index: 10;
  text-align: left;
}

.overview-content h2 {
  font-family: var(--font-header);
  font-size: 3rem;
  margin-bottom: 50px;
  color: var(--brand);
  font-weight: 500;
  line-height: 1.2;
}

.overview-content p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #666;
  margin-bottom: 18px;
  text-align: justify;
}

@media (max-width: 1024px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 0px 0px !important;
    /* Increased padding and forced it */
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  background: #f9f9f9;
  text-align: center;
  overflow: hidden;
  /* Added to keep everything inside */
}

@media (max-width: 768px) {
  .testimonials-section {
    min-height: auto !important;
    padding: 60px 15px !important;
  }
}

.testimonial-slider {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 100px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  overflow: visible;
  /* Fix cutting effect */
}

@media (max-width: 768px) {
  .testimonial-slider {
    margin: 0px auto 0;
  }
}

.testimonial-track {
  position: relative;
  width: 100%;
  height: 370px;
  padding: 20px 0px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 320px;
  max-width: 82%;
  height: 370px;
  padding: 28px 24px 22px;
  background: #fff;
  border-radius: 0;
  transform-origin: center center;
  transform: translate3d(-50%, 0, -140px) scale(0.85);
  opacity: 0.9;
  display: flex;
  flex-direction: column;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.testimonial-card.is-center {
  transform: translate3d(-50%, 0, 110px) scale(1.0);
  opacity: 1;
  z-index: 5;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.14);
}

.testimonial-card.is-left-1 {
  transform: translate3d(calc(-50% - 280px), 0, -40px) scale(0.95);
  opacity: 0.95;
  z-index: 3;
}

.testimonial-card.is-right-1 {
  transform: translate3d(calc(-50% + 280px), 0, -40px) scale(0.95);
  opacity: 0.95;
  z-index: 3;
}

.testimonial-card.is-left-2 {
  transform: translate3d(calc(-50% - 500px), 0, -120px) scale(0.9);
  opacity: 0.85;
  z-index: 1;
}

.testimonial-card.is-right-2 {
  transform: translate3d(calc(-50% + 500px), 0, -120px) scale(0.9);
  opacity: 0.85;
  z-index: 1;
}

@media (max-width: 768px) {
  .testimonial-track {
    height: 200px;
  }

  .testimonial-card {
    width: 260px;
    height: 200px;
    padding: 12px 10px;
  }

  .testimonial-card.is-left-1 {
    transform: translate3d(calc(-50% - 280px), 0, -60px) scale(0.85);
  }

  .testimonial-card.is-right-1 {
    transform: translate3d(calc(-50% + 280px), 0, -60px) scale(0.85);
  }
}

@media (max-width: 1200px) {

  .testimonial-card.is-left-2,
  .testimonial-card.is-right-2 {
    opacity: 0;
    visibility: hidden;
  }
}

.stars {
  color: #ffc107;
  margin-bottom: 12px;
  font-size: 15px;
}

.testimonial-card h3 {
  font-family: var(--font-body);
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
}

/* Standardized Testimonial Text */
.testimonial-text {
  font-family: var(--font-body);
  font-size: 14px !important;
  color: #000000;
  margin-bottom: 16px;
  font-weight: 400;
  text-align: center !important;
}

.testimonial-name {
  margin-top: auto;
  font-family: var(--font-header);
  font-weight: 700;
  color: var(--brand);
  text-align: center;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  /* Transparent */
  border: none;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  /* No shadow */
  transition: all 0.3s ease;
  color: #333;
  /* Dark icon */
}

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

.slider-arrow i {
  font-size: 24px;
  /* Larger icon */
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

/* Removed redundant testimonial mobile block (handled below in comprehensive mobile section) */


@media (max-width: 768px) {
  .testimonial-track {
    height: 280px !important;
  }

  .testimonial-card {
    height: 250px !important;
    min-height: 250px !important;
    width: 280px !important;
    padding: 15px 12px !important;
  }

  .testimonial-text {
    font-size: 13px !important;
    margin-bottom: 10px !important;
    line-height: 1.5 !important;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .testimonial-card h3 {
    font-size: 16px !important;
    margin-bottom: 5px !important;
  }
}

@media (max-width: 480px) {
  .testimonial-track {
    height: 280px !important;
  }

  .testimonial-card {
    height: 250px !important;
    min-height: 250px !important;
    width: 260px !important;
    padding: 15px 12px !important;
  }
}


/* =========================
   CONTACT
========================= */
.contact-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  background: #ffffff;
}

.contact-grid {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-left-content h2 {
  font-family: var(--font-header);
  font-size: 42px;
  color: var(--brand);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 22px;
}

.contact-left-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);

}

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

.form-input-group {
  position: relative;
}

.form-input-group input,
.form-input-group select {
  width: 100%;
  padding: 14px 46px 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 0 !important;
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.3s ease;
  background: #fdfdfd;
}

.form-input-group input:focus,
.form-input-group select:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}

.input-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 14px;
  pointer-events: none;
}

.submit-form-btn {
  width: auto !important;
  min-width: 150px;
  padding: 14px 28px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 0 !important;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.submit-form-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Custom Checkbox Styling */
.checkbox-group {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 12px;
  margin-bottom: 24px;
}

.checkbox-group input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  padding: 0 !important;
  border: 1.5px solid #d5d5d5 !important;
  border-radius: 0px !important;
  margin-top: 5px !important;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
  background-color: #fff;
  box-shadow: none !important;
}

.checkbox-group input[type="checkbox"]:checked {
  background-color: var(--brand);
  border-color: var(--brand);
}

.checkbox-group input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 45%;
  left: 50%;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}

.checkbox-group label,
.checkbox-group .checkbox-description {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  cursor: pointer;
  user-select: none;
  display: block;
}

.checkbox-group a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none !important;
  background-color: inherit;
  background-image: none !important;
}

select::-ms-expand {
  display: none;
}

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

  .contact-grid {
    gap: 50px;
  }

  .contact-left-content h2 {
    font-size: 24px;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px !important;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .contact-left-content h2 {
    font-size: 24px;
    text-align: left;
    padding-right: 0;
  }

  .contact-left-content p {
    font-size: 13px;
    text-align: left;
    width: 100%;
  }

  .contact-right-form form {
    align-items: flex-start;
  }

  .form-input-group {
    width: 100%;
    max-width: 100%;
  }

  .submit-form-btn {
    width: auto;
    max-width: 100%;
    margin: 0 auto 0 0;
  }

  .checkbox-group {
    justify-content: flex-start;
    text-align: left;
  }
}


/* =========================
   PROJECTS SECTION (UNIFIED DESIGN)
========================= */
.projects-listing-section,
.iconic-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  background: #fff;
}

.projects-grid,
.iconic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 90%;
  max-width: 1600px;
  min-height: 75vh;
  margin: 20px auto 0;
  position: relative;
  z-index: 10;
  align-items: stretch;
}

@media (max-width: 1024px) {

  .projects-grid,
  .iconic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .projects-grid,
  .iconic-grid,
  .project-footer-grid {
    grid-template-columns: 1fr;
  }

  .project-image-wrap {
    /* Iconic Grid Mobile - reduced vertical height */
    height: 300px;
    aspect-ratio: auto;
  }
}

@media (max-width: 768px) {

  .iconic-property-card,
  .project-footer-card {
    height: auto !important;
    min-height: auto !important;
    text-align: left !important;
  }

  .iconic-property-img-wrap,
  .project-footer-img-wrap {
    min-height: 180px !important;
    max-height: 240px !important;
    aspect-ratio: 1 / 1 !important;
  }

  .iconic-property-info {
    text-align: left !important;
    align-items: flex-start !important;
    display: flex;
    flex-direction: column;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .project-meta {
    justify-content: flex-start !important;
  }

  .project-footer-grid,
  .iconic-grid {
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
  }
}

/* PROJECT FOOTER SECTION (Centered 2-Card Layout) */
.project-footer-section {
  padding: 60px 0;
  background: #fff;
}

.project-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 90%;
  max-width: 1100px;
  margin: 40px auto 0;
  align-items: stretch;
  justify-content: center;
  /* Center boxes locally */
}

/* Standardize Project Footer Card to match Iconic Property Style */
.project-footer-card {
  background: #fff;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  color: inherit;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  border: 1px solid #eee !important;
  text-align: left !important;
  height: 75vh;
  /* Match Iconic Property Height */
}

.project-footer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border-color: var(--brand);
}

.project-footer-img-wrap {
  width: 100%;
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f0f0f0;
}

.project-footer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  /* Match Iconic Style */
  transition: transform 0.8s ease;
}

.project-footer-info {
  padding: 15px 20px;
  text-align: left;
  flex-shrink: 0;
}

.iconic-property-card {
  background: #fff;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  padding: 0;
  /* Remove padding */
  border: 1px solid #eee;
  text-align: left;
  height: 75vh;
}

.iconic-property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border-color: var(--brand);
}

.iconic-property-img-wrap {
  width: 100%;
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f0f0f0;
}

.iconic-property-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: top !important;
  transition: transform 0.8s ease;
}

.iconic-property-info {
  padding: 15px 20px;
  /* Reduced padding */
  text-align: left;
  flex-shrink: 0;
  /* Don't shrink text */
}

.iconic-property-info h3 {
  color: var(--brand);
  font-family: var(--font-header);
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 500;
  text-align: left;
}

@media (max-width: 768px) {
  .iconic-property-img-wrap {
    /* Maintain perfect 2:3 ratio on mobile */
    aspect-ratio: 2 / 3;
    height: auto;
  }
}

.project-card-item {
  background: #fff;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  padding: 5px;
  /* Restored padding */
  border: 1px solid #eee;
  text-align: left;
}

.project-card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border-color: var(--brand);
}

.project-image-wrap {
  width: 100%;
  height: auto;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f0f0f0;
}

.project-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.project-info {
  padding: 25px 15px 15px;
  /* Better spacing for alignment */
  text-align: left;
}

.project-info h3 {
  color: var(--brand);
  font-family: var(--font-header);
  font-size: 20px;
  /* Slightly smaller to match project page feel */
  margin-bottom: 8px;
  font-weight: 500;
}

.project-info p {
  color: #666;
  font-size: 14px;
  /* Matched to project page */
  margin-bottom: 15px;
  line-height: 1.4;
}

.project-meta span {
  font-size: 13px;
  /* Matched to project page */
  color: #999;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-card-item:hover .project-image-wrap img {
  transform: scale(1.08);
}




/* =========================
   CRAFTS SECTION - DEFINING PILLARS
========================= */
.crafts-section {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: left;
}

.crafts-grid {
  width: 90%;
  max-width: 1600px;
  margin: 40px auto 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.crafts-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.crafts-img-wrap {
  width: 100%;
  height: 65vh;
  overflow: hidden;
  position: relative;
}

.crafts-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.crafts-col:hover .crafts-img-wrap img {
  transform: scale(1.08);
}

.crafts-img-wrap .crafts-content {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 2;
  text-align: left;
}

.crafts-col:hover .crafts-img-wrap .crafts-content {
  opacity: 1;
  visibility: visible;
}

.crafts-content h3 {
  font-family: var(--font-header);
  font-size: 26px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 500;
}

.crafts-content p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.crafts-static-title {
  font-family: var(--font-header);
  font-size: 24px;
  color: var(--brand);
  margin-top: 15px;
  font-weight: 500;
  text-transform: capitalize;
  text-align: left;
}



/* =========================
   SCROLL ANIMATION
========================= */
.reveal-card-on-scroll {
  opacity: 0;
  transform: translateY(80px);
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease;
  will-change: transform, opacity;
}

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

/* View All Button */
.view-all-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.view-all-btn {
  display: inline-block;
  padding: 14px 44px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-family: var(--font-header);
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #b89554;
}


/* ==========================================
   GLOBAL FOOTER - STRICT 3-COLUMN ARCHITECTURE
   ========================================== */
.footer-section {
  position: relative;
  background-image: url('../images/footer.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0 40px;
  /* Balanced vertical footprint */
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.footer-container {
  width: 90%;
  max-width: 1400px;
  /* Standardize max-width for better balance */
  margin: 0 auto;
  padding: 0 20px;
  /* Added side padding for extra safety */
  position: relative;
  z-index: 1;
}

.footer-grid-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Balanced 4-column layout */
  gap: 60px;
  width: 100%;
  margin-bottom: 60px;
  align-items: start;
}

@media (max-width: 1024px) {
  .footer-grid-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Col 1: Logo */
.footer-logo-box {
  width: 170px;
  height: 170px;



  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 0 auto;

}



.footer-logo-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
}


/* Col 2: Navigation (Single Column Stack) */


.footer-link-group h3 {
  font-family: var(--font-header);
  color: var(--brand);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-link-group ul {
  list-style: none;
  padding: 0;
}

.footer-link-group ul li {
  margin-bottom: 12px;
}

.footer-link-group ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  opacity: 0.8;
  transition: all 0.3s;
  display: block;
}

.footer-link-group ul li a:hover {
  color: var(--brand);
  opacity: 1;
  transform: translateX(5px);
}

/* Col 3: Contact Info */
.footer-contact-col h3 {
  font-family: var(--font-header);
  color: var(--brand);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-contact-row i {
  color: var(--brand);
  font-size: 16px;
  margin-top: 5px;
  transition: all 0.3s ease;
}

.footer-contact-row:hover i {
  transform: scale(1.2) rotate(-5deg);
}

.footer-contact-text a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s;
}


.footer-contact-text {
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
  opacity: 0.9;
  word-break: break-word;
}

.footer-contact-text a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-text a:hover {
  color: var(--brand);
}

/* Bottom Bar */
.footer-bottom-mini {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom-mini p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
}

@media (max-width: 1024px) {
  .footer-grid-main {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .footer-grid-main {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: left !important;
  }

  .footer-logo-col {
    grid-column: span 1 !important;
    text-align: left !important;
  }

  .footer-bottom-mini {
    text-align: left !important;
  }

  .footer-logo-box {
    margin: 0 !important;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .footer-logo-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
  }

  .footer-link-group,
  .footer-contact-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    /* Left align content on mobile */
    text-align: left !important;
  }

  .footer-contact-info-wrap {
    align-items: flex-start !important;
  }

  .footer-contact-info-wrap>div {
    justify-content: flex-start !important;
  }

  .footer-nav-col {
    gap: 30px;
    align-items: flex-start;
    /* Align nav column to start */
  }

  /* Center link groups */
  .footer-link-group ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align links to start */
    padding: 0;
  }

  .footer-link-group ul li {
    list-style: none;
    /* Ensure no bullets */
  }

  .footer-link-group ul li a:hover {
    transform: none;
  }

  .footer-contact-row {
    justify-content: flex-start;
    /* Align contact rows to start */
    flex-direction: row;
    /* Keep row direction */
    align-items: flex-start !important;
    text-align: left;
    gap: 15px;
    /* Restore original gap or adjust as needed */
  }
}

/* =========================
   MODAL POPUP STYLES - PREMIUM REDESIGN
========================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-container {
  background: #fff;
  border-radius: 0;
  /* Straight corners for premium look */
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(30px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(201, 169, 97, 0.15);
}

.policy-modal {
  max-width: 800px;
  padding: 40px;
}

.policy-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.policy-modal-logo {
  text-align: left !important;
}

.policy-modal-logo img {
  height: 50px;
}

.policy-body {
  text-align: justify;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.policy-modal .modal-close {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  width: 40px !important;
  height: 40px !important;
  background: rgba(0, 0, 0, 0.04) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.04);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close i {
  font-size: 18px;
  color: #333;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--brand) !important;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-close:hover i {
  color: #fff !important;
}

.modal-content {
  padding: 60px 50px;
}

.modal-title {
  font-family: var(--font-header);
  font-size: 34px;
  font-weight: 500;
  color: var(--brand);
  margin: 0 0 12px 0;
  text-align: center;
  letter-spacing: 1px;
}

.modal-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: #666;
  text-align: center;
  margin: 0 0 40px 0;
  line-height: 1.6;
}

/* Premium Form Styling */
.enquiry-form .form-group {
  margin-bottom: 28px;
}

.enquiry-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #444;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  /* Straight inputs */
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.3s ease;
  background: #fdfdfd;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}

.submit-btn-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-top: 10px;
}

.enquiry-form .submit-btn {
  width: auto !important;
  min-width: 150px;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  letter-spacing: 0.5px;
  background: #000;
  color: #fff;
  text-transform: none;
  display: block;
  margin: 0 auto 0 0 !important;
  /* Forces left alignment */
  text-align: center !important;
  /* Centers text inside button */
}

/* Helper class for left-aligning buttons while keeping text centered */
.btn-left-align {
  margin-left: 0 !important;
  margin-right: auto !important;
  display: block !important;
  text-align: center !important;
}

/* Thank You Popup Redesign */
.thankyou-content {
  text-align: center;
  padding: 60px 40px;
}

.thankyou-icon {
  margin-bottom: 25px;
}

.thankyou-icon i {
  font-size: 64px;
  color: #27ae60;
  animation: checkmarkPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thankyou-title {
  font-family: var(--font-header);
  font-size: 36px;
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 15px;
  text-align: center !important;
}

.thankyou-message {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center !important;
}

@keyframes checkmarkPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .modal-container {
    max-width: 95%;
    border-radius: 0;
  }

  .modal-content {
    padding: 40px 25px;
  }

  .modal-title {
    font-size: 28px;
  }
}

/* =========================
   PROJECT FOOTER SECTION (MATCHING ICONIC CARDS)
========================= */
.proj.testimonial-section {
  padding: 100px 0 120px 0;
  background: #fff;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-footer-section {
  padding: 80px 0 0 0;
  background: #fff;
  text-align: center;
}

.project-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 90%;
  max-width: 1600px;
  height: 75vh;
  margin: 40px auto 0;
  align-items: stretch;
}

.project-footer-card {
  background: #fff;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid #eee;
  text-align: left;
  height: 100%;
}

.project-footer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border-color: var(--brand);
}

.project-footer-img-wrap {
  width: 100%;
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f0f0f0;
}

.project-footer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top !important;
  transition: transform 0.8s ease;
}

.project-footer-card:hover .project-footer-img-wrap img {
  transform: scale(1.08);
}

.project-footer-info {
  padding: 15px 20px;
  text-align: left;
  flex-shrink: 0;
}

.project-footer-info h3 {
  color: var(--brand);
  font-family: var(--font-header);
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 500;
}

.project-footer-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.4;
}

.project-footer-meta {
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-footer-meta span {
  font-size: 13px;
  color: #999;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .project-footer-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .project-footer-img-wrap {
    aspect-ratio: 2 / 3;
    height: auto;
  }
}

.crafts-card-title {
  text-align: left;
  margin-top: 15px;
  font-family: var(--font-header);
  font-size: 32px;
  color: var(--brand);
  font-weight: 500;
}

/* =========================
   COMPREHENSIVE MOBILE RESPONSIVENESS
========================= */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {

  /* Overview Section - KEEP 2 COLUMNS */
  .overview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 0px;
  }

  .overview-content h2 {
    font-size: 32px !important;
  }

  .overview-content p {
    font-size: 14px !important;
  }

  /* Crafts Section - KEEP 3 COLUMNS */
  .crafts-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    gap: 20px;
    /* Tighter gap for tablet */
  }

  /* Reduce image height for tablet to fit 3 cols comfortably */
  .crafts-img-wrap {
    height: 45vh;
  }

  .crafts-col {
    height: auto !important;
  }

  .crafts-card-title {
    font-size: 20px;
  }

  .crafts-content h3 {
    font-size: 20px;
  }

  .crafts-content p {
    font-size: 13px;
  }

  /* Iconic Section */
  .iconic-grid {
    grid-template-columns: repeat(3, 1fr);
    /* Try to keep 3 if possible, else 2 */
    gap: 20px;
  }

  /* Fallback for smaller Landscape tablets if 3 is too tight */
  @media (max-width: 900px) {
    .iconic-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Amenities */
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Location Section */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .location-map-wrap {
    height: 400px;
  }
}
  .amenities-section .enquire-btn-container {
    text-align: center !important;
    padding-top: 25px!important;
  }
/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {

  /* Global Section Padding - EXCLUDE HERO */
  section:not(.hero):not(.hero-section):not(#home) {
    padding: 60px 15px !important;
    overflow-x: hidden;
  }

  /* Hero Container - Full Width */
  .hero,
  .hero-section,
  #home {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Hero Section Mobile Visibility */
  .hero-section,
  .hero-swiper {
    height: 100% !important;
    min-height: auto !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    background: transparent !important;
    overflow: hidden;
    width: 100% !important;
  }

  .hero {
    height: auto !important;
    aspect-ratio: 3 / 4 !important;
    padding: 0 !important;
    margin-top: 60px !important;
    background: #000 !important;
    width: 100% !important;
    overflow: hidden !important;
  }





  /* Force Mobile Banner with better specificity */
  .hero-slide .hero-img.mobile-banner {
    display: block !important;
  }

  .hero-slide .hero-img.desktop-banner {
    display: none !important;
  }



  .hero-content h1 {
    font-size: 32px !important;
  }

  .hero-content p {
    font-size: 16px !important;
  }

  /* Hero Info Bar - Project Pages Quick Stats 2x2x1 */
  .hero-info-bar {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 0 !important;
    gap: 0 !important;
    background: #fff;
    border-top: 1px solid #eee;
  }

  .info-item {
    padding: 20px 10px !important;
    border: 0.5px solid #f0f0f0 !important;
    text-align: center !important;
    width: auto !important;
    margin: 0 !important;
    min-height: 120px !important;
    /* Uniform height */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* Explicitly target the 5 items for 2x2x1 */
  .hero-info-bar>div:nth-child(1),
  .hero-info-bar>div:nth-child(2),
  .hero-info-bar>div:nth-child(3),
  .hero-info-bar>div:nth-child(4) {
    grid-column: span 1 !important;
  }

  .hero-info-bar>div:nth-child(5) {
    grid-column: span 2 !important;
    border-bottom: 1px solid #f0f0f0 !important;
  }

  .info-item p {
    font-size: 14px !important;
    width: 100% !important;
    text-align: center !important;
    margin: 0 !important;
  }

  /* Overview Section */
  .overview-section {
    min-height: auto;
    padding: 60px 15px !important;
    /* Ensuring proper padding */
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0;
  }

  .overview-content {
    order: 1;
  }

  .overview-image {
    order: 2;
  }

  .overview-content h2 {
    font-size: 28px !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
  }

  .overview-content p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    text-align: justify;
  }

  /* Crafts Section */
  .crafts-section {
    padding: 60px 15px !important;
  }

  .crafts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .crafts-col {
    height: 50vh !important;
  }

  .crafts-content {
    padding: 20px;
  }

  .crafts-content h3 {
    font-size: 20px !important;
  }

  .crafts-content p {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .crafts-card-title {
    font-size: 22px;
    margin-top: 10px;
  }

  /* Iconic Properties Section */
  .iconic-section {
    padding: 60px 15px !important;
  }

  .iconic-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    width: 100%;
  }

  .iconic-property-card {
    max-width: 100%;
  }

  .iconic-property-info h3 {
    font-size: 22px !important;
  }

  .iconic-property-info p {
    font-size: 14px !important;
  }

  /* Benefits Section */
  .benefits-section {
    padding: 60px 15px !important;
  }

  .standard-row-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Amenities Section */
  .amenities-section {
    padding: 60px 15px !important;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0;
  }

  .amenity-card {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .amenity-card h3 {
    font-size: 13px !important;
    margin-top: 12px;
    text-align: center;
  }

  .amenity-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }


  .amenity-icon img {
    width: 24px !important;
    height: 24px !important;
    display: block;
    margin: 0 auto;
  }



  /* Section Divider */
  .section-divider {
    margin: 60px 0 !important;
    border: none;
    height: 1px;
    background: #e0e0e0;
  }


  /* Gallery Section */
  .gallery-section {
    padding: 60px 15px !important;
  }

  .gallery-tabs {
    gap: 10px;
    margin-bottom: 30px;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* Resources Section */
  .resources-section {
    padding: 60px 15px !important;
  }

  .resources-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .resource-card {
    padding: 25px 20px;
  }

  /* Location Section */
  .location-section {
    padding: 60px 15px !important;
  }

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

  .location-map-wrap {
    height: 350px;
  }

  .location-map-wrap iframe {
    height: 100%;
  }

  .btn-map-directions {
    padding: 10px 18px !important;
    font-size: 12px !important;
    bottom: 15px !important;
    left: 15px !important;
  }

  .acc-header h3 {
    font-size: 15px;
  }

  .advantage-item {
    padding: 12px 0;
  }

  .adv-name {
    font-size: 13px;
  }

  .adv-time {
    font-size: 12px;
  }

  /* Testimonials Section */
  .testimonials-section {
    padding: 60px 15px !important;
    min-height: auto;
  }

  .testimonial-slider {
    padding: 0;
    height: auto !important;
    /* Allow dynamic height */
    position: relative;
    overflow: visible;
    /* Let it breathe */
  }

  .testimonial-track {
    width: 100%;
    height: auto;
    min-height: 280px;
    position: relative;
    display: flex;
    justify-content: center;
  }

  .testimonial-card {
    width: 88%;
    max-width: 300px;
    margin: 0 auto !important;
    height: 240px;
    padding: 20px 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 50% !important;
    transform: translateX(-50%) !important;
    transition: all 0.4s ease;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    z-index: 1;
    justify-content: center;
  }

  .testimonial-card.is-center {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    pointer-events: auto;
    z-index: 20;
    position: relative !important;
    left: auto !important;
    transform: none !important;
    margin: 10px auto !important;
  }

  /* Strictly hide others */
  .testimonial-card.is-left-1,
  .testimonial-card.is-right-1,
  .testimonial-card.is-left-2,
  .testimonial-card.is-right-2 {
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important;
  }

  .testimonial-card .stars {
    margin-bottom: 10px !important;
    font-size: 13px !important;
    text-align: center;
    flex-shrink: 0;
  }

  .testimonial-card h3 {
    font-size: 16px;
    margin-bottom: 10px !important;
    text-align: center;
    flex-shrink: 0;
  }

  .testimonial-text {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 6px !important;
    text-align: justify !important;
    flex-grow: 1;
    overflow: hidden;
  }

  .testimonial-name {
    font-size: 13px;
    margin-top: 0 !important;
    text-align: center !important;
    flex-shrink: 0;
  }

  .slider-arrow {
    width: 28px;
    height: 28px;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }

  /* Contact Section */
  .contact-section {
    padding: 60px 15px !important;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-left-content h2 {
    font-size: 28px !important;
    margin-bottom: 20px;
  }

  .contact-left-content p {
    font-size: 15px !important;
  }

  .form-input-group {
    margin-bottom: 15px;
  }

  .form-input-group input,
  .form-input-group select {
    padding: 14px 40px 14px 15px;
    font-size: 14px;
  }

  /* Footer */
  .footer-section {
    padding: 50px 15px 30px !important;
  }

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

  .footer-logo-col {
    text-align: left;
  }

  .footer-logo-box {
    margin: 0 !important;
    width: 140px;
    height: 140px;
    padding: 10px 0;
    justify-content: flex-start;
  }

  .footer-logo-box img {
    max-width: 140px;
    margin: 0 !important;
    object-position: left;
  }

  .footer-link-group h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer-link-group ul li a {
    font-size: 14px;
  }

  .footer-contact-col h3 {
    font-size: 16px;
  }

  .footer-contact-row {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 8px;
  }

  .footer-contact-row i {
    margin-top: 0 !important;
  }

  .footer-contact-text {
    font-size: 13px;
  }

  .footer-bottom-mini {
    margin-top: 30px;
    padding-top: 20px;
  }

  .footer-bottom-mini p {
    font-size: 12px;
  }

  /* Project Footer Section */
  .project-footer-section {
    padding: 60px 15px !important;
  }

  .project-footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    height: auto;
    width: 100%;
  }

  .project-footer-card {
    height: auto;
  }

  .project-footer-img-wrap {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .project-info h3 {
    font-size: 20px;
  }

  .project-info p {
    font-size: 13px;
  }

  /* CTA Button */
  .cta-button {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .cta-button i {
    font-size: 18px;
  }
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {

  /* Typography */
  .section-title-global {
    font-size: 24px !important;
  }

  .iconic-header {
    margin-bottom: 25px;
  }

  /* Hero */
  .hero-content h1 {
    font-size: 26px !important;
  }

  .hero-content p {
    font-size: 14px !important;
  }

  /* Overview */
  .overview-content h2 {
    font-size: 24px !important;
  }

  .overview-content p {
    font-size: 14px !important;
  }

  /* Amenities */
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  /* Crafts */
  .crafts-col {
    height: 45vh !important;
  }

  .crafts-card-title {
    font-size: 20px;
  }

  /* Testimonials */
  .testimonial-track {
    min-height: 250px;
  }

  .testimonial-card {
    min-width: 0;
    width: 88%;
    max-width: 280px;
    height: 210px;
    padding: 18px 14px;
    justify-content: center;
  }

  .testimonial-card .stars {
    margin-bottom: 8px !important;
    font-size: 12px !important;
    text-align: center;
    flex-shrink: 0;
  }

  .testimonial-card h3 {
    font-size: 15px;
    margin-bottom: 8px !important;
    text-align: center;
    flex-shrink: 0;
  }

  .testimonial-text {
    font-size: 12px !important;
    line-height: 1.45 !important;
    margin-bottom: 5px !important;
    text-align: justify !important;
    flex-grow: 1;
    overflow: hidden;
  }

  .testimonial-name {
    font-size: 12px;
    margin-top: 0 !important;
    text-align: center !important;
    flex-shrink: 0;
  }

  .slider-arrow {
    width: 24px;
    height: 24px;
  }

  /* Contact */
  .contact-left-content h2 {
    font-size: 24px !important;
    margin-top: -20px;
  }

  /* Buttons */
  .btn-primary,
  .submit-form-btn,
  .submit-btn {
    padding: 10px 22px;
    font-size: 12px;
  }

  /* Modal */
  .modal-container {
    max-width: 98%;
    margin: 20px auto;
  }

  .modal-content {
    padding: 30px 20px;
  }

  .modal-title {
    font-size: 22px;
  }

  .form-group input,
  .form-group select {
    font-size: 14px;
  }
}

/* Landscape Mobile Fix */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    height: auto !important;
    min-height: 100vh !important;
  }

  .crafts-col {
    height: 80vh !important;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  body {
    font-size: 14px;
  }

  .section-title-global {
    font-size: 22px !important;
  }

  .hero-content h1 {
    font-size: 24px !important;
  }

  .overview-content h2 {
    font-size: 22px !important;
  }

  .amenity-card h3 {
    font-size: 12px !important;
  }
}

/* =========================================
   STANDARD ROW GRID LAYOUT
   ========================================= */
.standard-row-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}

.pj-gallery-item,
.pj-benefit-card {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  background: #f5f5f5;
}

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

.pj-gallery-item:hover .standard-row-img,
.pj-benefit-card:hover .standard-row-img {
  transform: scale(1.05);
}

/* Mobile Layout: 2x2x1 Pattern */
@media (max-width: 768px) {
  .standard-row-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* Last item spans full width if odd number of items */
  .standard-row-grid>div:last-child:nth-child(odd) {
    grid-column: span 2;
  }
}