 /* --- GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

:root {
  --primary-purple: #5a4bff;
  --dark-navy: #0a2540;
  --text-gray: #4b5563;
}

html { scroll-behavior: smooth; }
body { background: #f8f9fc; color: #111; overflow-x: hidden; }

/* --- STANDARDIZED NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 12px 0; /* Standardized small size */
  transition: all 0.4s ease;
  z-index: 1000;
  background:#ffffff; 
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 .logo img {
      height: 40px; /* Adjust based on your logo size */
      display: block;
    }
 
.nav-menu { display: flex; align-items: center; gap: 32px; }

.nav-link {
  text-decoration: none;
  color: var(--text-gray);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

.nav-link:hover, .nav-link.active-page {
  color: var(--primary-purple) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0; height: 2px;
  bottom: -4px; left: 0;
  background-color: var(--primary-purple);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active-page::after { width: 100%; }

.btn-login {
  background: var(--primary-purple);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(90, 75, 255, 0.3);
}

/* --- MOBILE SIDEBAR --- */
.mobile-menu-btn {
  display: none;
  font-size: 24px;
  color: var(--dark-navy);
  cursor: pointer;
  z-index: 1100;
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  .navbar-container { padding: 0 20px; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 100px 30px;
    gap: 30px;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .nav-menu.active {
    right: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    color: var(--dark-navy) !important;
    font-size: 18px;
    width: 100%;
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
  }
}
 /* --- CENTERED HERO SECTION --- */
.hero {
  height: 90vh;
  background: 
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), /* Dark overlay for text readability */
    url("/assets/images/bg.jpg") 
    center/cover no-repeat;
  
  /* Flexbox for centering */
  display: flex;
  justify-content: center; /* Horizontally centers content */
  align-items: center;     /* Vertically centers content */
  text-align: center;      /* Centers the text lines */
  padding: 0 20px;         /* Standard mobile-safe padding */
}

.hero-content {
  max-width: 800px; /* Increased width to accommodate centered layout */
  color: #ffffff;
}

.hero h1 {
  font-size: 64px; /* Slightly larger for center focus */
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero span {
  color: #b8c0ff; /* Light purple highlight */
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto; /* Centers the paragraph block itself */
  opacity: 0.9;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px; /* Scaled down for mobile */
  }
  
  .hero p {
    font-size: 16px;
  }
}/* =================================
   HERO TEXT VISIBILITY FIX (MOBILE)
================================= */
@media (max-width: 768px) {
  .hero {
    height: 55vh;
    justify-content: center;      /* TRUE vertical centering */
    align-items: center;
    padding-top: 80px;            /* navbar safety */
    background-position: center top;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 10px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.55);
  }
}
/* =================================
   FORCE SHORT NAVBAR (MOBILE ONLY)
================================= */
@media (max-width: 768px) {
  .navbar {
    height: 56px !important;     /* FORCE height */
    padding: 0 !important;
  }

  .navbar-container {
    height: 56px !important;
    padding: 0 14px !important;
  }

  .logo img {
    height: 30px !important;     /* FORCE logo size */
    width: auto !important;
  }

  .mobile-menu-btn {
    font-size: 22px;
  }
}  

 




/* POPULAR ROOMS */
.popular {
  padding: 80px;
}

.popular h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.room-link {
  text-decoration: none;
  color: inherit;
}

.room-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.room-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.room-info {
  padding: 16px;
}

.room-info h4 {
  font-size: 16px;
}

.room-info p {
  font-size: 13px;
  color: #666;
  margin: 6px 0;
}

.room-info span {
  font-weight: 600;
  color: #5a4bff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .navbar,
  .hero,
  .popular {
    padding: 24px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .search-bar {
    flex-direction: column;
    gap: 16px;
  }

  .divider {
    display: none;
  }
}

/* PAGE HEADER */
.page-header {
  padding: 140px 80px 40px;
  background: #f8f9fc;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.page-header p {
  color: #666;
}

/* ROOM DETAILS PAGE */

.room-page {
  padding: 120px 80px 80px;
}

.gallery {
  margin-bottom: 40px;
}

.main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

.thumbs {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.thumbs img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
}

.room-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.location {
  color: #666;
  margin: 8px 0;
}

.price {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}

.section {
  margin-bottom: 32px;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.amenities span {
  background: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.rules li {
  margin-bottom: 8px;
  font-size: 14px;
}

.desc {
  color: #555;
  line-height: 1.6;
}

/* BOOKING CARD */
.booking-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  position: sticky;
  top: 120px;
}

.booking-card h3 {
  margin-bottom: 16px;
}

.booking-card label {
  font-size: 12px;
  color: #666;
  display: block;
  margin-top: 12px;
}

.booking-card input,
.booking-card select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.book-btn {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  background: #5a4bff;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.note {
  margin-top: 12px;
  font-size: 12px;
  color: #777;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .room-page {
    padding: 100px 24px;
  }

  .room-content {
    grid-template-columns: 1fr;
  }

  .booking-card {
    position: static;
  }
}
 /* ================================
   WHY CHOOSE US – COMPACT VERSION
================================ */

.why-choose {
  padding: 50px 48px;   /* reduced height */
  background: #ffffff;
}

/* HEADER */
.why-header-center {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 36px; /* reduced gap */
}

.why-header-center h2 {
  font-size: 32px;     /* slightly smaller */
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 8px;
}

.why-header-center span {
  color: #5a4bff;
}

.why-header-center p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.5;
}

/* GRID */
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;           /* tighter gap */
}
 
 /* CARD – PREMIUM FLAT STYLE */
.why-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;

  /* NEW */
  border: 1px solid #eef0f6;
  transition: all 0.25s ease;
}

/* PURPLE HOVER EFFECT */
.why-card:hover {
  border-color: #5a4bff;
  transform: translateY(-4px);
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f6f5ff 100%
  );
}

.why-card::after {
  content: "";
  display: block;
  width: 0%;
  height: 3px;
  background: #5a4bff;
  margin: 16px auto 0;
  border-radius: 2px;
  transition: width 0.25s ease;
}

.why-card:hover::after {
  width: 40%;
}

 
/* ICON */
.icon-box {
  width: 48px;        /* smaller */
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 14px;
  color: #ffffff;
}

.icon-box.yellow { background: #f4b400; }
.icon-box.green  { background: #34a853; }
.icon-box.purple { background: #7b61ff; }
.icon-box.red    { background: #ea4335; }

/* TEXT */
.why-card h3 {
  font-size: 16px;    /* smaller */
  font-weight: 600;
  color: #0a2540;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 13.5px;  /* smaller */
  color: #555;
  line-height: 1.5;
}
/* --- UPDATED RESPONSIVE SECTION (2 CARDS PER ROW) --- */

@media (max-width: 1024px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .why-choose {
    padding: 40px 15px; /* Reduced outer padding for more card space */
  }

  .why-header-center h2 {
    font-size: 24px; /* Scaled down for mobile */
    margin-bottom: 6px;
  }

  .why-cards {
    grid-template-columns: repeat(2, 1fr); /* FORCES 2 CARDS PER ROW */
    gap: 12px; /* Tighter gap to fit two cards side-by-side */
  }

  .why-card {
    padding: 15px 10px; /* Smaller internal padding */
    border-radius: 10px; /* Slightly sharper corners for small size */
  }

  /* Shrink the icons for the small card version */
  .icon-box {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .why-card h3 {
    font-size: 14px; /* Smaller heading */
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .why-card p {
    font-size: 12px; /* Smaller text to ensure it fits */
    line-height: 1.4;
  }

  /* Optional: Hide the underline on mobile to save vertical space */
  .why-card::after {
    margin-top: 10px;
  }
}

/* Extra small screens (iPhone SE etc.) */
@media (max-width: 360px) {
  .why-cards {
    gap: 8px; /* Even tighter gap for very small phones */
  }
  
  .why-card {
    padding: 12px 8px;
  }
}
/* ================================
   OWNER AD SECTION (WIDE PREMIUM)
================================ */

.owner-ad {
  /* Increased from 1200px to 1400px to match the wide style */
  max-width: 1400px; 
  margin: 60px auto;
  background: linear-gradient(135deg,  #dff0e4);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

/* MAIN GRID */
.owner-ad-content {
  display: grid;
  /* Shifted ratio to give the text more 'breathing room' in a wide layout */
  grid-template-columns: 1.4fr 1fr; 
  align-items: center;
  /* Increased horizontal padding to 80px for a 'longer' feel */
  padding: 60px 80px 0; 
  gap: 60px;
}

/* LEFT TEXT */
.owner-ad-text h2 {
  font-size: 46px; /* Slightly larger to fill the wider space */
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #0a2540;
}

.owner-ad-text p {
  font-size: 18px; /* Improved readability for wider containers */
  color: #4a4a4a;
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.6;
}
/* --- OWNER SECTION EYEBROW --- */
.owner-eyebrow {
  display: block;
  color: #7b61ff; /* Your primary purple */
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

/* Adjusting the H2 slightly to sit better under the eyebrow */
.owner-ad-text h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #0a2540;
}

/* Responsive fix for small text */
@media (max-width: 768px) {
  .owner-eyebrow {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }
}

/* --- UPDATED OWNER SECTION BUTTON --- */
.post-btn {
  /* Use your brand purple variable */
  background: var(--primary-purple); 
  padding: 16px 36px;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  /* Purple-tinted shadow for the "Purple Touch" */
  box-shadow: 0 4px 15px rgba(90, 75, 255, 0.3); 
  border: none;
  cursor: pointer;
}

.post-btn:hover {
  transform: translateY(-3px);
  /* Stronger glow on hover */
  box-shadow: 0 8px 25px rgba(90, 75, 255, 0.45);
  background: #4839e6; /* A slightly deeper purple for the hover state */
}
/* RIGHT IMAGE */
.owner-ad-image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.owner-ad-image img {
  height: 400px; /* Taller image to match the wider section */
  width: auto;
  object-fit: contain;
  display: block;
}

/* ================================
   RESPONSIVE ADJUSTMENTS
================================ */

@media (max-width: 1440px) {
  .owner-ad {
    max-width: 95%;
    margin: 40px auto;
  }
  .owner-ad-content {
    padding: 50px 50px 0;
  }
}

@media (max-width: 900px) {
  .owner-ad-content {
    grid-template-columns: 1fr;
    padding: 40px 24px 0;
    text-align: center;
    gap: 30px;
  }

  .owner-ad-text h2 {
    font-size: 32px;
  }

  .owner-ad-text p {
    max-width: 100%;
    font-size: 16px;
  }

  .owner-ad-image {
    justify-content: center;
  }

  .owner-ad-image img {
    height: 300px;
  }
}
 
 /* --------- Base Footer Styles --------- */
:root {
  --footer-bg: #051a33; /* Darker navy to match image */
  --footer-text: #adbdcc;
  --footer-heading: #ffffff;
  --accent: #7b61ff;
}

.vynest-footer {
  background-color: var(--footer-bg);
  padding: 80px 0 30px;
  color: var(--footer-text);
  font-family: 'Inter', sans-serif;
  width: 100%;
}

.footer-container {
  max-width: 1400px; 
  margin: 0 auto;
  padding: 0 40px; 
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr; /* 4 columns for desktop */
  gap: 40px;
}

.footer-logo {
  color: var(--footer-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo span { color: var(--accent); }

.footer-brand p {
  line-height: 1.6;
  font-size: 14.5px;
  margin-bottom: 25px;
}

.social-links { display: flex; gap: 15px; }

.social-links a {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--footer-heading);
  transition: 0.3s;
}

.footer-links h4 {
  color: var(--footer-heading);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
  text-decoration: none;
  color: var(--footer-text);
  font-size: 14.5px;
  transition: 0.3s;
}

/* ================= MOBILE FOOTER COMPRESSION (Matches Image) ================= */
@media (max-width: 768px) {
  .vynest-footer {
    padding-top: 40px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr; /* 2-column link layout */
    gap: 30px 20px;
    padding: 0 24px;
  }

  /* Brand section: Full width and Centered */
  .footer-brand {
    grid-column: 1 / -1; 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
  }

  .footer-logo {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    max-width: 90%; /* Keeps text tight */
  }

  .social-links {
    justify-content: center;
    margin-bottom: 10px;
  }

  /* Link Sections: Left-aligned within their 2-column grid */
  .footer-links {
    text-align: center; /* Set to 'left' if you want links aligned left */
  }

  /* Force "Product" column to center if it looks lonely, 
     or let it sit in the grid like the image shows */
  .footer-links:last-of-type {
    grid-column: 1 / -1;
    margin-top: 10px;
  }

  .footer-links h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-links ul li a {
    font-size: 14px;
  }

  /* Bottom footer */
  .footer-bottom {
    margin-top: 30px;
    padding: 20px 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .bottom-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 0;
  }

  .bottom-legal {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 5px;
  }

  .bottom-legal a {
    margin-left: 0;
    font-size: 13px;
  }
}

/* ================= DESKTOP RESPONSIVE — FOOTER BOTTOM ONLY ================= */
@media (min-width: 769px) {

  .bottom-container {
    display: flex;
    flex-wrap: wrap;          /* allow wrapping */
    align-items: center;
    justify-content: space-between;
    gap: 10px 20px;
  }

  /* Text blocks */
  .bottom-container p,
  .footer-credit {
    white-space: nowrap;      /* keep text clean */
  }

  /* Legal links */
  .bottom-legal {
    display: flex;
    gap: 16px;
    white-space: nowrap;
  }

  /* When desktop width is tight */
  @media (max-width: 1100px) {
    .bottom-legal {
      width: 100%;
      justify-content: center;
      margin-top: 6px;
    }
  }
}
/* ================= DESKTOP FIX — FOOTER BOTTOM ================= */
@media (min-width: 769px) {

  .footer-bottom {
    padding-top: 28px;
  }

  .bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;

    display: grid;
    grid-template-columns: 1fr auto 1fr; /* left | center | right */
    align-items: center;
    gap: 20px;
  }

  /* Left text */
  .bottom-container p {
    justify-self: start;
    white-space: nowrap;
  }

  /* Center credit */
  .footer-credit {
    justify-self: center;
    text-align: center;
    white-space: nowrap;
  }

  /* Right legal links */
  .bottom-legal {
    justify-self: end;
    display: flex;
    gap: 18px;
    white-space: nowrap;
  }

  /* Smaller desktop safety */
  @media (max-width: 1100px) {
    .bottom-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .bottom-container p,
    .footer-credit,
    .bottom-legal {
      justify-self: center;
    }
  }
}
/* ================= DESKTOP — WHITE BOTTOM FOOTER TEXT ================= */
@media (min-width: 769px) {

  /* Made with ❤️ by WebPrimeSite */
  .footer-credit,
  .footer-credit a {
    color: #ffffff !important;
  }

  /* Privacy Policy & Terms */
  .bottom-legal a {
    color: #ffffff !important;
  }

  /* Optional: subtle hover */
  .footer-credit a:hover,
  .bottom-legal a:hover {
    opacity: 0.85;
    text-decoration: underline;
  }
}
/* ================= BOTTOM FOOTER — WHITE TEXT (ALL DEVICES) ================= */

/* Made with ❤️ by WebPrimeSite */
.footer-credit,
.footer-credit a {
  color: #ffffff !important;
}

/* Privacy Policy & Terms of Service */
.bottom-legal a {
  color: #ffffff !important;
}

/* Optional hover effect */
.footer-credit a:hover,
.bottom-legal a:hover {
  opacity: 0.85;
  text-decoration: underline;
}
/* ================= REMOVE UNDERLINE — BOTTOM FOOTER ================= */

.footer-credit a,
.bottom-legal a {
  text-decoration: none !important;
}

.footer-credit a:hover,
.bottom-legal a:hover {
  text-decoration: none !important;
  opacity: 0.85;
}

 /* ================= MOBILE: REMOVE IMAGE ================= */
@media (max-width: 768px) {
  .how-image-card {
    display: none;
  }
}

 /* =====================================================
   HOW VYNEST WORKS — FULL CSS
   ===================================================== */

.how-vynest {
  padding: 100px 20px;
  background: #ffffff;
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* ---------------- IMAGE CARD ---------------- */
.how-image-card {
  display: flex;
  justify-content: center;
}

.how-image-card img {
  width: 100%;
  max-width: 480px;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
  object-fit: cover;
}

/* ---------------- RIGHT CONTENT ---------------- */
.how-steps-area {
  display: flex;
  flex-direction: column;
}

/* Tag */
.how-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5a4bff;
  background: rgba(90, 75, 255, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 16px;
}

/* Heading */
.how-steps-area h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: #0a2540;
  margin-bottom: 14px;
}

/* Subtext */
.how-subtext {
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 40px;
  max-width: 520px;
}

/* ---------------- STEPS ---------------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* Step number */
.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5a4bff, #7b61ff);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Step content */
.step-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  max-width: 460px;
}

/* =====================================================
   TABLET RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {

  .how-container {
    gap: 50px;
  }

  .how-steps-area h2 {
    font-size: 34px;
  }
}

/* =====================================================
   MOBILE RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {

  .how-vynest {
    padding: 70px 16px;
  }

  .how-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  /* Hide image on mobile */
  .how-image-card {
    display: none;
  }

  .how-tag {
    margin: 0 auto 14px;
  }

  .how-steps-area h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .how-subtext {
    font-size: 14px;
    margin: 0 auto 32px;
  }

  .steps {
    gap: 24px;
  }

  .step {
    gap: 14px;
    text-align: left;
  }

  .step-circle {
    width: 42px;
    height: 42px;
    font-size: 13px;
  }

  .step-content h4 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 14px;
  }
}


  /* ================= TESTIMONIAL ================= */
   :root {
  --primary-color: #007bff; /* A clean blue */
  --secondary-color: #6c757d; /* Muted grey */
  --text-dark: #212529;
  --text-light: #495057;
  --bg-light: #f8f9fa;
  --border-light: #e9ecef;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  margin: 0;
  padding: 0;
}

.review-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-header {
  margin-bottom: 40px;
}

.eyebrow {
  display: block;
  font-size: 0.85rem;
  color: var(--secondary-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  font-weight: 700;
  margin: 0;
}

/* Swiper specific styles for spacing and positioning */
.swiper {
  width: 100%;
  padding-bottom: 50px; /* Space for pagination */
}

.swiper-slide {
  display: flex; /* Centers content within the slide */
  justify-content: center;
  align-items: stretch; /* Make cards same height */
  padding: 10px; /* Padding between cards */
}

.review-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px; /* Ensure consistent height */
  width: 100%; /* Take full width of slide */
}

/* Highlight for the active (centered) card */
.swiper-slide-active .review-card {
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
  transform: translateY(-5px); /* Subtle lift */
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.stars {
  color: gold; /* Or a yellow/orange for stars */
  font-size: 1.2rem;
  margin-right: 8px;
}

.rating-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
  flex-grow: 1; /* Pushes reviewer-info to bottom */
  margin-bottom: 20px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 15px;
  margin-top: 15px;
}

.reviewer-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.reviewer-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.reviewer-title {
  margin: 0;
  font-size: 0.85rem;
  color: var(--secondary-color);
}

/* Swiper Pagination (Dots) Styling */
.swiper-pagination-bullet {
  background: var(--secondary-color);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
  width: 25px; /* Longer active dot */
  border-radius: 5px;
  opacity: 1;
}.property-type-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}
.gender-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* UNISEX → AMBER */
.gender-badge.unisex {
  background: rgba(245, 158, 11, 0.15);
  color: #b45309;
}

/* BOYS → TEAL */
.gender-badge.boys {
  background: rgba(20, 184, 166, 0.15);
  color: #0f766e;
}

/* GIRLS → ROSE */
.gender-badge.girls {
  background: rgba(244, 63, 94, 0.15);
  color: #be123c;
}
.badge-group {
  display: flex;
  align-items: center;
  gap: 10px; /* space between FLAT & UNISEX */
  flex-shrink: 0;
}
.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
/* ==============================
   VYNEST FAQ SECTION
============================== */
.vynest-faq {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8f9ff, #ffffff);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-tag {
  display: inline-block;
  background: #eef0ff;
  color: #5a4bff;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 12px;
}

.faq-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.faq-header p {
  color: #6b7280;
  font-size: 16px;
}

/* FAQ ITEMS */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #eef0f6;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #0a2540;
}

.faq-question .icon {
  font-size: 22px;
  color: #5a4bff;
  transition: transform 0.3s ease;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
  transition: all 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 15px;
  }
}
/* HOW IT WORKS TAG */
.how-tag {
  display: inline-block;
  background: #eef0ff;
  color: #5a4bff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.4px;
}
/* FIX ANCHOR SCROLL FOR FIXED NAVBAR */
#whyus {
  scroll-margin-top: 100px; /* adjust to your navbar height */
} 
/* ================= FLOATING HERO SEARCH (UPDATED) ================= */

.search-wrapper {
  position: relative;
  /* Pulls the bar up by half its typical height to sit on the line */
  margin-top: -42px; 
  z-index: 50;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

/* MAIN BAR */
.search-bar.unified-search {
  width: 100%;
  max-width: 900px;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 12px; /* Slightly tighter padding for a modern look */

  display: flex;
  align-items: center;
  gap: 12px;

  /* Stronger shadow to make it "pop" off the hero background */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* LOCATION INPUT */
.location-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 12px 18px;
  background: transparent;
  color: #334155;
}

.location-input::placeholder {
  color: #94a3b8;
}

/* NEAR ME BUTTON */
.near-me-btn {
  border: none;
  background: #f1f5f9;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease;
}

.near-me-btn:hover {
  background: #e2e8f0;
}

/* SEARCH BUTTON */
.search-btn {
  width: 50px;
  height: 50px;
  min-width: 50px; /* Prevents shrinking */
  border-radius: 50%;
  background: #5a4bff;
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.search-btn:hover {
  background: #493cd9;
  transform: scale(1.05);
}

/* ================= SUGGESTIONS ================= */

.location-suggestions {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  display: none;
  z-index: 999;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.location-suggestions.active {
  display: block;
}

.location-suggestions div {
  padding: 14px 20px;
  cursor: pointer;
  font-size: 15px;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

.location-suggestions div:last-child {
  border-bottom: none;
}

.location-suggestions div:hover {
  background: #f8faff;
  color: #5a4bff;
}
/* ================= MOBILE (FIXED FOR HORIZONTAL BAR) ================= */

@media (max-width: 768px) {
  .search-wrapper {
    /* Adjust this to exactly half the height of your mobile bar */
    margin-top: -30px; 
    padding: 0 12px;
  }

  .search-bar.unified-search {
    /* Force items to stay in a row */
    flex-direction: row; 
    flex-wrap: nowrap;
    
    gap: 5px;
    padding: 6px 8px;
    border-radius: 999px; /* Keeps the pill shape */
    width: 95%; /* Adjust width to fit screen */
    max-width: 500px;
  }

  .location-input {
    font-size: 13px;
    padding: 8px 10px;
    /* Ensure input takes up available space but doesn't push others out */
    min-width: 0; 
    flex: 1;
  }

  .near-me-btn {
    font-size: 11px;
    padding: 6px 10px;
    /* Hide text on very small screens if it's too tight, or keep it short */
    white-space: nowrap;
  }

  .search-btn {
    width: 40px;
    height: 40px;
    min-width: 40px; /* Important: prevents the button from squishing */
    font-size: 14px;
  }
}/* Sold Out Overlay */
.room-card.sold-out {
  filter: grayscale(0.5); /* Makes the card look "inactive" */
  position: relative;
}

.sold-out-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  background: rgba(239, 68, 68, 0.9);
  color: white;
  padding: 8px 20px;
  font-weight: 900;
  font-size: 18px;
  border: 2px solid white;
  border-radius: 8px;
  z-index: 20;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Availability Tag */
.availability-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  margin-bottom: 8px;
}

.tag-available {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.tag-full {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}/* Top-Left Availability Badge */
.availability-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85); /* Deep slate backdrop */
  backdrop-filter: blur(4px); /* Glassmorphism effect */
  color: white;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-sold-out {
  background: rgba(239, 68, 68, 0.9) !important; /* Premium Red */
}

/* Ensure the card is the reference for the absolute badge */
.room-card {
  position: relative;
}/* The background and border styling for the badge */
.deposit-badge {
    text-align: center;
    background-color: #fffbeb; /* Light amber background */
    border: 1px solid #fde68a; /* Soft amber border */
    padding: 6px 10px;
    border-radius: 8px; /* Rounded corners like the image */
    display: flex;
    flex-direction: column;
    min-width: 90px;
}

/* Styling for the "SECURITY DEP." text */
.deposit-title {
    font-size: 9px;
    color: #92400e; /* Dark brown/amber text */
    font-weight: 800;
    display: block;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

/* Styling for the actual amount */
.deposit-value {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a; /* Dark navy for the price */
}