/* =========================================
   1. CORE VARIABLES & SETUP
   ========================================= */
:root {
   --rent-gold: #D4AF37;
    --rent-dark: #000000;
    --rent-card-bg: #111111;
    --rent-white: #ffffff;
    --rent-grey: #bdbdbd;
    --rent-glass: rgba(255, 255, 255, 0.03);
    --rent-glass-border: rgba(255, 255, 255, 0.1);
}


body {
    background-color: var(--rent-dark); /* Fixed variable name */
    color: var(--rent-white); /* Fixed variable name */
    font-family: 'work sans', sans-serif;
    overflow-x: hidden;
    cursor: none; /* Custom Cursor */
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* =========================================
   2. OFF-PLAN PAGE HERO
   ========================================= */
.page-hero {
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1512453979798-5ea904ac6605?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
    position: relative;
    display: flex;
    align-items: flex-end; /* Text at bottom */
    justify-content: center;
    padding-bottom: 80px;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--rent-dark) 10%, transparent 60%, rgba(0,0,0,0.4));
}

.hero-title {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title p {
    color: var(--rent-gold);
    letter-spacing: 4px;
    font-size: 14px;
    margin-top: 15px;
    font-weight: 600;
}

/* =========================================
   3. PROJECTS GRID SECTION
   ========================================= */
.projects-section {
    padding: 80px 5%;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: var(--rent-card-bg);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
}

.card-img-wrap {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .card-img-wrap img {
    transform: scale(1.1);
}

.exclusive-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--rent-gold);
    color: #000;
    padding: 6px 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 0 0 5px 0;
    color: var(--rent-white);
}

.location {
    font-size: 12px;
    color: var(--rent-grey);
    display: block;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--rent-glass-border);
    padding-top: 15px;
}

.price-label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.price-value {
    color: var(--rent-gold);
    font-weight: 600;
    font-size: 16px;
}

.arrow-icon {
    color: var(--rent-gold);
    font-size: 18px;
    transition: 0.3s;
}

.project-card:hover .arrow-icon {
    transform: rotate(-45deg);
}

/* =========================================
   4. INFO CONTENT BLOCKS (Alternating)
   ========================================= */
.info-wrapper {
    background-color: var(--rent-card-bg);
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.01) 0px, rgba(255,255,255,0.01) 1px, transparent 1px, transparent 20px);
    padding: 100px 5% 50px;
}

.content-block {
    max-width: 1200px;
    margin: 0 auto 120px;
    display: flex;
    gap: 80px;
    align-items: center;
}
/*  */
.content-block.reverse {
    flex-direction: row-reverse;
}

/* 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;
        font-family: 'work sans', sans-serif;

}

/* 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: 18px;
    font-family: 'work sans', sans-serif;

}

ul.luxury-list li::before {
    content: '•';
    color: var(--rent-gold);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Image Styling */
.img-side { flex: 1; }

.img-side img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(20%);
    transition: 0.5s ease;
}

.img-side:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Full Width Block */
.content-block.full {
    display: block;
    text-align: center;
    max-width: 900px;
    margin-bottom: 0;
}


/* =========================================
   FAQ SECTION
   ========================================= */

/* THE FIX: Added the parent container back so the video stays locked inside! */
.rent-pg-faq {
    position: relative;
    overflow: hidden;
    padding: 120px 5%;
    background-color: var(--rent-dark);
}

/* 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; /* Removed 80px auto to prevent spacing issues */
}

.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: var(--rent-gold);
    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: var(--rent-gold);
    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;
}

.rent-pg-main-title, .rent-pg-section-title {
    font-family: var(--font-heading) !important;
    font-size: 50px !important; /* STRICT DESKTOP HEADING */
    font-weight: 500;
    line-height: 1.2;
    
    /* THE FIX: Layered Text Shadow for perfect readability */
    text-shadow: 
        2px 2px 5px rgba(0, 0, 0, 0.9),  /* Crisp dark edge */
        0px 10px 30px rgba(0, 0, 0, 0.7); /* Wide soft dark glow */
}

/* =======================================================
   RESPONSIVE LAYOUTS (TABLET & MOBILE)
   ======================================================= */

/* --- TABLET VIEW (Max 1024px) --- */
@media (max-width: 1024px) {
    /* Grid becomes 2 columns */
    .grid-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .card-img-wrap { height: 300px; }
    
    .rent-pg-intro, .projects-section, .rent-pg-faq { padding: 80px 5%; }
}

/* --- MOBILE VIEW (Max 768px) --- */
@media (max-width: 768px) {
    /* Grid becomes 1 column */
    .grid-container { grid-template-columns: 1fr; max-width: 500px; }
    
    .rent-pg-hero { height: 70vh; }
    .card-img-wrap { height: 280px; }
    
    /* FAQ Mobile Adjustments */
    .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; 
    }
}

/* --- STRICT MOBILE VIEW (Max 425px) --- */
@media (max-width: 425px) {
    
    /* Strict Padding for Mobile */
    .rent-pg-intro, .projects-section, .rent-pg-faq { padding: 60px 20px !important; }
    
    /* STRICT MOBILE HEADINGS (36px) */
    .rent-pg-main-title, .rent-pg-section-title {
        font-size: 36px !important;
        margin-bottom: 20px !important;
    }
    
    /* STRICT MOBILE PARAGRAPHS & FAQ TEXT (16px) */
    .rent-pg-description, .rent-pg-faq-content p, .rent-pg-faq-q {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    /* Fix Alignment for Mobile */
    .rent-pg-section-title, .rent-pg-description, .rent-pg-faq-header {
        text-align: left !important;
    }
    
    .rent-pg-gold-divider { margin: 15px 0 !important; }

    /* Card Mobile Adjustments */
    .card-img-wrap { height: 240px; }
    .card-content { padding: 20px; text-align: left !important; }
    .card-content h3 { font-size: 20px; }
    
    /* FAQ Mobile Fixes */
    .rent-pg-faq-item { border-radius: 8px; }
    .rent-pg-faq-btn { padding: 20px; }
    .rent-pg-faq-content { padding: 0 20px 20px 20px; text-align: left !important; }
}

/* =======================================================
   RESPONSIVE LAYOUTS & STRICT TYPOGRAPHY 
   (TABLET: 724px & MOBILE: 424px)
   ======================================================= */

/* --- TABLET VIEW (Max 724px) --- */
@media (max-width: 724px) {
    
    /* 1. STRICT HEADINGS (36px) */
    .hero-title h1,
    .block-title,
    .rent-pg-main-title,
    .rent-pg-section-title,
    .page-title h1,
    .invest-title,
    .rera-header h2,
    .express h2,
    .section-header h2 {
        font-size: 36px !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    /* 2. STRICT PARAGRAPHS & LISTS (16px) */
    .block-text,
    .rent-pg-description,
    .rent-pg-faq-content p,
    .rent-pg-faq-q,
    .invest-text p,
    .rera-header p,
    .testi-card p,
    .hero-title p,
    ul.luxury-list li,
    ul.selling-strategy li {
        font-size: 18px !important;
        line-height: 1.6 !important;
    }

    /* Keep Card Titles Proportional */
    .card-content h3,
    .rera-card h3 {
        font-size: 22px !important; 
    }

    /* Layout Adjustments for Tablet */
    .grid-container { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; gap: 30px; }
    .card-img-wrap { height: 280px; }
    .rent-pg-intro, .projects-section, .rent-pg-faq, .info-wrapper { padding: 60px 5%; }
    
    .page-hero { height: 50vh; padding-bottom: 50px; }
    
    /* Info Blocks Stack Vertically */
    .content-block, .content-block.reverse { 
        flex-direction: column; 
        gap: 30px;
        margin-bottom: 60px;
    }
    .img-side, .text-side { width: 100%; }
    
    .rent-pg-faq-btn { padding: 25px 20px; }
    .rent-pg-faq-content { padding: 0 20px 25px 20px; }
}

/* --- STRICT MOBILE VIEW (Max 424px) --- */
@media (max-width: 424px) {
    
    /* Strict Padding for Mobile */
    .rent-pg-intro, .projects-section, .rent-pg-faq, .info-wrapper { padding: 50px 20px !important; }
    
    /* Hero Tweaks */
    .page-hero { height: 45vh; }
    .hero-title h1 { font-size: 36px !important; } 

    /* =========================================
       SECTION-WISE ALIGNMENT CONTROL
       ========================================= */

    /* 1. CENTER ALIGNED (Hero, Main Titles, Section Headers) */
    .hero-title,
    .page-title,
    .rera-header,
    .rent-pg-faq-header,
    .section-header,
    .express h2,
    .dark {
        text-align: center !important;
    }

    /* Center the gold divider under FAQ title */
    .rent-pg-gold-divider { margin: 15px auto !important; }

    /* 2. LEFT ALIGNED (Cards, Info Blocks, Heavy Text) */
    .invest-content,
    .invest-title,
    .invest-subtitle,
    .invest-text,
    .content-block,
    .block-title,
    .block-text,
    .card-content,
    .rera-card,
    .testi-card,
    .rent-pg-faq-btn,
    .rent-pg-faq-content {
        text-align: left !important;
    }
    
    /* Lock lists to the left */
    ul.luxury-list, 
    ul.selling-strategy { 
        display: block; 
        text-align: left !important; 
    }

    /* Card Mobile Adjustments */
    .card-img-wrap { height: 240px; }
    .card-content h3 { font-size: 20px !important; }
    
    /* FAQ Mobile Fixes */
    .rent-pg-faq-item { border-radius: 8px; }
    .rent-pg-faq-btn { padding: 20px; }
}


/* =========================================
   RERA SAFETY SECTION
========================================= */
.rera-section {
    background-color: var(--rent-card-bg); /* Changed so it contrasts against the black */
    padding: 0px 5% 80px;
    color: var(--rent-white);
}

.rera-container {
    max-width: 1400px;
    margin: 0 auto;
}

.rera-header {
    padding-top: 50px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.rera-subtitle {
    display: block;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--rent-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.rera-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    margin-bottom: 25px;
}

.rera-header p {
    color: var(--rent-grey);
    font-size: 18px;
    line-height: 1.8;
}
/* =======================================================
   DUBAI INVESTMENT BENEFITS SECTION
   ======================================================= */
.dubai-invest-benefits {
    background-color: var(--soft-black, #0A0A0A);
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Text gets slightly more room than the card */
    gap: 80px;
    align-items: center;
}

/* --- Left Side Typography --- */
.benefits-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--luxury-gold, #D4AF37);
    margin-bottom: 20px;
}

/* STRICT DESKTOP: Heading 50px */
.benefits-heading {
    font-family: var(--font-heading) !important;
    font-size: 50px !important; 
    line-height: 1.2 !important;
    color: var(--white, #ffffff);
    margin: 0 0 30px 0;
}

.benefits-divider {
    width: 60px;
    height: 2px;
    background-color: var(--luxury-gold, #D4AF37);
    margin-bottom: 30px;
}

/* STRICT DESKTOP: Paragraph 18px */
.benefits-text {
    font-family: var(--font-body) !important;
    font-size: 18px !important; 
    line-height: 1.6 !important;
    color: var(--text-grey, #cfcfcf);
    margin-bottom: 25px;
    text-align: justify; 
}

.highlight-text {
    color: var(--white);
    font-style: italic;
    border-left: 2px solid var(--luxury-gold, #D4AF37);
    padding-left: 20px;
    margin-top: 30px;
}

/* --- Right Side Glass Card --- */
.benefits-glass-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid var(--luxury-gold, #D4AF37);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 28px !important;
    color: var(--white);
    margin: 0 0 30px 0;
    font-weight: 400;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* STRICT DESKTOP: List Items 18px */
.benefits-list li {
    font-family: var(--font-body) !important;
    font-size: 18px !important; 
    line-height: 1.6 !important;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    color: var(--text-grey);
}

.benefits-list li i {
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--luxury-gold, #D4AF37);
    font-size: 16px;
}

/* =======================================================
   RESPONSIVE LAYOUT (TABLET & MOBILE)
   ======================================================= */

/* --- TABLET VIEW (Max 1024px) --- */
@media (max-width: 1024px) {
    .benefits-container {
        grid-template-columns: 1fr; /* Stacks text on top of the card */
        gap: 60px;
    }
    .benefits-text {
        text-align: left; /* Removes justify so words don't stretch weirdly */
    }
}

/* --- MOBILE/SMALL TABLET VIEW (Max 724px) --- */
@media (max-width: 724px) {
    
    /* STRICT MOBILE: Heading 36px */
    .benefits-heading {
        font-size: 36px !important;
        margin-bottom: 20px !important;
    }

    /* STRICT MOBILE: Paragraphs & List Items 14px */
    .benefits-text,
    .benefits-list li {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .card-title {
        font-size: 24px !important;
    }
}

/* --- STRICT MOBILE PHONE VIEW (Max 425px) --- */
@media (max-width: 425px) {
    .dubai-invest-benefits {
        padding: 60px 20px !important; /* Forces clean edges on small phones */
    }
    
    .benefits-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .benefits-divider {
        margin-bottom: 25px;
    }

    .benefits-glass-card {
        padding: 40px 20px; /* Tighter internal padding for the card */
    }

    .benefits-list li {
        margin-bottom: 15px;
    }
    
    .highlight-text {
        padding-left: 15px;
        margin-top: 20px;
    }
}

/* Premium Off-Plan Properties in Dubai */
.offplan-section{
    padding:100px 0 20px;
    background:#0b0b0b;
    color:#fff;
}

.offplan-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}

.offplan-image img{
    width:100%;
    border-radius:12px;
    transition:0.5s;
}

.offplan-image img:hover{
    transform:scale(1.03);
}

.offplan-content{
    flex:1;
}

.section-tag{
    color:#d4a74f;
    letter-spacing:3px;
    font-size:13px;
}

.offplan-content h2{
    font-size:42px;
    margin:15px 0;
    line-height:1.3;
    font-family: 'Playfair Display', serif;
    font-size: 50px;
}

.section-desc{
    color:#bdbdbd;
    margin-bottom:35px;
}

.offplan-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:40px;
}

.feature-box{
    display:flex;
    gap:15px;
    padding:18px;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:10px;
    transition:0.3s;
}

.feature-box i{
    color:#d4a74f;
    font-size:20px;
}

.feature-box h4{
    margin:0;
    font-size:16px;
}

.feature-box p{
    font-size:13px;
    color:#bdbdbd;
}

.feature-box:hover{
    background:#111;
    border-color:#d4a74f;
}

.explore-btn{
    display:inline-block;
    padding:14px 28px;
    border:1px solid #d4a74f;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.explore-btn:hover{
    background:#d4a74f;
    color:#000;
}

/* --- MOBILE/SMALL TABLET VIEW (Max 724px) --- */
@media (max-width: 724px) {
    
    /* STRICT MOBILE: Heading 36px */
    .offplan-content h2{
    font-size:36px;
}
}

/* 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: 50px;
    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;
}

/* --- MOBILE/SMALL TABLET VIEW (Max 724px) --- */
@media (max-width: 724px) {
    
    /* STRICT MOBILE: Heading 36px */
    .rera-heading {
    font-size:36px;
}
}