/* ===================
   Font Imports
=================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Lato:wght@400;700&display=swap');

/* ===================
   CSS Variables
=================== */
:root {
  --primary-plum: #5E2750;
  --secondary-pink: #F285A2;
  --mint-bg: #FFF5F8;            /* Soft blush for panels if you want */
  --deep-slate: #23272E;         /* Deep slate for headings */
  --white: #fff;
  --accent-gold: #FFD166;

  --text-main: #23272E;
  --text-muted: #9B7FA6;

  --font-heading: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Lato', Arial, Helvetica, sans-serif;
}


/* ===================
   Global Styles
=================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-width: 100vw;
  height: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;  /* Prevents horizontal scroll! */
  background: linear-gradient(120deg, var(--primary-plum), var(--secondary-pink));
}


h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--deep-slate);
}

h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

h2 {
  font-size: 2.1rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

p, ul, li {
  font-size: 1rem;
  line-height: 1.6;
}

a {
  color: var(--primary-turquoise);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-green);
}

/* ===================
   Navbar - Plum/Pink Theme (Mirrored Amber Layout)
=================== */

.navbar {
  width: 100%;
  padding: 24px 5vw 14px 5vw; /* Desktop: Top/Right/Bottom/Left */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

.logo img {
  height: 80px;
  width: auto;
  vertical-align: middle;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--primary-plum);
  border-radius: 2px;
  transition: all 0.28s cubic-bezier(.4,0,.2,1);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 34px; /* Matches amber, was 38 */
  align-items: center;
}

.nav-links li a {
  font-size: 1.07rem;                      /* 17.1px (matches amber) */
  font-family: var(--font-heading);         /* Montserrat */
  color: var(--primary-plum);               /* Plum main color */
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  background: none;
  text-decoration: none;
  transition: color 0.18s;
  padding: 2px 0;
}

.nav-links li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2.5px;
  background: var(--secondary-pink);        /* Pink underline */
  border-radius: 2px;
  transition: width 0.2s;
  margin-top: 2px;
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

/* ============= MOBILE NAVBAR STYLES ============= */
@media (max-width: 900px) {
  .navbar {
    flex-direction: row;
    padding: 14px 4vw 10px 4vw;
  }
  .logo img {
    height: 44px;
  }
  .hamburger {
    display: flex;
    margin-left: auto;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    width: 100vw;
    min-height: 44vh;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px) saturate(170%);
    z-index: 110;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    border: 1.3px solid rgba(94, 39, 80, 0.10);
    transition: opacity 0.18s;
    animation: slideDown 0.23s;
    padding-top: 6px;
    padding-bottom: 12px;
    overflow: hidden;
  }
  .nav-menu.active {
    display: block;
    animation: slideDown 0.22s;
  }
  @keyframes slideDown {
    from { transform: translateY(-45px) scale(0.97); opacity: 0.85;}
    to { transform: translateY(0) scale(1); opacity: 1;}
  }
  .nav-links {
    flex-direction: column;
    gap: 18px;
    width: 100%;
    align-items: center;
    padding: 26px 0 8px 0;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links li a {
    font-size: 1.13rem;                      /* 18.1px (matches amber) */
    color: var(--primary-plum);
    padding: 13px 0 6px 0;
  }
  .nav-links li a::after {
    margin: 0 auto;
    width: 0%;
    height: 2px;
    background: var(--secondary-pink);       /* Pink underline for mobile */
    margin-top: 4px;
  }
  .nav-links li a:hover::after,
  .nav-links li a.active::after {
    width: 65%;
  }
}

/* Extra Mobile Refinements */
@media (max-width: 480px) {
  .navbar { padding: 11px 2vw 8px 2vw; }
  .nav-menu {
    top: 44px;
    min-height: 33vh;
    border-radius: 0 0 13px 13px;
    padding-top: 6px;
    padding-bottom: 7px;
  }
  .nav-links {
    gap: 9px;
    padding: 16px 0 4px 0;
  }
  .nav-links li a {
    font-size: 0.98rem;
    padding: 9px 0 4px 0;
  }
  .nav-links li a::after {
    height: 2.5px;
    margin-top: 3px;
  }
}




/* ===================
   Hero Section
=================== */
.hero {
  background: transparent;
  color: var(--white);
  padding: 70px 0 50px 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 18px 0 rgba(30, 201, 197, 0.11);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 90vw;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 530px;
  min-width: 310px;
}

.hero-text h1 {
  color: var(--white);
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.hero-subtext {
  font-size: 1.1rem;
  margin-bottom: 22px;
  color: var(--white);
  font-weight: 400;
}

.cta-btn {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--deep-slate);
  font-weight: bold;
  padding: 13px 34px;
  border-radius: 24px;
  font-size: 1.13rem;
  box-shadow: 0 3px 20px 0 rgba(32, 145, 110, 0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.3s;
  margin-top: 10px;
}

.cta-btn:hover {
  background: var(--white);
  color: var(--primary-green);
  box-shadow: 0 8px 28px 0 rgba(30, 201, 197, 0.13);
}

.hero-animation {
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==== Mobile Hero Section ==== */
@media (max-width: 700px) {
  .hero {
    padding: 38px 0 32px 0;
    min-height: unset;
    width: 100vw;
    box-sizing: border-box;
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    width: 100vw;
    max-width: 100vw;
    padding-left: 6vw;
    padding-right: 6vw;
    box-sizing: border-box;
    margin: 0 auto;
  }
  .hero-text {
    width: 100%;
    max-width: 100vw;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
  }
  .hero-text h1,
  .hero-text p,
  .cta-btn {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-animation {
    margin: 0 auto;
  }
}



/* ===================
   How It Works
=================== */
.how-section {
  background: var(--mint-bg);
  padding: 70px 0 40px 0;
  text-align: center;
}

.how-columns {
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.how-col {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 4px 32px 0 rgba(32, 145, 110, 0.08);
  min-width: 330px;
  max-width: 380px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.how-col:hover {
  box-shadow: 0 12px 42px 0 rgba(30, 201, 197, 0.18);
  transform: translateY(-7px) scale(1.03);
}

.how-col h3 {
  color: var(--primary-green);
  margin-top: 18px;
  margin-bottom: 16px;
}

.how-col ul {
  margin-top: 10px;
  list-style: none;
  padding-left: 0;
}

.how-col ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 18px;
}

.how-col ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-turquoise);
  font-size: 1.01rem;
}

@media (max-width: 430px) {
  .hero-content {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}



/* ===================
   USP Section
=================== */
.usp-section {
  background: linear-gradient(120deg, var(--primary-green) 0%, var(--primary-turquoise) 100%);
  color: var(--white);
  padding: 64px 0;
  width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}

.usp-content {
  display: flex;
  gap: 44px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  width: 100vw;
  box-sizing: border-box;
}

.usp-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  width: 260px;
  flex-shrink: 0;
}

.usp-animation dotlottie-player {
  width: 260px;
  height: 260px;
  max-width: 100vw;
}

.usp-text {
  max-width: 520px;
  width: 100%;
  text-align: left;
  margin: 0;
  padding: 0;
  /* Remove static transforms for perfect responsivity */
}

.usp-section h2 {
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-size: 2rem;
  text-align: left;
  font-weight: 700;
}

.usp-section p,
.usp-section ul {
  color: var(--white);
  opacity: 0.95;
  text-align: left;
  font-size: 1.07rem;
}

.usp-section ul {
  margin-top: 14px;
  list-style: disc inside;
  padding-left: 18px;
}

.usp-section ul li {
  margin-bottom: 5px;
}

/* ========== Mobile Responsive USP Section ========== */
@media (max-width: 850px) {
  .usp-content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 4vw;
    width: 100vw;
  }
  .usp-animation,
  .usp-animation dotlottie-player {
    width: 200px !important;
    height: 200px !important;
    max-width: 80vw !important;
    min-width: 120px !important;
  }
  .usp-text {
    max-width: 99vw;
    text-align: center;
    padding: 0;
    margin: 0 auto;
  }
  .usp-section h2,
  .usp-section p,
  .usp-section ul {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
  .usp-section ul {
    display: inline-block;
    text-align: left !important;
    padding-left: 0;
    margin: 12px auto 0 auto;
  }
  .usp-section ul li {
    text-align: left;
    margin-left: 0;
  }
}

@media (max-width: 500px) {
  .usp-section {
    padding: 28px 0 14px 0;
  }
  .usp-animation,
  .usp-animation dotlottie-player {
    width: 120px !important;
    height: 120px !important;
    max-width: 96vw !important;
    min-width: 80px !important;
  }
  .usp-text {
    font-size: 0.99rem;
    max-width: 98vw;
  }
  .usp-section h2 {
    font-size: 1.1rem;
    margin-bottom: 13px;
  }
}



/* ===================
   Timeline Section
=================== */
.timeline-section {
  background: var(--white);
  padding: 70px 0 40px 0;
  text-align: center;
}

.timeline-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.timeline-step {
  background: var(--mint-bg);
  border-radius: 18px;
  padding: 25px 18px 15px 18px;
  min-width: 145px;
  max-width: 165px;
  box-shadow: 0 4px 18px 0 rgba(30, 201, 197, 0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s;
}

.timeline-step:hover {
  box-shadow: 0 12px 32px 0 rgba(32, 145, 110, 0.18);
  transform: translateY(-5px) scale(1.04);
}

.timeline-step p {
  margin-top: 10px;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1rem;
}

/* ===================
   Why Choose Us Section
=================== */
.why-section {
  background: var(--mint-bg);
  padding: 64px 0 34px 0;
  text-align: center;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 28px;
}

.why-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(30, 201, 197, 0.10);
  padding: 30px 22px 24px 22px;
  min-width: 190px;
  max-width: 260px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.16s;
}

.why-card:hover {
  box-shadow: 0 10px 30px 0 rgba(32, 145, 110, 0.17);
  transform: translateY(-5px) scale(1.03);
}

.why-icon {
  font-size: 2.3rem;
  margin-bottom: 12px;
  color: var(--primary-turquoise);
}

/* ===================
   Testimonials Section
=================== */
.testimonials-section {
  background: var(--primary-green);
  color: var(--white);
  padding: 64px 0 40px 0;
  text-align: center;
}

.testimonials-section h2 {
  color: var(--accent-gold);
  margin-bottom: 18px;
}

.testimonial {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.18rem;
  line-height: 1.8;
  font-style: italic;
  padding: 18px 0 0 0;
}

.testimonial-author {
  margin-top: 18px;
  display: block;
  color: var(--accent-gold);
  font-weight: bold;
  font-style: normal;
  font-size: 1rem;
}

/* ===================
   Contact Section
=================== */
.contact-section {
  background: var(--white);
  padding: 68px 0 46px 0;
  text-align: center;
}

.contact-section h2 {
  color: var(--primary-green);
  margin-bottom: 16px;
}

.contact-form {
  margin: 0 auto 22px auto;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  border: 1.4px solid var(--primary-turquoise);
  border-radius: 8px;
  padding: 12px 13px;
  font-size: 1rem;
  resize: vertical;
  transition: border 0.18s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 2px 12px 0 rgba(30, 201, 197, 0.08);
}

.contact-form button {
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 13px 0;
  font-size: 1.08rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.16s, color 0.2s, box-shadow 0.2s;
  margin-top: 6px;
}

.contact-form button:hover {
  background: var(--primary-turquoise);
  color: var(--deep-slate);
  box-shadow: 0 8px 22px 0 rgba(30, 201, 197, 0.16);
}

.contact-details {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.contact-details strong {
  color: var(--primary-green);
}

/* ===================
   Footer
=================== */
.footer {
  background: var(--deep-slate);
  color: var(--white);
  text-align: center;
  padding: 16px 0;
  font-size: 1.01rem;
  letter-spacing: 0.2px;
}

.contact-subheading {
  font-family: var(--font-body);
  font-size: 1.17rem;
  color: var(--deep-slate);
  font-weight: 400;
  margin: 0 auto 30px auto;
  max-width: 750px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  opacity: 0.96;
}

.contact-details a {
  color: var(--primary-green);
  text-decoration: underline dotted;
  transition: color 0.18s;
}
.contact-details a:hover {
  color: var(--primary-turquoise);
}

/* ===================
   Responsive Styles
=================== */
@media (max-width: 1050px) {
  .hero-content, .how-columns, .usp-content, .timeline-container, .why-cards {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .hero-content, .usp-content {
    flex-wrap: wrap;
  }
  .how-col, .usp-text, .usp-animation, .why-card, .timeline-step {
    max-width: 90vw;
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 18px 2vw;
  }
  .logo {
    font-size: 1.6rem;
  }
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .hero, .how-section, .usp-section, .timeline-section, .why-section,
  .testimonials-section, .contact-section {
    padding: 42px 0 24px 0;
  }
}

/* Animations (for fade-in or scroll-in effects if needed) */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInMoveUp 0.7s ease-out forwards;
}

@keyframes fadeInMoveUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/************** LANDLORDS SECTION (Form & Content) **************/
.landlords-section {
  background: linear-gradient(100deg, #FFF5F8 60%, #f6d7ec 100%);
  padding: 64px 0 40px 0;
  text-align: center;
  border-top: 1px solid #eedcf2;
  box-shadow: 0 3px 32px 0 rgba(94, 39, 80, 0.07);
}

.landlords-content {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border-radius: 32px;
  padding: 38px 28px 38px 28px;
  box-shadow: 0 4px 28px 0 rgba(94, 39, 80, 0.10);
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
}

.landlords-info {
  flex: 1 1 320px;
  text-align: left;
  min-width: 270px;
  padding-right: 30px;
  border-right: 1.5px solid #f2c5e0;
}

.landlords-info h2 {
  color: var(--primary-plum);
  margin-bottom: 10px;
}

.landlords-info p {
  color: var(--deep-slate);
  font-size: 1.09rem;
  line-height: 1.7;
}

/* =======================
   FORM STYLING
======================= */
.landlord-form {
  flex: 1 1 320px;
  max-width: 410px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;    /* Center fields horizontally */
  gap: 17px;
  padding-left: 30px;
}

.landlord-form input,
.landlord-form textarea {
  border: 1.5px solid var(--primary-plum);
  background: #f9f3f7;
  border-radius: 10px;
  font-size: 1rem;
  padding: 14px 15px;
  transition: border 0.19s, box-shadow 0.19s;
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
  box-sizing: border-box;
}

.landlord-form input:focus,
.landlord-form textarea:focus {
  outline: none;
  border-color: var(--secondary-pink);
  box-shadow: 0 2px 10px 0 rgba(242,133,162, 0.13);
}

.landlord-form button {
  background: var(--primary-plum);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1.13rem;
  letter-spacing: 0.5px;
  padding: 14px 0;
  margin-top: 4px;
  box-shadow: 0 3px 18px 0 rgba(242,133,162,0.11);
  transition: background 0.18s, color 0.18s;
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
}

.landlord-form button:hover {
  background: var(--secondary-pink);
  color: var(--primary-plum);
}

/* =======================
   RESPONSIVE LANDLORD SECTION
======================= */
@media (max-width: 950px) {
  .landlords-content {
    flex-direction: column;
    padding: 24px 8px;
    gap: 18px;
  }
  .landlords-info {
    border-right: none;
    border-bottom: 1px solid #f2c5e0;
    padding-right: 0;
    padding-bottom: 18px;
    text-align: center;
  }
  .landlord-form {
    padding-left: 0;
    margin-top: 12px;
    max-width: 95vw;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .landlords-section {
    padding: 38px 0 20px 0;
  }
  .landlords-content {
    border-radius: 18px;
    padding: 16px 2vw 22px 2vw;
    gap: 9px;
  }
  .landlord-form {
    max-width: 99vw;
    width: 100%;
    padding: 0;
    gap: 12px;
  }
  .landlord-form input,
  .landlord-form textarea,
  .landlord-form button {
    max-width: 99vw;
    font-size: 1rem;
  }
}

@media (max-width: 700px) {
  .landlords-content {
    background: #fdf2f8;
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(94,39,80,0.10);
    padding: 32px 4vw 24px 4vw;
    max-width: 98vw;
    margin: 0 auto 34px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .landlords-info {
    border: none !important;
    padding: 0 !important;
    text-align: center !important;
    margin-bottom: 14px !important;
  }
  .landlords-info h2 {
    font-size: 1.2rem !important;
    margin-bottom: 8px !important;
  }
  .landlords-info p {
    font-size: 1rem !important;
    margin-bottom: 0 !important;
  }
  .landlord-form {
    max-width: 100vw !important;
    padding: 0 !important;
    margin: 0 auto !important;
    gap: 15px !important;
  }
  .landlord-form input,
  .landlord-form textarea {
    border-radius: 10px !important;
    padding: 13px 12px !important;
    font-size: 1.05rem !important;
  }
  .landlord-form button {
    border-radius: 12px !important;
    font-size: 1.11rem !important;
    padding: 14px 0 !important;
    width: 100% !important;
    background: linear-gradient(90deg, var(--primary-plum) 70%, var(--secondary-pink) 100%) !important;
    color: #fff !important;
    font-weight: bold !important;
    box-shadow: 0 3px 18px 0 rgba(242,133,162,0.11) !important;
  }
}



/************** TENANTS SECTION **************/
.tenants-section {
  background: #fff;
  padding: 64px 0 40px 0;
  text-align: center;
  border-bottom: 1px solid #eedcf2;
}
.tenants-content {
  max-width: 1150px;
  margin: 0 auto;
  padding: 24px 16px 0 16px;
}
.tenants-info {
  background: linear-gradient(90deg, #FFF5F8 70%, #f6d7ec 100%);
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(94, 39, 80, 0.04);
  padding: 28px 22px 12px 22px;
  margin-bottom: 10px;
  display: inline-block;
}
.tenants-info h2 {
  color: var(--primary-plum);
}
.tenants-info p {
  color: var(--deep-slate);
  font-size: 1.06rem;
  margin-top: 9px;
}

/************** MODAL (Request Info) **************/
.modal-overlay {
  background: rgba(94, 39, 80, 0.14);
  backdrop-filter: blur(2px);
}
.modal-content {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 44px 0 rgba(94, 39, 80, 0.16);
  padding: 40px 32px 32px 32px;
  min-width: 320px;
  max-width: 95vw;
  text-align: left;
  position: relative;
  animation: modalPopIn 0.35s cubic-bezier(.19,1,.22,1);
}
@keyframes modalPopIn {
  0% { opacity: 0; transform: scale(0.92) translateY(20px);}
  100% { opacity: 1; transform: scale(1) translateY(0);}
}
.close-modal {
  color: var(--secondary-pink);
  font-size: 1.6rem;
  top: 14px;
  right: 20px;
  transition: color 0.2s;
}
.close-modal:hover {
  color: var(--primary-plum);
}
.request-info-form input,
.request-info-form textarea {
  border: 1.2px solid var(--primary-plum);
  border-radius: 7px;
  background: #fff7fa;
}
.request-info-form button {
  background: var(--secondary-pink);
  color: var(--primary-plum);
  border-radius: 8px;
  box-shadow: 0 2px 12px 0 rgba(242,133,162,0.11);
  font-weight: bold;
}
.request-info-form button:hover {
  background: var(--primary-plum);
  color: #fff;
}

@media (max-width: 850px) {
  .property-carousel {
    flex-direction: column;
    align-items: center;
  }
}



/************** FOOTER **************/
.footer {
  background: linear-gradient(90deg, #5E2750 75%, #F285A2 100%);
  color: #fff;
  text-align: center;
  padding: 26px 0 10px 0;
  font-size: 1.01rem;
  letter-spacing: 0.2px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: 0 -2px 18px 0 rgba(94, 39, 80, 0.10);
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.footer-logo {
  height: 36px;
  margin-right: 10px;
  filter: drop-shadow(0 2px 8px rgba(242,133,162,0.14));
}
.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.09rem;
  font-weight: 500;
  opacity: 0.94;
  letter-spacing: 0.01em;
  margin: 0;
}
.footer-bottom {
  opacity: 0.72;
  font-size: 0.97rem;
  margin-top: 2px;
  letter-spacing: 0.04em;
}

/* Responsive Footer */
@media (max-width: 650px) {
  .footer-container {
    flex-direction: column;
    gap: 8px;
  }
  .footer {
    font-size: 0.97rem;
    padding: 18px 0 7px 0;
  }
}


/* --- Property Carousel (Flip Cards) --- */
.property-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 35px;
}

.property-card {
  width: 290px;
  height: 370px;
  perspective: 1200px;
  margin-bottom: 16px;
}
.property-card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(.68,-0.55,.27,1.55);
  transform-style: preserve-3d;
  position: relative;
}
.property-card:hover .property-card-inner {
  transform: rotateY(180deg);
}
.property-card-front,
.property-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 22px;
  box-shadow: 0 6px 32px 0 rgba(32,145,110,0.14);
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.property-card-front img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}
.property-card-front h3 {
  margin: 20px 0 6px 0;
  font-size: 1.18rem;
}
.property-card-front p {
  color: var(--primary-green);
  font-weight: bold;
}

.property-card-back {
  background: var(--mint-bg);
  transform: rotateY(180deg);
  padding: 22px 18px 18px 18px;
  justify-content: flex-start;
}
.property-card-back h4 {
  margin-bottom: 10px;
  color: var(--primary-green);
}
.property-card-back ul {
  list-style: disc inside;
  color: var(--text-main);
  margin-bottom: 12px;
  font-size: 1rem;
  padding-left: 0;
}
.property-card-back .request-info-btn {
  background: var(--accent-gold);
  color: var(--deep-slate);
  font-weight: 700;
  border: none;
  border-radius: 16px;
  padding: 8px 22px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.property-card-back .request-info-btn:hover {
  background: var(--primary-green);
  color: var(--white);
}

/* Responsive for property carousel */
@media (max-width: 850px) {
  .property-carousel {
    flex-direction: column;
    align-items: center;
  }
}


.contact-section {
  background: var(--white);
  padding: 80px 0 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card {
  background: linear-gradient(120deg, #fff5f8 70%, #f8e3ed 100%);
  border-radius: 32px;
  box-shadow: 0 6px 32px 0 rgba(94, 39, 80, 0.09);
  padding: 48px 36px 36px 36px;
  max-width: 430px;
  width: 98%;
  margin: 0 auto 36px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-section h2 {
  color: var(--primary-plum);
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.contact-section .contact-subheading {
  color: var(--deep-slate);
  font-size: 1.08rem;
  margin-bottom: 26px;
  opacity: 0.92;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  border: 1.5px solid var(--primary-plum);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 1.08rem;
  background: #fff7fa;
  transition: border 0.17s, box-shadow 0.18s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary-pink);
  box-shadow: 0 2px 10px 0 rgba(242,133,162,0.13);
}

.contact-form button {
  background: linear-gradient(90deg, var(--primary-plum) 70%, var(--secondary-pink) 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 0;
  font-size: 1.13rem;
  font-weight: bold;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 16px 0 rgba(242,133,162,0.12);
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  margin-top: 2px;
  width: 100%;
}

.contact-form button:hover {
  background: var(--secondary-pink);
  color: var(--primary-plum);
  box-shadow: 0 6px 22px 0 rgba(242,133,162,0.18);
}

.contact-details {
  margin-top: 10px;
  padding: 0;
  color: var(--primary-plum);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1.04rem;
  align-items: center;
}

.contact-details a {
  color: var(--primary-green);
  text-decoration: underline dotted;
  font-weight: 600;
  transition: color 0.18s;
}
.contact-details a:hover {
  color: var(--primary-turquoise);
}

@media (max-width: 600px) {
  .contact-card {
    padding: 28px 6vw 24px 6vw;
    border-radius: 16px;
  }
  .contact-section h2 {
    font-size: 1.2rem;
  }
}

.property-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  padding: 12px 0 0 0;
}
.property-filter-bar select,
.property-filter-bar input {
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid #d1b9c7;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}
.property-filter-bar button {
  padding: 9px 18px;
  border-radius: 8px;
  border: none;
  background: var(--primary-plum);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s;
}
.property-filter-bar button:hover {
  background: var(--secondary-pink);
  color: var(--primary-plum);
}
@media (max-width: 700px) {
  .property-filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
}

.navbar {
  box-shadow: none !important;
  border-bottom: none !important;
  background: transparent !important;
}

/* Remove any top border/shadow from hero or first section */
.hero,
.hero-section,
.main-content,
.page-content {
  border-top: none !important;
  box-shadow: none !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ===============================
   Letting Panel Section: Info Block
   =============================== */
.letting-panel-section {
  background: linear-gradient(120deg, #823667 0%, #e18ba6 100%);
  color: #fff;
  width: 100vw;
  padding: 70px 0 55px 0;
  box-sizing: border-box;
}

.letting-panel-content {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 90vw;
  flex-wrap: wrap;
}

.letting-panel-image {
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.letting-panel-text {
  max-width: 520px;
  width: 100%;
  text-align: left;
  color: #fff;
}

.letting-panel-text h2 {
  color: #FFD166;
  font-size: 2.1rem;
  margin-bottom: 13px;
  font-weight: bold;
  letter-spacing: 1px;
}

.letting-panel-text p {
  color: #fff;
  font-size: 1.13rem;
  margin-bottom: 10px;
  opacity: 0.97;
}

.letting-panel-text ul {
  margin-top: 10px;
  list-style: disc inside;
  padding-left: 18px;
  color: #fff;
  opacity: 0.97;
  font-size: 1.05rem;
}

.letting-panel-text ul li {
  margin-bottom: 6px;
}

/* Mobile responsive styles */
@media (max-width: 850px) {
  .letting-panel-content {
    flex-direction: column;
    align-items: center;
    gap: 26px;
    padding: 0 4vw;
  }
  .letting-panel-image,
  .letting-panel-image dotlottie-player {
    width: 180px !important;
    height: 180px !important;
    max-width: 80vw !important;
    min-width: 120px !important;
  }
  .letting-panel-text {
    max-width: 98vw;
    text-align: center;
  }
  .letting-panel-text h2,
  .letting-panel-text p,
  .letting-panel-text ul {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
  .letting-panel-text ul {
    display: inline-block;
    text-align: left !important;
    padding-left: 0;
  }
  .letting-panel-text ul li {
    text-align: left;
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  .letting-panel-section {
    padding: 28px 0 13px 0;
  }
  .letting-panel-image,
  .letting-panel-image dotlottie-player {
    width: 120px !important;
    height: 120px !important;
    max-width: 96vw !important;
    min-width: 70px !important;
  }
  .letting-panel-text h2 {
    font-size: 1.13rem;
    margin-bottom: 9px;
  }
}

.video-carousel-panel {
  width: 100vw;
  height: 52vw; /* or 400-600px for fixed height, or 100vh for full screen */
  min-height: 340px;
  max-height: 600px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  box-sizing: border-box;
  border-radius: 0;
  padding: 0;
}

.video-swiper, .video-swiper .swiper-wrapper, .video-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.video-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-swiper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  background: #000;
}

.video-carousel-panel {
  width: 100vw;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
}

.video-swiper {
  width: 100vw;
  height: 60vh;
}

.swiper-slide video {
  width: 100vw;
  height: 60vh;
  object-fit: cover;
  display: block;
}


