/* ============================================
   Mana Verdant Terraces - Landing Page
   Theme: Maroon Brown + Gold Accent
   ============================================ */

:root {
  --primary: #51383b;
  --primary-light: #6b4d50;
  --primary-dark: #3e2a2d;
  --primary-darker: #2c1e20;
  --gold: #c9a84c;
  --gold-light: #d4b96a;
  --white: #ffffff;
  --off-white: #f5f7f8;
  --light: #eef1f3;
  --border: #dde2e6;
  --text-dark: #1a1a1a;
  --text-body: #555555;
  --text-muted: #999999;
  --font-heading: "Cormorant", Georgia, serif;
  --font-body: "Poppins", -apple-system, sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.12);
  --transition: 0.3s ease;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-body);
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  transition:
    color var(--transition),
    background var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  overflow: hidden;
}

::selection {
  background: rgba(201, 168, 76, 0.2);
  color: var(--text-dark);
}

/* ---- Section Structure ---- */
.section-block {
  padding: 100px 0;
}

.section-block--white {
  background: var(--white);
}

.section-block--light {
  background: var(--off-white);
}

.section-block--dark {
  background: var(--primary);
  position: relative;
}

.section-block--dark::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.section-header {
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-right: 36px;
}

.section-label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-label--light {
  color: rgba(255, 255, 255, 0.6);
}

.section-label--light::before {
  background: rgba(255, 255, 255, 0.3);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.text-white {
  color: var(--white) !important;
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* ---- Content Block ---- */
.content-block h2 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.content-block h2 em {
  font-style: normal;
  color: var(--gold);
}

.content-block p {
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ---- Buttons ---- */
.btn-primary-fill {
  background: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-fill:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 59, 60, 0.3);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 32px;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  width: auto;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 59, 60, 0.3);
}

.btn-submit--gold {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-submit--gold:hover {
  background: #b8963e;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.btn-submit--full {
  width: 100%;
}

.btn-submit--sm {
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 1.5px;
}

.btn-submit i {
  font-size: 16px;
  transition: transform var(--transition);
}

.btn-submit:hover i {
  transform: translateX(4px);
}

.btn-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-price {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-price:hover {
  background: #b8963e;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

/* ---- Navbar ---- */
.navbar {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 18px 0;
  transition:
    padding 0.4s ease,
    background-color 0.4s ease,
    box-shadow 0.4s ease;
  box-shadow: none;
  z-index: 1000;
}

@media (min-width: 992px) {
  .navbar .container {
    max-width: 85%;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar .navbar-collapse {
    flex: 1 1 auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .navbar .navbar-nav-center {
    margin: 0 auto !important;
  }

  .navbar .navbar-cta-wrap {
    flex-shrink: 0;
  }
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}

.navbar.scrolled .navbar-brand img {
  filter: none;
}

.navbar-phone {
  order: 2;
  margin-right: 12px;
}

.navbar-phone a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  transition: all 0.4s ease;
}

.navbar.scrolled .navbar-phone a {
  border-color: var(--primary);
  color: var(--primary);
}

.navbar-phone a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.navbar .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 16px !important;
  position: relative;
  transition: color 0.4s ease;
}

.navbar.scrolled .nav-link {
  color: var(--text-dark);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--primary);
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold-light);
}

.nav-cta {
  padding: 10px 22px !important;
  font-size: 0.85rem !important;
  letter-spacing: 2px !important;
  border-radius: var(--radius) !important;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
  order: 3;
  width: 36px;
  height: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background-color 0.4s ease;
}

.navbar.scrolled .toggler-icon-bar {
  background: var(--text-dark);
}

/* Hide hamburger when menu is open */
.navbar-toggler[aria-expanded="true"] {
  display: none !important;
}

/* Close button inside mobile menu */
.mobile-menu-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-dark);
  padding: 4px 8px;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--primary);
}

/* ---- Hero Section ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--primary-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
  pointer-events: none;
}

/* Centered Logo + Heading + CTA */
.hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 90%;
  max-width: 600px;
}

.hero-tags {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-tag i {
  font-size: 12px;
  color: var(--gold);
}

.hero-logo {
  max-width: 280px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.hero-center h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.25;
  margin-bottom: 14px;
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(0, 0, 0, 0.4);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-shadow:
    0 1px 12px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(0, 0, 0, 0.3);
}

.hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-usp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-usp i {
  font-size: 13px;
  color: var(--gold);
}

/* Mana-style CTA button */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  text-decoration: none;
  margin: 0.5rem 0 0 0;
  transition: color var(--transition);
}

.hero-cta-btn span {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  position: relative;
  padding-bottom: 4px;
}

.hero-cta-btn span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.hero-cta-btn:hover span::after {
  transform: scaleX(1);
}

.hero-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.hero-cta-icon i {
  font-size: 16px;
  color: var(--white);
}

.hero-cta-btn:hover {
  color: var(--white);
}

.hero-cta-btn:hover .hero-cta-icon {
  background: var(--white);
  border-color: var(--white);
}

.hero-cta-btn:hover .hero-cta-icon i {
  color: var(--primary);
}

/* Project Info Bar (Sub Content - overlaps banner bottom on desktop) */
.project-info-bar {
  position: relative;
  z-index: 10;
  margin-top: -29px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-info-inner {
  display: flex;
  align-items: stretch;
  width: 90%;
  max-width: 1200px;
  flex-wrap: wrap;
  background-color: #ffffff;
  box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.12);
}

.project-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(81, 56, 59, 0.2);
}

.project-info-item:last-child {
  border-right: none;
}

.project-info-icon {
  color: #51383b;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-info-icon svg {
  width: 24px;
  height: 24px;
}

.project-info-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 17px;
  color: #51383b;
  margin-bottom: 6px;
}

.project-info-value {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: #2c2c2c;
  line-height: 20px;
}

/* Bottom Stats Bar */
.hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  display: flex;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-bar-item {
  flex: 1;
  padding: 18px 24px;
  text-align: center;
  position: relative;
}

.hero-bar-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-bar-item:last-child::after {
  display: none;
}

.hero-bar-label {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.hero-bar-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.3px;
}

/* About Form Card (next to overview) */
.about-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 90px;
}

.about-form-header {
  background: var(--primary);
  padding: 28px 32px;
  color: var(--white);
}

.about-form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 600;
}

.about-form-header p {
  font-size: 0.95rem;
  opacity: 0.7;
  margin: 0;
  font-weight: 300;
}

.about-form {
  padding: 28px 32px 32px;
}

.form-floating-group {
  margin-bottom: 18px;
  position: relative;
}

.form-floating-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-input::placeholder {
  color: #ccc;
  font-weight: 400;
}

.phone-input-wrap {
  display: flex;
  align-items: stretch;
}

.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input--phone {
  border-radius: 0 8px 8px 0;
}

.form-privacy {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 14px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.form-privacy i {
  font-size: 12px;
}

.invalid-feedback {
  font-size: 12px;
  margin-top: 4px;
}

/* ---- Trust Strip ---- */
.trust-strip {
  background: var(--primary);
  padding: 0;
  border-top: 2px solid var(--gold);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  text-align: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 200px;
}

.trust-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-item:last-child::after {
  display: none;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  flex-shrink: 0;
}

.trust-icon i {
  font-size: 12px;
  color: var(--gold);
}

.trust-item strong {
  color: var(--gold);
}

/* ---- About Section ---- */
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-visual:hover img {
  transform: scale(1.03);
}

.about-visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius);
}

.about-visual-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1;
}

.about-visual-badge span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.6;
  font-weight: 500;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.feature-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.feature-item i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ---- Pricing Table ---- */
/* ---- Architectural Plans Section ---- */
/* ---- Architectural Plans Section ---- */
.plans-section {
  margin-top: 80px;
  padding: 0;
  background: transparent;
}

.plans-header {
  margin-bottom: 0;
  padding: 0 0 30px 0;
}

.plans-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 18px;
  color: #51383b;
  padding: 5px 12px;
  border: 1px solid rgba(81, 56, 59, 0.2);
  border-radius: 50px;
  margin-bottom: 16px;
}

.plans-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 600;
  color: #2c2c2c;
  line-height: 1.25;
  max-width: 100%;
  margin: 0;
}

/* Plans Tabs */
.mana-plans-tabs {
  display: flex;
  justify-content: flex-end;
}

.mana-plans-tabs-right {
  display: flex;
  column-gap: 50px;
  margin-bottom: 60px;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(81, 56, 59, 0.1);
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
}

.mana-plan-tab {
  cursor: pointer;
  letter-spacing: 1.5px;
  font-size: 14px;
  font-family: var(--font-body);
  color: #9a8f8f;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.mana-plan-tab.active {
  color: #3d2b2b;
}

.mana-plan-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #3d2b2b;
}

.mana-plan-tab:hover {
  color: #3d2b2b;
}

/* Plans Images */
.mana-plans-images {
  background: #f4f1ef;
  padding: 80px;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.mana-plan-image {
  display: none;
}

.mana-plan-image.active {
  display: block;
}

.mana-plan-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  filter: blur(3px);
}

/* Request Plan Button - Mana style */
.mana-plan-cta {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.mana-plan-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #51383b;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.mana-plan-btn span {
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid #51383b;
}

.mana-plan-btn-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(81, 56, 59, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mana-plan-btn-icon svg {
  width: 14px;
  height: 14px;
}

.mana-plan-btn:hover {
  color: #3d2b2b;
}

.mana-plan-btn:hover .mana-plan-btn-icon {
  background: #51383b;
  color: #fff;
  border-color: #51383b;
}

/* ---- Highlights ---- */
/* ---- Highlights Section (Swiper Slider) ---- */
.highlights-section {
  background-color: #f9f7f4;
  padding: 100px 0;
  margin-top: 80px;
}

.highlights-swiper-wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.highlights-header {
  margin-bottom: 50px;
}

.highlights-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 18px;
  color: #51383b;
  padding: 5px 12px;
  border: 1px solid rgba(81, 56, 59, 0.2);
  border-radius: 50px;
  margin-bottom: 16px;
}

.highlights-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 600;
  color: #2c2c2c;
  line-height: 1.25;
  max-width: 60%;
}

/* Slide item */
.highlight-slide {
  position: relative;
  padding: 50px 50px 100px 50px;
  min-height: 550px;
  cursor: pointer;
  overflow: hidden;
}

.highlight-slide-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.highlight-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 35%,
    rgba(0, 0, 0, 0) 70%
  );
  width: 100%;
  height: 100%;
}

/* Slide content */
.highlight-slide-content {
  position: relative;
  z-index: 1;
  color: #fff;
  width: 40%;
}

.highlight-slide-icon {
  margin-bottom: 20px;
}

.highlight-slide-icon img {
  width: 32px;
  height: 32px;
  filter: invert(1);
}

.highlight-slide-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.3;
}

.highlight-slide-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Slide counter */
.highlight-slide-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  column-gap: 10px;
  letter-spacing: 2px;
  z-index: 1;
}

.highlight-slide-counter span {
  display: block;
}

.counter-current {
  font-family: var(--font-heading);
  font-size: 50px;
  position: relative;
  top: -16px;
  font-weight: 300;
}

.counter-line {
  width: 30px;
  height: 1px;
  background: #fff;
}

.counter-total {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
}

/* Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.animate-fade-up.delay-2 {
  transition-delay: 0.2s;
}

.swiper-slide-active .animate-fade-up {
  opacity: 1;
  transform: translateY(0);
}

/* Swiper pagination */
.highlights-pagination {
  position: relative;
  margin-top: 30px;
  text-align: center;
}

.highlights-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #51383b;
  opacity: 0.25;
  transition: all 0.3s ease;
}

.highlights-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 5px;
  background: #51383b;
}

/* ---- Gallery Section ---- */
.gallery-section {
  padding: 50px 0;
}

.gallery-heading-wrap h2 {
  color: #51383b;
  font-size: 2.5vw;
  font-family: var(--font-heading);
  text-align: center;
  margin-bottom: 30px;
}

/* Gallery Nav Tabs */
.gallery-section .nav-tabs {
  border-bottom: none;
  gap: 8px;
  justify-content: center;
}

.gallery-section .nav-tabs .nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #51383b;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 32px;
  border: 1px solid rgba(81, 56, 59, 0.2);
  border-radius: 50px;
  background: transparent;
  transition: all 0.3s ease;
}

.gallery-section .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #51383b;
  border-color: #51383b;
}

.gallery-section .nav-tabs .nav-link:focus,
.gallery-section .nav-tabs .nav-link:hover {
  color: #fff;
  background-color: #51383b;
  border-color: #51383b;
}

/* Gallery Image */
.gal_img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gal_img a {
  display: block;
  position: relative;
}

.gal_img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gal_img:hover img {
  transform: scale(1.05);
}

.gal_img .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.gal_img:hover .img-overlay {
  background: rgba(0, 0, 0, 0.15);
}

/* Owl Nav Arrows */
.gal-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 10px;
}

.gal-carousel .owl-nav button {
  pointer-events: all;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.gal-carousel .owl-nav button:hover .hero-cta-icon {
  background: var(--white);
  border-color: var(--white);
}

.gal-carousel .owl-nav button:hover .hero-cta-icon i {
  color: var(--primary);
}

/* ---- Amenities ---- */
.amenity-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.amenity-tab {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 11px 24px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.amenity-tab.active,
.amenity-tab:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.amenity-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.amenity-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.amenity-floor-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
  margin-top: 24px;
}

.amenity-floor-label:first-child {
  margin-top: 0;
}

.amenity-zone-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.amenity-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--light);
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 500;
}

.amenity-list li:last-child {
  border-bottom: none;
}

.amenity-list li::before {
  content: "\F272";
  font-family: "bootstrap-icons";
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}

/* ---- Location Section (Accordion) ---- */
.loc-section {
  padding: 50px 0;
}

.loc-title-wrap h2 {
  color: #51383b;
  font-size: 2.5vw;
  font-family: var(--font-heading);
  text-align: center;
  margin-bottom: 40px;
}

.loc-section .accordion-item {
  border: none;
  background-color: transparent;
}

.loc-section .accordion-button {
  background-color: transparent;
  border-bottom: 1px solid #51383b;
  border-radius: 0;
  padding: 16px 20px;
  box-shadow: none;
}

.loc-section .accordion-button:focus {
  border-bottom: 1px solid #51383b;
  box-shadow: none;
}

.loc-section .accordion-button::after {
  filter: none;
}

.loc-section .accordion-button:not(.collapsed)::after {
  filter: none;
}

.loc-section .accordion-button p {
  color: #51383b;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0;
}

.loc-section .accordion-body {
  padding: 16px 20px;
}

.loc-section .accordion-body .row {
  padding: 6px 0;
  border-bottom: 1px solid rgba(81, 56, 59, 0.1);
}

.loc-section .accordion-body .row:last-child {
  border-bottom: none;
}

.loc-section .accordion-body p {
  color: #51383b;
  font-size: 14px;
  font-family: var(--font-body);
  margin: 0;
}

.loc-section .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0;
}

.loc-section iframe {
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

/* ---- CTA Section ---- */
.cta-section {
  background: var(--off-white);
  padding: 0;
}

.cta-inner {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 80px 0;
}

.cta-inner::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner h2 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  padding: 16px 36px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta--primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-cta--primary:hover {
  background: #b8963e;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.btn-cta--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta--outline:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- Contact Section ---- */
/* ---- Get in Touch Section ---- */
.mana-contact-section {
  margin-top: 80px;
  margin-bottom: -50px;
  padding: 50px 10px;
  background-image: url("../images/83e03f33.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mana-contact-inner {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0;
  align-items: stretch;
}

/* Left side - text over background */
.mana-contact-left {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
}

.mana-contact-left-content {
  color: #fff;
}

.mana-contact-title {
  font-family: var(--font-heading);
  font-size: 90px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.mana-contact-subtitle {
  font-family: var(--font-body);
  font-size: 24px;
  color: #fff;
  margin: 0;
}

/* Right side - white form card */
.mana-contact-right {
  width: 45%;
  background-color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mana-contact-form-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 4px;
}

.mana-contact-form-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* Form fields */
.mana-form-field {
  margin-bottom: 15px;
  width: 100%;
}

.mana-form-field label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: #51383b;
  display: block;
  margin-bottom: 6px;
}

.mana-form-field label span {
  color: #dc3232;
}

.mana-form-field input,
.mana-form-field textarea {
  padding: 12px 16px;
  width: 100%;
  background-color: #fff;
  color: #2c2c2c;
  font-size: 14px;
  font-family: var(--font-body);
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.mana-form-field input:focus,
.mana-form-field textarea:focus {
  border-color: #51383b;
  outline: none;
  box-shadow: none;
}

.mana-form-field textarea {
  min-height: 100px;
  resize: vertical;
}

/* Bootstrap validation styles for contact form */
.mana-form-field .invalid-feedback {
  font-size: 12px;
  margin-top: 4px;
}

.was-validated .mana-form-field input:invalid,
.was-validated .mana-form-field textarea:invalid {
  border-color: #dc3545;
}

.was-validated .mana-form-field input:valid,
.was-validated .mana-form-field textarea:valid {
  border-color: #198754;
}

/* Submit button - Mana style */
.mana-form-submit {
  margin-top: 20px;
  text-align: center;
}

.mana-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  letter-spacing: 3px;
  text-decoration: none;
  transition: color 0.3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-body);
  position: relative;
  text-transform: uppercase;
  color: #51383b;
}

.mana-submit-btn .btn-text {
  position: relative;
  padding: 0.3em 0;
  line-height: 1.2;
}

.mana-submit-btn .underline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #51383b;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.mana-submit-btn:hover .underline,
.mana-submit-btn:focus-visible .underline {
  transform: scaleX(1);
}

.mana-submit-btn .btn-icon {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #51383b;
  border-radius: 50%;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.mana-submit-btn:hover .btn-icon,
.mana-submit-btn:focus-visible .btn-icon {
  background-color: #51383b;
  border-color: #51383b;
}

.mana-submit-btn:hover svg,
.mana-submit-btn:focus-visible svg {
  stroke: #fff;
}

/* ---- Footer ---- */
/* ---- Mana Footer ---- */
.mana-footer {
  background-color: #2c2c2c;
  padding: 50px 0;
  margin-top: 50px;
  color: rgba(255, 255, 255, 0.7);
}

.mana-footer-top {
  padding-bottom: 0;
}

.mana-footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.mana-footer-address {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.mana-footer-heading {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.mana-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mana-footer-links li {
  margin-bottom: 10px;
}

.mana-footer-links li a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mana-footer-links li a:hover {
  color: #fff;
}

.mana-footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mana-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mana-footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.mana-footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.mana-footer-bottom {
  padding-top: 0;
}

.mana-footer-copyright {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.mana-footer-policy {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.mana-footer-policy li a {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mana-footer-policy li a:hover {
  color: #fff;
}

/* ---- WhatsApp Float ---- */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Sticky Mobile CTA ---- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary);
  padding: 10px 12px;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  gap: 8px;
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--gold);
  color: var(--white);
  padding: 12px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}

.mobile-cta-btn:hover {
  color: var(--white);
  background: #b8963e;
}

/* ---- Modal ---- */
.modal-enquire {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.modal-enquire .modal-header {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 24px 28px;
}

.modal-enquire .modal-header .modal-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.modal-enquire .modal-header p {
  font-size: 13px;
  opacity: 0.6;
  margin: 4px 0 0;
}

.modal-enquire .modal-header .btn-close {
  filter: invert(1);
  opacity: 0.5;
}

.modal-enquire .modal-header .btn-close:hover {
  opacity: 1;
}

.modal-enquire .modal-body {
  padding: 28px;
}

.modal-enquire .form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.modal-enquire .form-control {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.modal-enquire .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.modal-enquire .input-group-text {
  background: var(--off-white);
  border-color: var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ---- Success State ---- */
.form-success {
  display: none;
  text-align: center;
  padding: 36px 20px;
}

.form-success i {
  font-size: 48px;
  color: #377f49;
  margin-bottom: 16px;
  display: block;
}

.form-success h5 {
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.form-success p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1199.98px) {
  .content-block h2 {
    font-size: 2.2rem;
  }

  .cta-inner h2 {
    font-size: 2rem;
  }
}

@media (max-width: 991.98px) {
  .section-block {
    padding: 80px 0;
  }

  .hero-section {
    min-height: 70vh;
  }

  .hero-logo {
    max-width: 220px;
  }

  .hero-center h1 {
    font-size: 1.8rem;
  }

  .hero-bar-item {
    padding: 14px 16px;
  }

  .hero-bar-value {
    font-size: 13px;
  }

  .plans-title {
    max-width: 100%;
    font-size: 2rem;
  }

  .mana-contact-title {
    font-size: 50px;
  }

  .project-info-bar {
    margin-top: 0;
  }

  .project-info-inner {
    width: 100%;
  }

  .project-info-item {
    padding: 18px 12px;
  }

  .project-info-value {
    font-size: 1rem;
  }

  .project-info-label {
    font-size: 1rem;
  }

  .highlights-section {
    margin-top: 40px;
    padding: 80px 0;
  }

  .highlights-swiper-wrap {
    width: 95%;
  }

  .highlights-title {
    max-width: 100%;
    font-size: 2rem;
  }

  .highlight-slide {
    padding: 30px 30px 80px;
    min-height: 450px;
  }

  .highlight-slide-content {
    width: 60%;
  }

  .about-form-card {
    position: static;
  }

  .content-block h2 {
    font-size: 2rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .trust-item::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .section-block {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero-section {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-bg {
    background-position: center 30%;
  }

  .hero-bg-img {
    object-position: center 30%;
  }

  .hero-tag {
    font-size: 10px;
    padding: 5px 12px;
  }

  .hero-logo {
    max-width: 160px;
  }

  .hero-center h1 {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }

  .hero-sub {
    font-size: 10px;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
  }

  .hero-usps {
    gap: 4px 12px;
    margin-bottom: 20px;
  }

  .hero-usp {
    font-size: 10px;
  }

  .hero-cta-btn span {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero-cta-icon {
    width: 36px;
    height: 36px;
  }

  .project-info-bar {
    margin-top: 0;
  }

  .project-info-inner {
    width: 100%;
  }

  .project-info-item {
    flex: 1 1 100%;
    padding: 18px 14px;
    border-right: 1px solid rgba(81, 56, 59, 0.2);
    border-bottom: 1px solid rgba(81, 56, 59, 0.2);
  }

  .project-info-item:nth-child(2) {
    border-right: none;
  }

  .project-info-item:nth-child(4) {
    border-right: none;
  }

  .project-info-item:nth-child(4) {
    border-bottom: none;
  }

  .project-info-label {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
  }

  .project-info-value {
    font-size: 1rem;
    word-break: break-all;
  }

  .project-info-icon svg {
    width: 20px;
    height: 20px;
  }

  .hero-bar {
    flex-wrap: wrap;
  }

  .hero-bar-item {
    flex: 1 1 50%;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-bar-item:nth-child(odd)::after {
    display: block;
  }

  .hero-bar-item:nth-child(even)::after {
    display: none;
  }

  .hero-bar-item:nth-child(n + 3) {
    border-bottom: none;
  }

  .hero-bar-label {
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .hero-bar-value {
    font-size: 12px;
  }

  .about-form-header {
    padding: 22px 24px;
  }

  .about-form-header h3 {
    font-size: 1.3rem;
  }

  .about-form {
    padding: 22px 24px 26px;
  }

  .content-block h2 {
    font-size: 1.7rem;
  }

  .trust-strip-inner {
    flex-direction: column;
  }

  .trust-item {
    padding: 14px 20px;
    min-width: 100%;
    justify-content: flex-start;
    font-size: 12px;
  }

  .trust-item::after {
    display: none;
  }

  .mobile-cta {
    display: flex;
  }

  .mana-footer {
    padding-bottom: 72px;
    margin-top: 30px;
  }

  .mana-footer-policy {
    justify-content: flex-start;
    gap: 12px 20px;
  }

  .whatsapp-btn {
    display: none;
  }

  .gallery-heading-wrap h2 {
    font-size: 8vw;
  }

  .gallery-section .nav-tabs {
    gap: 6px;
    flex-wrap: wrap;
  }

  .gallery-section .nav-tabs .nav-link {
    font-size: 11px;
    padding: 8px 16px;
    letter-spacing: 0.5px;
  }

  .gal_img img {
    height: auto;
  }

  .amenity-image img {
    height: 260px;
  }

  .cta-inner {
    padding: 50px 24px;
    margin: 60px 0;
    border-radius: var(--radius);
  }

  .cta-inner h2 {
    font-size: 1.7rem;
  }

  .highlights-section {
    padding: 50px 0;
    margin-top: 20px;
  }

  .highlights-swiper-wrap {
    width: 100%;
  }

  .highlights-header {
    margin-bottom: 30px;
  }

  .highlights-title {
    font-size: 1.4rem;
    max-width: 100%;
  }

  .highlight-slide {
    padding: 24px 20px 80px;
    min-height: 360px;
  }

  .highlight-slide-content {
    width: 100%;
  }

  .highlight-slide-title {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }

  .highlight-slide-desc {
    font-size: 13px;
    line-height: 1.6;
  }

  .highlight-slide-overlay {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.1) 100%
    );
  }

  .counter-current {
    font-size: 32px;
    top: -10px;
  }

  .counter-line {
    width: 20px;
  }

  .counter-total {
    font-size: 12px;
  }

  .highlight-slide-counter {
    bottom: 16px;
    right: 16px;
  }

  .counter-current {
    font-size: 36px;
  }

  .mana-contact-section {
    margin-top: 40px;
    padding: 30px 10px;
  }

  .mana-contact-inner {
    flex-direction: column;
  }

  .mana-contact-left {
    width: 100%;
    padding: 40px 20px;
  }

  .mana-contact-right {
    width: 100%;
  }

  .mana-contact-title {
    font-size: 36px;
  }

  .mana-contact-subtitle {
    font-size: 18px;
  }

  .plans-section {
    margin-top: 40px;
  }

  .plans-title {
    max-width: 100%;
    font-size: 1.6rem;
  }

  .mana-plans-tabs {
    justify-content: center;
  }

  .mana-plans-tabs-right {
    column-gap: 30px;
  }

  .mana-plan-image img {
    height: auto;
  }

  .mana-plans-images {
    padding: 20px 20px 80px 20px;
  }

  .mana-plan-cta {
    right: 50%;
    transform: translateX(50%);
  }

  .amenity-tab {
    padding: 9px 18px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .navbar .nav-link {
    padding: 10px 0 !important;
    letter-spacing: 1.5px;
  }

  .navbar .nav-link::after {
    display: none;
  }

  /* Hide Download Brochure button on mobile */
  .navbar-cta-wrap {
    display: none !important;
  }

  /* Off-canvas slide-in from right */
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    padding: 80px 24px 32px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1050;
    display: block !important;
    overflow-y: auto;
  }

  .navbar-collapse.show {
    transform: translateX(0);
  }

  .navbar-collapse.collapsing {
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

  .navbar-collapse.collapsing.show {
    transform: translateX(0);
  }

  /* Close button inside mobile menu */
  .navbar-collapse .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .navbar-collapse .nav-link {
    color: var(--text-dark) !important;
    font-size: 1rem;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  /* Keep toggler visible when menu is open */
  .navbar-toggler[aria-expanded="true"] {
    display: none !important;
  }

  .navbar:has(.navbar-collapse.show) .navbar-brand img,
  .navbar:has(.navbar-collapse.collapsing) .navbar-brand img {
    filter: none;
  }

  .navbar:has(.navbar-collapse.show) .toggler-icon-bar,
  .navbar:has(.navbar-collapse.collapsing) .toggler-icon-bar {
    background: var(--text-dark);
  }

  .navbar:has(.navbar-collapse.show) .navbar-phone a,
  .navbar:has(.navbar-collapse.collapsing) .navbar-phone a {
    border-color: var(--primary);
    color: var(--primary);
  }
}

@media (max-width: 575.98px) {
  .section-block {
    padding: 48px 0;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .content-block h2 {
    font-size: 1.5rem;
  }

  .section-label {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .loc-title-wrap h2 {
    font-size: 8vw;
  }

  .loc-section .accordion-button p {
    font-size: 15px;
  }

  .loc-section .accordion-body p {
    font-size: 13px;
  }

  .loc-section iframe {
    margin-top: 30px;
  }

  .btn-submit {
    padding: 14px 24px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
}

/* Tablet landscape fine-tuning */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-form-card {
    max-width: 480px;
    margin: 0 auto;
  }
}
