/* ===============================
   GLOBAL RESET
================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #D4AF37;
  --white: #ffffff;
  --text-grey:  #bdbdbd;   
  --card-bg: #111111;
  --border-color: rgba(255,255,255,0.08);
}

body {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Work Sans', sans-serif;
  --background: #000;
  --color: #fff;
}

/* ===============================
   HEADER
================================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  background: rgba(0,0,0,0.6);
  z-index: 10;
}

.logo {
  font-weight: 600;
  letter-spacing: 1px;
}

.menu {
  font-size: 26px;
  cursor: pointer;
}

/* =======================================================
   RENT PAGE HERO SECTION
   ======================================================= */
.rent-pg-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh; /* Perfect sizing for mobile browsers */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--black, #000);
}

/* --- The Background Video --- */
.rent-pg-hero-vid-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* Optional: If the video is too bright overall, uncomment the line below */
    /* filter: brightness(0.85); */
}

/* --- THE FIX: Bottom-Only Fade to Black --- */
.rent-pg-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none; /* Allows clicking through the gradient */
    
    /* Transparent at the top (0% to 60%), smoothly fading to solid black at the bottom (100%) */
    background: linear-gradient(
        to bottom, 
        transparent 0%, 
        transparent 60%, 
        rgba(0, 0, 0, 0.8) 85%, 
        var(--black, #000000) 100%
    );
}

/* --- Hero Content Container --- */
.rent-pg-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    width: 100%;
}

/* --- THE FIX: Premium Text Shadows --- */
.rent-pg-main-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 70px; /* Adjust based on your desktop preference */
    color: var(--white, #ffffff);
    margin: 0 0 15px 0;
    line-height: 1.1;
    font-weight: 400;
    
    /* Double-layered shadow: tight crisp edge + soft dark glow */
    text-shadow: 
        2px 2px 5px rgba(0, 0, 0, 0.9), 
        0px 10px 30px rgba(0, 0, 0, 0.7);
}

.rent-pg-accent {
    color: var(--luxury-gold, #D4AF37);
    font-style: italic;
}

.rent-pg-subtitle {
    font-family: var(--font-body, 'Work Sans', sans-serif);
    font-size: 20px;
    color: var(--text-grey, #cfcfcf);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
    
    /* Slightly softer shadow for the subtitle */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* ===============================
   PAGE TITLE
================================= */
.page-title {
  text-align: center;
  padding: 80px 20px;
  background: #0A1120;
}

.page-title h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.page-title p {
  max-width: 1400px;
  margin: auto;
  font-size: 18px;
  font-weight: 300;
}

/* ===============================
   INVEST SECTION
================================= */
.invest-section {
  background: #000;
}

.invest-container {
  max-width: 1400px;
  margin: auto;
  padding: 60px 0px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.invest-image-wrapper {
  height: 650px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-80px);
  transition: 1s ease;
}

.invest-image-wrapper.show {
  opacity: 1;
  transform: translateX(0);
}

.invest-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.invest-content {
  padding-right: 40px;
}

.invest-subtitle {
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.invest-title {
  font-family: "Playfair Display", serif;
  font-size: 70px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.invest-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 25px;
}

/* LIST */
.selling-strategy {
  list-style: none;
}

.selling-strategy li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-grey);
}

.selling-strategy li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 20px;
}

/* ===============================
   RERA SECTION
================================= */
.rera-section {
  background: #000;
  padding: 100px 5%;
}

.rera-container {
  max-width: 1300px;
  margin: auto;
}

.rera-header {
  text-align: center;
  max-width: 900px;
  margin: auto auto 80px;
}

.rera-subtitle {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.rera-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 50px;
  margin-bottom: 25px;
}

.rera-header p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-grey);
}

.rera-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.rera-card {
  background: var(--card-bg);
  padding: 40px;
  border: 1px solid var(--border-color);
  transition: 0.4s ease;
}

.rera-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

.rera-icon {
  font-size: 40px;
  font-family: "Playfair Display", serif;
  color: var(--gold);
  margin-bottom: 20px;
}

.rera-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 15px;
}

.rera-card p {
  font-size: 15px;
  color: var(--text-grey);
  line-height: 1.7;
}

/* ===============================
   FAQ
================================= */
/* .faq-section {
  padding: 80px 5%;
  background: #161616;
  text-align: center;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  border-top: 1px solid var(--border-color);
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  padding: 25px 0;
  cursor: pointer;
}

.faq-question h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
}

.faq-question:hover h3,
.faq-item.active h3 {
  color: var(--gold);
}

.faq-icon {
  font-size: 24px;
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s ease;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-grey);
  padding-bottom: 25px;
  text-align: left;
} */

/* =========================================
   6. FAQ SECTION (FIXED WITH BACKGROUND & SHADOW)
   ========================================= */
.rent-pg-faq { 
    padding: 120px 5%; 
    position: relative; /* Essential for background positioning */
    overflow: hidden;
    background: #000; /* Fallback */
}

/* Background Media Fixed */
.faq-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.5; /* Balanced visibility */
    filter: grayscale(40%) brightness(0.9); 
    pointer-events: none;
}

/* Deep Gradient Overlay - Keeps center video visible */
.faq-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(20, 20, 20, 0.253) 0%, rgba(5, 8, 15, 0.85) 100%);
}

.rent-pg-faq-container {
    position: relative;
    z-index: 2; /* Ensures content is above video/overlay */
    max-width: 1000px;
    margin: 0 auto;
  
}

.rent-pg-faq-header { 
    text-align: center; 
    margin-bottom: 60px; 
}

/* Cinematic Gold Divider */
.rent-pg-gold-divider {
    height: 2px; width: 80px;
    background: rgba(255, 196, 3, 0.897);
    margin: 25px auto;
    position: relative;
    overflow: hidden;
}

.rent-pg-gold-divider::after {
    content: ''; 
    position: absolute; 
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, var(--rent-gold), transparent);
    animation: line-sweep 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* The FAQ Card - Curved & High Shadow */
.rent-pg-faq-item {
    max-width: 1000px;
    margin: 0 auto 20px;
    background: rgba(5, 5, 5, 0.918); /* Darker glass for better contrast */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px; /* Smooth curved corners */
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    /* Premium Box Shadow */
     box-shadow: 
        0 40px 100px rgba(46, 46, 46, 0.6), 
        0 10px 40px rgba(22, 22, 22, 0.4),
        0 0 100px rgba(14, 13, 13, 0.03); 
        
    border: 1px solid rgba(43, 43, 43, 0.03); /* Ghost border */
}

.rent-pg-faq-item:hover {
    background: var(--rent-dark);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 15px rgba(212, 175, 55, 0.1);
}

.rent-pg-faq-item.active {
    background: rgba(0, 0, 0, 0.89);
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
}

/* Question Trigger */
.rent-pg-faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.rent-pg-faq-q {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    letter-spacing: 0.3px;
    transition: all 0.4s ease;
}

.rent-pg-faq-item.active .rent-pg-faq-q {
    color: #D4AF37;
    font-weight: 500;
}

/* Smooth Icon Animation */
.rent-pg-faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.rent-pg-faq-icon .line {
    position: absolute;
    background: #D4AF37;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rent-pg-faq-icon .vertical {
    width: 2px; height: 16px;
    left: 9px; top: 2px;
}

.rent-pg-faq-icon .horizontal {
    width: 16px; height: 2px;
    top: 9px; left: 2px;
}

.rent-pg-faq-item.active .vertical {
    transform: rotate(90deg);
    opacity: 0;
}

/* The Smooth Panel Reveal */
.rent-pg-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.rent-pg-faq-item.active .rent-pg-faq-panel {
    max-height: 600px;
}

.rent-pg-faq-content {
    padding: 0 40px 40px 40px;
    opacity: 0;
    filter: blur(15px);
    transform: translateY(20px);
    transition: 
        opacity 0.8s ease, 
        filter 0.8s ease, 
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.rent-pg-faq-item.active .rent-pg-faq-content {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
    transition-delay: 0.2s;
}

.rent-pg-faq-content p {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Mobile Smoothing */
@media (max-width: 768px) {
    .rent-pg-faq { padding: 80px 20px; }
    .rent-pg-faq-btn { padding: 25px; }
    .rent-pg-faq-content { padding: 0 25px 30px 25px; }
    
    .rent-pg-faq-q, 
    .rent-pg-faq-content p { 
        font-size: 16px !important; 
    }
}

/* ===============================
   PROJECTS SECTION
================================= */

.projects-section {
  padding: 0px 5%;
  padding-bottom: 80px;
}

.grid-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-card {
  position: relative;
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.4s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-10px);
}

/* Image */
.card-img-wrap {
  height: 350px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

/* Tag */
.exclusive-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: #000;
  font-size: 11px;
  padding: 6px 12px;
  font-weight: 600;
  z-index: 2;
  letter-spacing: 1px;
}

/* Content */
.card-content {
  padding: 25px;
}

.card-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 8px;
}

.location {
  display: block;
  font-size: 14px;
  color: var(--text-grey);
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.price-label {
  font-size: 12px;
  color: var(--text-grey);
  letter-spacing: 1px;
}

.price-value {
  color: var(--gold);
  font-weight: 600;
  font-size: 16px;
}

.arrow-icon {
  font-size: 20px;
  color: var(--gold);
  transition: 0.3s;
}

.project-card:hover .arrow-icon {
    transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 992px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
  .rera-section {
    padding: 0px 5%;
  }
  .projects-section {
    padding: 0px 5%;
    padding-bottom: 40px;
  }
  .faq-section {
    padding:  80px 5%;
  }
  .invest-container {
    padding: 0px 5%;
  }
  .invest-content {
    padding-top: 20px 5%;
  }
}
/* ===============================
   EXPRESS FORM
================================= */
.express {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 80px 60px;
}

.express form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.express input {
  padding: 12px;
  border-radius: 6px;
  border: none;
}

/* ===============================
   FOOTER
================================= */
.footer {
  padding: 20px;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 992px) {
  .rera-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .invest-container,
  .grid-container,
  .rera-cards,
  .express {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px;
  }

 
  .invest-title {
    font-size: 38px;
  }

  .page-title h1,
  .rera-header h2 {
    font-size: 32px;
  }
}

/* Text Styling */
.text-side { flex: 1; }

.block-title {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--rent-white);
}

.block-text {
    color: var(--rent-grey);
    margin-bottom: 25px;
    font-size: 18px;
}

/* List Styling */
ul.luxury-list {
    list-style: none;
    padding: 0;
}

ul.luxury-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--rent-grey);
    font-size: 14px;
}

ul.luxury-list li::before {
    content: '•';
    color: var(--rent-gold);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -5px;
}

/* =========================================
   11. TESTIMONIALS
   ========================================= */
.testimonial-row {
  display: flex;
  gap: 20px;
  padding: 30px 5%;
  overflow-x: auto;
}

.testimonial {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 14px;
  min-width: 280px;
}

.section-header {
    margin: 70px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: #d6dae2;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 50px; /* FIXED SIZE */
    color: var(--white);
    background-color: #000000 ;
    margin-bottom: 20px;
}

.section-header-Sell h2{
  font-family: 'Playfair Display', serif;
  font-size: 50px;
}
/* Mobile (768px) - 1 Column */
@media (max-width: 768px) {
    /* Adjust font size for mobile specific */
    .section-header h2 {
        font-size: 36px; 
        padding-top: 40px;
    }
    .section-header-Sell h2 {
        font-size: 36px;
    }
}

.testimonials-scroll {
    display: flex; overflow-x: auto; gap: 30px; padding: 0 5% 100px;
    scrollbar-width: none;
    background-color: #000000;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }

.testi-card {
    min-width: 400px; background: #111; border: 1px solid #222;
    padding: 50px; position: relative;
}
.quote-icon {
    font-size: 60px; color: var(--gold); opacity: 0.3;
    font-family: 'Playfair Display', serif; line-height: 0; margin-bottom: 30px;
}
.testi-card p {
    font-family: 'Work Sans', sans-serif;
    font-style: italic;
    font-size: 18px; /* UPDATED Paragraph Size */
    line-height: 1.8; color: #ddd; margin-bottom: 30px;
}
.client-name {
    font-family: 'Work Sans', sans-serif; font-weight: 700; color: var(--gold); font-size: 14px;
}
.client-name span {
    display: block; font-weight: 400; color: #666; margin-top: 5px;
}

/* Risks and Safety Regulations (RERA) */
/* Section Wrapper */
.rera-safety-section{
    max-width: 950px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
    color: #cfcfcf;
}

/* Heading */
.rera-heading{
    font-family: "Playfair Display", serif;
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Intro text */
.rera-intro{
    font-size: 16px;
    line-height: 1.8;
    color: #bfbfbf;
    max-width: 820px;
    margin: 0 auto 30px;
}

/* List container */
.rera-protection-list{
    list-style: none;
    padding: 0;
    margin: 0px auto;
    text-align: left;
    display: inline-block;
}

/* List items */
.rera-protection-list li{
    position: relative;
    padding-left: 22px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: #d4d4d4;
}

/* Gold bullet */
.rera-protection-list li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #d4a74f;
    border-radius: 50%;
}

/* Bold labels */
.rera-protection-list li strong{
    color: #ffffff;
}

/* Closing paragraph */
.rera-closing{
    font-size: 16px;
    line-height: 1.8;
    color: #bfbfbf;
    max-width: 820px;
    margin: 30px auto 0;
}

/* Optional luxury divider */
.rera-heading::after{
    content:"";
    display:block;
    width:60px;
    height:2px;
    background:#d4a74f;
    margin:18px auto 0;
}