html, body {
  margin: 0 !important;
  padding: 0 !important;
  height: 100%;
}

/* =======================
   GLOBAL FONT DEFINITIONS
   ======================= */

/* THE SEASONS – FOR MAIN HEADINGS */
@font-face {
  font-family: 'The Seasons';
  src: url('/Assest/the-seasons-regular.tf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* ACUMIN PRO – FOR BODY & SUBTEXT */
@font-face {
  font-family: 'Acumin Pro';
  src: url('/FONT/Acumin-RPro.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

/* BODY TEXT */
@font-face {
  font-family: 'Acumin Pro';
  src: url('/FONT/Acumin-RPro.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: 'Acumin Pro', Arial, sans-serif;
}
body {
  padding-top: 0 !important;
}



/* HEADINGS */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.overview-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: #2b2b2b;
}

/* PARAGRAPHS */
p {
  font-size: 15px;
  line-height: 1.7;
}

/* BUTTONS */
button,
.btn {
  font-family: "Acumin Pro", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}


.close-btn {
  position: absolute;
  top: 8px;
  right: 18px;

  font-size: 40px !important;
  font-weight: 300 !important;

  font-family: inherit !important;
  letter-spacing: normal !important;
  text-transform: none !important;

  color: #fff;
  background: transparent;
  border: none;

  cursor: pointer;
  line-height: 1;
  padding: 0;

  transition: transform 0.3s ease, opacity 0.3s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
  opacity: 0.8;
}
html,
body {
  margin: 0;
  padding-top: 0 !important;
}

:root {
  --primary-color: #b08d57;
  --secondary-color: #b08d57;
  --accent-color: #d4af37;
  --bg-light: #f8f9fa;
  --text-muted: #6c757d;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 70px; /* navbar height */
}
@media (max-width: 768px) {
  body {
    padding-top: 56px; /* mobile navbar height */
    margin: 0 !important;
    padding-bottom: 0 !important;
  }
}

.topnav {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(98, 63, 30, 0.1);
  padding: 0.5rem 0;
}

.nav-link {
  color: var(--primary-color) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--secondary-color) !important;
  transform: translateY(-1px);
}
.navbar {
  margin: 0 !important;
}

/* Heading */
.enquiry-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: 26px;
  letter-spacing: 2px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 8px;
  margin-top: 10px;
}


/* PRIMARY BUTTON (SUBMIT) */
.btn-primary {
  background: #fff;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 1px;
  transition: all 0.3s ease;
  color:#b08d57;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: #fff;
  color: #b08d57;
  transform: translateY(-2px);
}
.downloadBrochureBtn2{
  background: #b08d57;
  color: #fff;
}

/* SECONDARY BUTTON (CANCEL) */
.btn-secondary {
  background:#fff ;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 1px;
  transition: all 0.3s ease;
  color: #b08d57;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-secondary:hover {
  background: #ffff;
  color: #b08d57;
  transform: translateY(-2px);
}
/* INPUT FIELDS */
.enquiry-form input[type="text"],
.enquiry-form input[type="email"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.8);
  padding: 12px 2px;
  font-size: 15px;
  color: #ffffff;
  width: 100%;
  transition: all 0.3s ease;
}

/* Placeholder */
.enquiry-form input::placeholder {
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
}

/* Focus */
.enquiry-form input:focus {
  outline: none;
  border-bottom-color: #ffffff;
}
.btn-accent {
  background: #b08d57;
  border: none;
  color: white !important;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-accent::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #b08d57;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn-accent:active::before {
  width: 300px;
  height: 300px;
}

.btn-accent:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: #b08d57;
  color: var(--primary-color);
}

/* ================= INQUIRY MODAL SIZE FIX ================= */

/* Modal box control */
#inquiryModal .modal-dialog {
  max-width: 720px;          /* Desktop perfect width */
  margin: 150px auto;
}

@media (max-width: 768px) {
  #inquiryModal .modal-dialog {
    max-width: 92%;          /* Mobile side gap fix */
    margin: 15px auto;
  }
}

/* Modal content look */
#inquiryModal .modal-content {
  background: #b08d57;
  border-radius: 6px;
  padding: 20px 22px;
}

/* Header spacing */
#inquiryModal .modal-header {
  border-bottom: none;
  padding-bottom: 10px;
}

/* FORM GRID CONTROL */
#inquiryModal .row.g-2 {
  row-gap: 18px;             /* vertical spacing */
}

/* INPUT SIZE + BORDER STYLE */
#inquiryModal .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.85);
  border-radius: 0;
  padding: 10px 4px;
  font-size: 15px;
  color: #ffffff;
}

/* Focus effect */
#inquiryModal .form-control:focus {
  outline: none;
  box-shadow: none;
  border-bottom-color: #ffffff;
}

/* Placeholder */
#inquiryModal .form-control::placeholder {
  color: rgba(255,255,255,0.9);
}

/* Checkbox alignment */
#inquiryModal .form-check {
  margin-top: 5px;
}

#inquiryModal .form-check-label {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
}

/* BUTTON AREA SPACING */
#inquiryModal .text-end {
  margin-top: 20px;
}

/* Buttons size balance */
#inquiryModal .btn {
  min-width: 120px;
}

/* MOBILE FORM TUNING */
@media (max-width: 576px) {

  #inquiryModal .modal-content {
    padding: 18px 16px;
  }

  #inquiryModal .form-control {
    font-size: 14px;
    padding: 9px 2px;
  }

  #inquiryModal .btn {
    width: 100%;             /* Mobile full-width buttons */
    margin-top: 8px;
  }

  #inquiryModal .text-end {
    text-align: center !important;
  }
}

/* CLOSE BUTTON SIZE */
#inquiryModal .close-btn {
  font-size: 34px;
  color: #ffffff;
  cursor: pointer;
}
/* ================= MODAL SIDE GAP FORCE FIX ================= */

/* Desktop + Mobile both */
#inquiryModal .modal-dialog {
  padding-left: 16px;
  padding-right: 16px;
}

/* Extra safety for very small screens */
@media (max-width: 576px) {
  #inquiryModal .modal-dialog {
    margin-left: auto;
    margin-right: auto;
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* ===== HERO FULL WIDTH – MOBILE + DESKTOP ===== */
/* ===== HERO WRAPPER ===== */
.hero {
  position: relative;
  width: 100%;
  height: 95%;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100%;
}

/* ===== SLIDES ===== */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* ===== IMAGE role ===== */
.hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    height: auto;
    width: 100%;
    overflow: hidden;
    margin: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;

  }

  .slide {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    display: none;
    transition: opacity 1s ease-in-out;
    margin: 0 !important;
    padding: 0 !important;
  }

  .slide.active {
    opacity: 1;
    display: block;
    animation: slideIn 0.5s ease-in-out;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    transition: opacity 0.8s ease-in-out;

  }
}


/* OVERVIEW SECTION STYLE */
section {
  padding: 40px 0;
  margin: 0;
}


#overview {
  background: #f6f6f6;
  margin-top: 0;
  padding-top: 60px;
}

/* Overview Image */
.overview-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Optional: spacing */
#overview {
  background: #f8f8f8;
}

/* Heading */
.overview-title {
  font-family: "Libre Baskerville", serif;
  font-size: 42px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 25px;
}

/* Paragraph text */
.overview-text {
  font-family: "Lato", sans-serif;
  font-size: 15px; /* pehle 17px tha */
  line-height: 1.6; /* gap kam */
  color: #4a4a4a;
  margin-bottom: 10px; /* paragraphs ke beech gap kam */
}

@media (max-width: 768px) {
  .overview-text {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 8px;
  }
}

/* Width control like Raymond */
@media (min-width: 992px) {
  #overview .col-lg-9 {
    max-width: 760px;
  }
}
/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


.section-title {
  font-size: 36px;
  font-weight: 600;
  color: #2b2b2b;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 16px;
  color: #6c757d;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
  }
}

:root {
  --theme-color: #b08d57;
  --dark-color: #111;
}

/* ================= CONFIG SECTION ================= */

.config-section {
  padding: 70px 15px;
  background: #f8f8f8;
}

.config-heading {
  text-align: center;
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 4px;
}

.config-sub {
  text-align: center;
  color: var(--theme-color);
  margin-bottom: 35px; /* ⬅ reduced */
  letter-spacing: 2px;
}

/* ================= SLIDER ================= */

.config-slider {
  display: flex;
  gap: 18px; /* ⬅ image gap reduced */
  overflow: hidden;
}

/* ================= CARD ================= */

.config-card {
  flex: 0 0 32%;
  text-align: center;
}

.config-card img {
  width: 100%;
  height: 300px; /* ⬅ slightly reduced */
  object-fit: cover;
  border-radius: 0;
}

/* ================= TEXT ================= */

.config-card h3 {
  margin: 10px 0 2px; /* ⬅ tight spacing */
  font-size: 20px;
}

.sqft {
  display: block;
  margin: 0 0 10px; /* ⬅ reduced */
  color: #777;
  font-size: 13px;
}

/* ================= BUTTON ================= */

.enquiry-btn {
  width: 115px;
  height: 34px;
  background: #b08d57;
  border: 1px solid var(--theme-color);
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

.enquiry-btn:hover {
  background: #fff;
  color: #b08d57;
}

/* ================= MOBILE (RUNWAL STYLE) ================= */

@media (max-width: 768px) {
  .config-slider {
    gap: 14px; /* ⬅ tighter on mobile */
  }

  .config-card {
    flex: 0 0 85%;
  }

  .config-card img {
    width: 100%;
    aspect-ratio: 1 / 1; /* ⬅ square image */
    height: auto;
    object-fit: cover;
  }

  .config-card h3 {
    margin-top: 8px;
    font-size: 19px;
  }

  .sqft {
    margin-bottom: 8px;
  }
}

/* ================= ARROW NAV ================= */

.config-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px; /* ⬅ reduced */
  margin: 12px 0 0; /* ⬅ extra space removed */
}

/* Text arrow style */
.config-nav .arrow {
  background: none;
  border: none;
  font-size: 30px; /* 👈 arrow size */
  font-weight: 300;
  color: #b08d57;
  cursor: pointer;
  line-height: 1;
  padding: 0 10px;
}

/* Hover effect (subtle) */
.config-nav:hover {
  color: #b08d57;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .arrow-text {
    font-size: 38px;
  }
}


.feature-card,
.amenity-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  background: linear-gradient(145deg, var(--white), var(--bg-light));
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  padding: 25px 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;

  /* alignment fix */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.feature-card::before,
.amenity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before,
.amenity-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover,
.amenity-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(98, 63, 30, 0.15);
}

.feature-card i,
.amenity-card i {
  color: var(--primary-color);
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.feature-card:hover i,
.amenity-card:hover i {
  transform: scale(1.2) rotate(10deg);
}

/* text alignment */
.feature-card h6,
.amenity-card h6 {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
}

/* Bigger gallery items */
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.4s ease;
  cursor: pointer;
}

/* FIXED VIEWPORT (your existing div) */
#imageScroller {
  position: relative;
  overflow: hidden !important;
  /* hides moving scrollbars */
  padding-bottom: 5px;
  /* optional spacing */
}

/* MOVING TRACK WRAPPER (JS will create this) */
#imageScroller .scroll-track {
  display: flex;
  gap: 22px;
  align-items: center;
  will-change: transform;
}

/* Each item (keep your styling) */
#imageScroller .item {
  flex: 0 0 auto !important;
}

.item:hover .blur-img {
  filter: none;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.img-title {
  position: absolute;
  bottom: 15px;
  /* left: 15px;
            right: 15px; */
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 10px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.item:hover .img-title {
  transform: translateY(0);
  opacity: 1;
  text-align: center;
}

.video-thumb {
  transition: all 0.3s ease;
}

.video-thumb:hover {
  transform: translateY(-5px);
}

.video-thumb iframe {
  width: 100%;
  /* max-width: 350px; */
  height: 520px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.video-thumb:hover iframe {
  transform: scale(1.05);
}

.h-scroll {
  display: flex;
  overflow-x: auto;
  gap: 25px;
  padding: 20px 0;
  scroll-behavior: smooth;
}

.h-scroll::-webkit-scrollbar {
  height: 8px;
}

.h-scroll::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 4px;
}

.section-padding {
  padding: 80px 0;
}

.section-bg {
  background: var(--primary-color);
  /*background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));*/
  color: var(--white);
}

.lead-form {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 0 auto;
}

.form-control {
  border-radius: 10px;
  border: 1px solid #e9ecef;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(98, 63, 30, 0.1);
  transform: scale(1.02);
}

.rera-box {
  transition: all 0.4s ease;
}

.rera-box:hover {
  transform: translateY(-5px) scale(1.02);
}

footer {
  background: linear-gradient(135deg, var(--bg-light), #e9ecef);
  padding: 60px 0 20px;
}

/* Modal enhancements */
.modal-content {
  border-radius: 1px;
  border: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: #b08d57;
}

.modal-header {
  border-bottom: none;
  justify-content: space-between;
}

.modal-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

/* Mobile view adjustment */
@media (max-width: 576px) {
  .modal-img {
    height: 90px; /* Smaller on mobile */
    border-radius: 6px;
  }
}

.modal-img:hover {
  transform: scale(1.05);
}

.styled-title {
  font-weight: 600;
}

.input-group .btn-outline-secondary {
  border-radius: 0 10px 10px 0;
  transition: all 0.3s ease;
}

.input-group .btn-outline-secondary:hover {
  transform: scale(1.02);
}

/* Fix for amenity cards */
.amenity-card {
  background: linear-gradient(145deg, var(--white), var(--bg-light));
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  padding: 20px;
  min-width: 120px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.amenity-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 30px rgba(98, 63, 30, 0.15);
}

/* Table row hover */
.table-hover tbody tr {
  transition: all 0.3s ease;
}

.table-hover tbody tr:hover {
  background-color: rgba(98, 63, 30, 0.05);
  transform: scale(1.01);
}

/* Footer logo hover */
footer img {
  transition: transform 0.3s ease;
}

footer img:hover {
  transform: scale(1.05);
}

/* FAQ Accordion Styling */
.accordion-button {
  font-weight: 500;
  color: var(--primary-color);
  background-color: var(--bg-light);
  border-radius: 10px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(98, 63, 30, 0.2);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(98, 63, 30, 0.1);
}

.accordion-body {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FIXED BOTTOM MOBILE NAVBAR (100% WORKING ON ALL DEVICES) */
.mobile-fixed-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;

  display: flex;
  align-items: center;
  padding: 0;

  z-index: 9999999999;

  /* Blur background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  background: rgba(255, 255, 255, 0.25); /* Light frosted glass */
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

/* BUTTONS — 50% EACH */
/* MOBILE FIXED ACTION BAR */
.mobile-fixed-bar {
  height: 56px; /* ⬅️ thoda chota */
}

/* COMMON BUTTON STYLE */
.mobile-fixed-bar .bottom-btn {
  height: 100%;
  padding: 8px 0;              /* ⬅️ height control */
  font-size: 14px;
  font-weight: 600;
  border: none;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 0;            /* clean raymond look */
  box-shadow: none;
}

/* CALL NOW — THODA CHOTA */
.mobile-fixed-bar .call-btn {
  width: 40%;                  /* ⬅️ kam width */
}

/* INQUIRY — THODA BADA */
.mobile-fixed-bar .inquiry-btn {
  width: 60%;                  /* ⬅️ zyada width */
}

/* CALL BUTTON (50% transparent) */
.mobile-fixed-bar .call-btn {
  background: #b08d57; /* secondary-color at 50% opacity */
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

/* INQUIRY BUTTON */
/* INQUIRY BUTTON (50% transparent) */
.mobile-fixed-bar .inquiry-btn {
  background: #b08d57; /* primary-color at 50% opacity */
  color: white;
  
}

/* Tap effect */
.mobile-fixed-bar .bottom-btn:active {
  opacity: 0.9;
}

.inquiry-open {
  padding-bottom: 0 !important;
  max-height: none;
  overflow: visible;
}


.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;  
}

#imageScroller {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: none !important;
}

.item {
  flex: 0 0 280px;
}

.side-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.gallery-prev,
.gallery-next {
  background: transparent;
  border: none;
  font-size: 34px;
  cursor: pointer;
  color: #b08d57;
}

.gallery-prev:hover,
.gallery-next:hover {
  color: #000;
}

/* Side dots */
.gallery-dot-left,
.gallery-dot-right {
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  display: block;
}

.gallery-dot-left.active,
.gallery-dot-right.active {
  background: #333;
  transform: scale(1.2);
}
/* ===== Gallery Section Premium ===== */

#gallery {
  background: #f8f8f8;
}

/* Scroller layout */
#imageScroller {
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}

#imageScroller::-webkit-scrollbar {
  display: none;
}

/* Each item size */
.item {
  flex: 0 0 320px; /* card width */
}

/* Card */
.gallery-card {
  background: #fff;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* Image */
.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
}

/* Title under image */
.img-title {
  position: static;
  background: none;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  padding: 12px 8px 0;
  opacity: 1;
  transform: none;
}

/* Hover – very subtle */
.gallery-card:hover {
  transform: translateY(-6px);
}

/* Arrows */
.gallery-prev,
.gallery-next {
  font-size: 28px;
  color: #b08d57;
  background: none;
}

.gallery-prev:hover,
.gallery-next:hover {
  color: #000;
}

/* Mobile */
@media (max-width: 768px) {
  .item {
    flex: 0 0 260px;
  }

  .gallery-img {
    height: 180px;
  }
}

/* ===== GALLERY FIXED ===== */

.gallery-wrap {
  width: 100%;
}

/* Scroller */
.gallery-scroller {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.gallery-scroller::-webkit-scrollbar {
  display: none;
}

/* Item width */
.item {
  flex: 0 0 300px;
}

/* Card */
.gallery-card {
  background: #fff;
  display: flex;
  flex-direction: column;
}

/* Image */
.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Title – NEVER CUT */
.img-title {
  position: static;
  padding: 12px 10px 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #222;
  text-align: center;
  white-space: normal;
  overflow: visible;
}

/* Bottom arrows – BIG & CLICKABLE */
.gallery-bottom-controls {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 25px;
}

.gallery-prev,
.gallery-next {
  background: none;
  border: none;
  font-size: 40px; /* 👈 arrow bada */
  color: #b08d57;
  cursor: pointer;
  padding: 10px 18px; /* 👈 click area bada */
  line-height: 1;
}

.gallery-prev:hover,
.gallery-next:hover {
  color: #b08d57;
  transform: scale(1.1);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .item {
    flex: 0 0 240px;
  }

  .gallery-img {
    height: 170px;
  }

  .img-title {
    font-size: 13px;
    padding-bottom: 14px;
  }
}

/* Bottom arrows wrapper */
.gallery-bottom-controls {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 25px;
}

/* Text arrow style */
.arrow-text {
  background: none;
  border: none;
  font-size: 30px; /* 👈 arrow size */
  font-weight: 300;
  color: #b08d57;
  cursor: pointer;
  line-height: 1;
  padding: 0 10px;
}

/* Hover effect (subtle) */
.arrow-text:hover {
  color: #b08d57;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .arrow-text {
    font-size: 38px;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  background: transparent;
}

/* Overlay */
.enquiry-overlay {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main Box */
.enquiry-box {
  position: relative;
  width: 50%;
  max-width: 560px; /* 👈 SIZE CONTROL */
  background: #b08d57;
  padding: 30px 30px; /* 👈 LESS PADDING */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  
}

/* Close Button (Top Right) */
.close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  opacity: 0.9;
}

.close-btn:hover {
  opacity: 1;
}

/* Heading */
.enquiry-heading {
  font-family: "Libre Baskerville", serif;
  font-size: 26px;
  letter-spacing: 2px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 8px;
  margin-top: 10px;
}

.enquiry-subheading {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

/* Form */
.enquiry-form {
  width: 100%;
}

/* Input rows */
.form-row {
  gap: 20px;
  margin-bottom: 24px;
}

.form-row.single {
  flex-direction: column;
}

/* Inputs */
input[type="text"],
input[type="email"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  padding: 12px 2px;
  font-size: 15px;
  color: #ffffff;
  width: 100%;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.5px;
}

input:focus {
  outline: none;
  border-bottom-color: #ffffff;
}

/* Consent */
.consent {
  display: flex;
  gap: 12px;
  margin-top: 5px;
  margin-bottom: 40px;
}

.consent label {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

/* BIG CTA BUTTON */
.submit-btn {
  width: 100%;
  background: #ffffff;
  color: #333;
  border: none;
  padding: 14px 0;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .enquiry-box {
    padding: 20px 20px;
    max-width: 60%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .enquiry-box {
    padding: 35px;
  }

  .form-row {
    flex-direction: column;
    gap: 22px;
  }

  .enquiry-heading {
    font-size: 26px;
  }
}
/* FORCE CLOSE BUTTON STYLE */
.close-btn {
  position: absolute !important;
  top: 1px !important;
  right: 18px !important;
  font-size: 40px !important;   /* BIG */
  font-weight: 300 !important;
  color: #ffffff !important;    /* WHITE */
  cursor: pointer !important;
  line-height: 2 !important;
  z-index: 99999 !important;
}

.close-btn:hover {
  transform: rotate(90deg) !important;
  opacity: 0.85 !important;
}
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 86px;
  z-index: 2147483647;

  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: #25D366;
  color: #fff;
  border: 2px solid #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  text-decoration: none;

  transition: all 0.3s ease;
}

.whatsapp-float i {
  font-size: 32px;
  line-height: 1;
  color: #fff !important;
}

/* Hover effect (premium feel) */
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 72px;
  }

  .whatsapp-float i {
    font-size: 30px;
  }
}

/* DESKTOP ENQUIRY FLOAT BUTTON */
.enquiry-float-btn {
  position: fixed;
  right: 0;
  top: 35%;
  transform: translateY(-50%);
  z-index: 10001;
  background: #b9975b;
  color: #fff;
  width: 58px;
  height: 190px;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enquiry-float-btn:hover {
  background: #a8854e;
}

.enquiry-float-btn span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 13px;
  line-height: 1;
}

.enquiry-float-btn::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -24px;
  height: calc(100% + 48px);
  /* border-left: 2px solid #b9975b; */
}
/* MOBILE ACTION BAR – INSTANT LOAD */
#mobileActionBar {
  display: none;
}

@media (max-width: 1024px) {
  #mobileActionBar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
  }
}

/* =======================
   FORCE GLOBAL TYPOGRAPHY
   ======================= */

/* MAIN HEADINGS – SEASONS PRO */
h1, h2 {
  font-family: 'The Seasons', serif !important;
  font-weight: 400 !important;
}

/* SUB HEADINGS */
h3, h4, h5, h6 {
  font-family: 'Acumin Pro', sans-serif !important;
  font-weight: 400 !important;
}

/* BODY TEXT – ACUMIN PRO */
body,
p,
span,
li,
a,
label,
input,
textarea,
button,
small,
div {
  font-family: 'Acumin Pro', sans-serif !important;
}

.reviews{
   font-family: 'Acumin Pro';
  src: url('/FONT/Acumin-RPro.otf') format('opentype') !important;
}
/* CONFIGURATION CARD LAYOUT */
.config-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

/* Clean card (no image) */
.config-card.clean {
  flex: 1;
  max-width: 3500px;
  height: 185px;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 15px 30px;
  text-align: center;
  background: #fff;
  transition: all 0.3s ease;
}

.config-card.clean:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transform: translateY(-6px);
}

/* Typography */
.config-card.clean h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 10px;
}

.config-card.clean .sqft {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

/* Button */
.enquiry-btn {
  width: 135px;
  height: 34px;
  background: #b08d57;
  border: 1px solid var(--theme-color);
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

.enquiry-btn:hover {
  background: #b08d57;
  color: #fff;
}

/* MOBILE VIEW → VERTICAL */
@media (max-width: 768px) {
  .config-cards {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .config-card.clean {
    width: 100%;
    max-width: 100%;
  }
}
.config-slider {
  contain: layout paint;
}

.config-card img {
  display: block;
}
/* Remove underline from text inside mobile action bar */
#mobileActionBar a,
#mobileActionBar a span,
#mobileActionBar button,
#mobileActionBar button span {
  text-decoration: none !important;
  border-bottom: none !important;
}

/* Mobile tap / focus underline fix */
#mobileActionBar a:focus,
#mobileActionBar a:active,
#mobileActionBar a:hover,
#mobileActionBar button:focus,
#mobileActionBar button:active {
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* If underline is coming from ::after */
#mobileActionBar a::after,
#mobileActionBar a span::after {
  content: none !important;
  display: none !important;
}
/* FORCE DOWNLOAD BROCHURE BUTTON STYLE */
#downloadBrochureBtn2 {
  background-color: #b08d57 !important;   /* gold theme */
  color: #ffffff !important;              /* white text */
  border: none !important;
  box-shadow: none !important;
}

/* Hover */
#downloadBrochureBtn2:hover {
  background-color: #ffffff !important;
  color: #b08d57 !important;
  border: 1px solid #b08d57 !important;
}
#siteVisitBtn {
  background-color: #b08d57 !important;   /* gold theme */
  color: #ffffff !important;              /* white text */
  border: none !important;
  box-shadow: none !important;
}

/* Hover */
#siteVisitBtn:hover {
  background-color: #ffffff !important;
  color: #b08d57 !important;
  border: 1px solid #b08d57 !important;
}


/* ===================== ULTRA TIGHT SPACING ===================== */

/* Remove all default margins */
html, body {
  margin: 0 !important;
  padding: 0 !important;
}

/* Section spacing – VERY MINIMAL */
section {
  margin-top: 0 !important;
  margin-bottom: 35px !important;   /* 👈 aur kam */
  padding-top: 0px !important;
  padding-bottom: 35px !important;
}

/* Overview extra tight */
#overview {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

/* Headings – tight but readable */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0 !important;
  margin-bottom: 8px !important;
}

/* Paragraphs – clean Raymond look */
p {
  margin-bottom: 6px !important;
}

/* Rows/cards extra gap remove */
.row {
  margin-bottom: 0 !important;
}

/* Config / Gallery / Reviews / Location */
.config-section,
#gallery,
#reviews,
#location {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
  margin-bottom: 35px !important;
}

/* Footer tight */
footer {
  padding-top: 35px !important;
  margin-top: 0 !important;
}

/* ===================== MOBILE – EVEN TIGHTER ===================== */
@media (max-width: 768px) {

  section {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
    margin-bottom: 24px !important;
  }

  #overview,
  .config-section,
  #gallery,
  #reviews,
  #location {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  p {
    margin-bottom: 5px !important;
  }
}
.gallery-bottom-controls {
  position: relative;
  z-index: 20;           /* 🔥 CLICK FIX */
  pointer-events: auto;
}

.gallery-prev,
.gallery-next {
  pointer-events: auto;
  cursor: pointer;
}
.image-scroller {
  position: relative;
  z-index: 1;
}
/* ===== FORCE AMENITIES ARROW CLICK ===== */
#Amenities {
  position: relative;
}

#Amenities .gallery-bottom-controls {
  position: relative;
  z-index: 9999;
  pointer-events: auto;
}

#Amenities .gallery-prev,
#Amenities .gallery-next {
  pointer-events: auto;
  cursor: pointer;
  background: none;
  border: none;
}

/* REMOVE CLICK BLOCKING */
#Amenities .config-slider {
  pointer-events: auto;
  overflow-x: auto;
  scroll-behavior: smooth;
}

/* VERY IMPORTANT */
.scroll-section,
.image-scroller {
  position: relative;
  z-index: 1;
}

/* ===================== END ===================== */
<<<<<<< HEAD


=======
/* CONFIG CARDS WRAPPER */
.config-cards{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

/* SINGLE CARD */
.config-card{
background:#fff;
border:1px solid #e5e5e5;

padding:35px 25px;

width:320px;

/* remove fixed height */
height:auto;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

text-align:center;

box-shadow:0 8px 25px rgba(0,0,0,0.06);
transition:all .3s ease;
}

/* TITLE */
.config-card h3{
font-size:32px;
margin-bottom:8px;
}

/* SQFT */
.sqft{
margin-bottom:18px;
color:#666;
}
.popup-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
}
/* BUTTON */
.enquiry-btn{
background:#a47c3c;
color:#fff;
border:none;

padding:12px 28px;
border-radius:6px;

font-weight:600;
letter-spacing:1px;

display:inline-flex;
align-items:center;
justify-content:center;

min-width:180px;

cursor:pointer;
transition:.3s;
}

.enquiry-btn:hover{
background:#8c6a32;
}
.mobile-fixed-bar{
position:fixed;
bottom:0;
left:0;
width:100%;
display:flex;
z-index:9999;
background:#ffffff;
box-shadow:0 -2px 10px rgba(0,0,0,0.15);
}

.mobile-fixed-bar .bottom-btn{
flex:1;
text-align:center;
padding:14px 10px;
font-weight:600;
font-size:14px;
border:none;
text-decoration:none;
cursor:pointer;
}

/* ACTIVE BUTTON */
.mobile-fixed-bar .bottom-btn:first-child{
background:#a47c3c;
color:#fff;
}

/* OTHER BUTTONS */
.mobile-fixed-bar .bottom-btn:nth-child(2),
.mobile-fixed-bar .bottom-btn:nth-child(3){
background:#a47c3c;
color:#fff;
border-left:1px solid rgba(255,255,255,0.3);
}

/* CLICK EFFECT */
.mobile-fixed-bar .bottom-btn:active{
background:#8c6a32;
}
/* AMENITIES SECTION */

#Amenities{
padding:80px 0;
background:#f7f7f7;
}

/* SCROLL WRAPPER */

.scroll-section{
position:relative;
margin-top:40px;
}

/* IMAGE SLIDER */

.config-slider{
display:flex;
gap:30px;

overflow-x:auto;
scroll-behavior:smooth;

padding-bottom:10px;
}

/* HIDE SCROLLBAR */

.config-slider::-webkit-scrollbar{
display:none;
}


/* ARROWS */

.gallery-bottom-controls{
display:flex;
justify-content:center;
gap:40px;

margin-top:30px;
}

/* BUTTON */

.amenities-btn-wrap{
text-align:center;
margin-top:25px;
}

.amenities-btn{
background:#a47c3c;
color:#fff;

border:none;

padding:14px 32px;

font-weight:600;
letter-spacing:1px;

border-radius:6px;

cursor:pointer;
transition:.3s;
}

.amenities-btn:hover{
background:#8c6a32;
}
/* AMENITY TITLE */

.amenity-title{
margin-top:12px;
font-size:16px;
font-weight:600;
text-align:center;
color:#333;
}
/* AMENITIES IMAGE CARD REMOVE */

#Amenities .config-card{
background:none;
border:none;
box-shadow:none;

padding:0;

text-align:center;
}

/* IMAGE */

#Amenities .config-card img{
width:100%;
height:auto;

display:block;
border-radius:8px;
}

/* TITLE */

.amenity-title{
margin-top:10px;

font-size:16px;
font-weight:600;

color:#333;
}
/* AMENITIES IMAGE SIZE FIX */

#Amenities .config-card img{
width:100%;
height:240px;   /* same height for all images */

object-fit:cover;

border-radius:10px;
display:block;
}
#Amenities .config-card{
text-align:center;
padding:0;
background:none;
border:none;
box-shadow:none;
}
.price-title{
margin-top:10px;
font-size:14px;
color:#777;
}

.price{
font-size:16px;
font-weight:600;
color:#a57c3b;
margin-bottom:15px;
}

/* WhatsApp button bigger only for desktop */

@media (min-width: 992px) {

.whatsapp-float{
width:70px;
height:70px;
font-size:32px;
right:30px;
bottom:40px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
}

.whatsapp-float i{
font-size:32px;
}

}
.feature-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:35px 20px;
}

.feature-card i{
  font-size:32px;
  margin-bottom:15px;
  color:#b8945b;
}

.feature-card h6{
  margin:0;
  line-height:1.4;
}
/* FLOATING BUTTON */
.enquiry-float-btn{
position:fixed;
right:0;
top:50%;
transform:translateY(-50%) rotate(-90deg);
background:#b8945b;
color:#fff;
padding:12px 25px;
font-weight:600;
letter-spacing:1px;
cursor:pointer;
z-index:9999;
border-radius:6px 6px 0 0;
}

/* SLIDER PANEL */

.enquiry-slider{
position:fixed;
top:0;
right:-360px;   /* width ke according */
width:250px;    /* pehle 420 tha */
height:100%;
background:#fff;
box-shadow:-5px 0 25px rgba(0,0,0,0.15);
z-index:10000;
transition:0.4s;
padding:30px;
}

.enquiry-slider.active{
right:0;
}

/* HEADER */

.enquiry-slider-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;
}

.enquiry-slider-header h3{
font-weight:700;
}

.enquiry-slider-header span{
font-size:28px;
cursor:pointer;
}

/* FORM */
.form-group{
margin-bottom:16px;
}

.form-group input{
width:100%;
border:none;
border-bottom:1px solid #000;
padding:6px 5px;
}

.slider-submit-btn{
background:#b8945b;
color:#fff;
border:none;
padding:12px 35px;
border-radius:30px;
margin-top:20px;
}
.enquiry-float-btn{
position:fixed;
right:-60px;          /* edge se chipka dega */
top:50%;
transform:translateY(-50%) rotate(-90deg);
background:#b8945b;
color:#fff;
padding:12px 25px;
font-weight:600;
letter-spacing:1px;
cursor:pointer;
z-index:9999;
border-radius:6px 6px 0 0;
}
.enquiry-slider input{
  color:#000 !important;
  background:transparent;
}

.enquiry-slider input::placeholder{
  color:#777;
}
>>>>>>> 2e28e0e02cd87dcf7cd15ee1635c4c4febbaa545
#amenitiesBtn{
background:#b08b4f;
color:#fff;
border:none;
padding:14px 34px;
font-weight:600;
letter-spacing:1px;
border-radius:4px;
transition:0.3s;
<<<<<<< HEAD
display: inline-flex;
align-items: center;
justify-content: center;
=======
>>>>>>> 2e28e0e02cd87dcf7cd15ee1635c4c4febbaa545
}

#amenitiesBtn:hover{
background:#9a763f;
color:#fff;
<<<<<<< HEAD
}

.amenities-btn-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* SLIDER PANEL */

.enquiry-slider{
position: fixed;
top: 0;
right: -420px;
width: 360px;
height: 100%;
background: #ffffff;
box-shadow: -12px 0 30px rgba(0,0,0,0.18);
z-index: 10000;
transition: right 0.35s ease;
padding: 22px 22px 26px;
display: flex;
flex-direction: column;
overflow-y: auto;
}

.enquiry-slider.active{
right: 0;
}

/* HEADER */

.enquiry-slider-header{
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
padding-bottom: 12px;
border-bottom: 1px solid #ececec;
}

.enquiry-slider-header h3{
margin: 0;
font-size: 22px;
font-weight: 700;
letter-spacing: 0.6px;
color: #1f1f1f;
}

.enquiry-slider-header span{
font-size: 32px;
line-height: 1;
cursor: pointer;
color: #777;
padding: 0 4px;
}

.enquiry-slider-header span:hover{
color: #000;
}

#sliderEnquiryForm {
display: flex;
flex-direction: column;
gap: 14px;
margin-top: 4px;
}

#sliderEnquiryForm .form-group {
display: flex;
flex-direction: column;
gap: 6px;
}

#sliderEnquiryForm label {
font-size: 13px;
font-weight: 600;
color: #555;
margin: 0;
letter-spacing: 0.2px;
text-transform: none;
}

#sliderEnquiryForm input[type="text"],
#sliderEnquiryForm input[type="email"] {
width: 100%;
height: 44px;
padding: 10px 12px;
border: 1px solid #d7d7d7;
border-radius: 6px;
background: #fff;
color: #222;
font-size: 14px;
line-height: 1.4;
}

#sliderEnquiryForm input::placeholder {
color: #9a9a9a;
}

#sliderEnquiryForm input:focus {
outline: none;
border-color: #b08d57;
box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.14);
}

.slider-submit-btn {
margin-top: 8px;
height: 46px;
border: none;
border-radius: 6px;
background: #b08d57;
color: #fff;
font-size: 14px;
font-weight: 700;
letter-spacing: 0.6px;
cursor: pointer;
transition: all 0.2s ease;
}

.slider-submit-btn:hover {
background: #9a763f;
}

@media (max-width: 991.98px) {
  .enquiry-slider {
    display: none;
  }
}

/* Keep desktop side enquiry tab aligned on the right edge */
.enquiry-float-btn {
  position: fixed !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 58px !important;
  height: 165px !important;
  padding: 0 !important;
  border-radius: 8px 0 0 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10001 !important;
}

.enquiry-float-btn span {
  writing-mode: vertical-rl !important;
  text-orientation: mixed !important;
  transform: rotate(180deg) !important;
  line-height: 1 !important;
}

@media (max-width: 991.98px) {
  .enquiry-float-btn {
    display: none !important;
  }
}
