* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #000;
    color: #fff;
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 60px;
}

.logo {
    height: 36px;
}

.nav-center a {
    color: #fff;
    text-decoration: none;
    margin: 0 12px;
    font-size: 14px;
}

.call-btn {
    background: #fff;
    color: #000;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.mobile-nav {
    display: none;
}

/* HERO */
.hero-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}

.hero-box {
    display: flex;
    border: 2px solid #fff;
    padding: 10px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    flex: 1.2;
}

.hero-content {
    flex: 1;
    padding: 50px;
    text-align: left;
}

.hero-content h1 {
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-size: larger;
}

.hero-content h2 {
    font-weight: 400;
    margin-bottom: 25px;
}

.hero-content ul {
    list-style: none;
}

.hero-content li {
    margin-bottom: 10px;
    font-size: 14px;
}

.price {
    font-size: 22px;
    margin: 20px 0;
}

.cta {
    background: #c9a36b;
    color: #000;
    padding: 16px;
    border: 2px dashed #000;
    width: fit-content;
    font-weight: 600;
}

.brand-line {
    margin-top: 20px;
    font-size: 20px;
    letter-spacing: 2px;
}

.brand-line span {
    font-family: Georgia, serif;
    font-weight: bold;
}

/* MOBILE */
@media (max-width: 900px) {
    .navbar {
        display: none;
    }

    .mobile-nav {
        display: flex;
        padding: 16px 20px;
    }

    .hero-box {
        flex-direction: column;
    }

    .hero-content {
        padding: 30px 20px;
        text-align: center;
    }

    .cta {
        margin: 0 auto;
    }
}

.brand-line {
    margin-top: 20px;
    font-size: 20px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.brand-logo {
    height: 26px;
    object-fit: contain;
}

@media (max-width: 900px) {
    .brand-logo {
        height: 22px;
    }

    .brand-line {
        font-size: 16px;
        gap: 8px;
    }
}

/* PROJECT OVERVIEW */
.project-overview {
    background: #fff;
    padding: 80px 20px;
    color: #000;
}

.project-overview .container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.project-overview h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.overview-text {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-box {
    border: 1px solid #000;
    padding: 25px 15px;
}

.info-box strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.info-box span {
    font-size: 13px;
    color: #555;
}

/* PROJECT HIGHLIGHTS */
.project-highlights {
    display: flex;
    background: #000;
    color: #fff;
}

.highlight-image {
    flex: 1;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-content {
    flex: 1;
    padding: 70px 60px;
}

.highlight-content h2 {
    font-size: 26px;
    margin-bottom: 25px;
}

.highlight-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.highlight-content li {
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    font-size: 14px;
}

.highlight-content li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #c9a36b;
}

.btn-outline {
    display: inline-block;
    padding: 12px 26px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 900px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-highlights {
        flex-direction: column;
    }

    .highlight-content {
        padding: 40px 25px;
    }
}

/* AMENITIES */
.amenities-section {
    background: #fff;
    padding: 50px 0;
    text-align: center;
}

.amenities-section h2 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #000;
    
}

/* Slider */
.amenities-slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.amenities-track {
    display: flex;
    transition: transform 0.5s ease;
    touch-action: pan-y;
}

.amenity {
    min-width: 100%;
    padding: 0 20px;
}

.amenity img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.amenity p {
    margin-top: 12px;
    font-size: 14px;
}

/* Arrows on image */
.nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 18px;
    padding: 8px 12px;
    z-index: 2;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Dots */
.dots {
    margin-top: 12px;
}

.dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid #000;
    margin: 0 4px;
}

.dots span.active {
    background: #000;
}

/* DESKTOP */
@media (min-width: 901px) {
    .amenity {
        min-width: 260px;
    }

    .amenities-track {
        justify-content: center;
    }

    .nav {
        display: none;
    }
}
/* GALLERY */
.gallery-section {
    background: #000;
    padding: 60px 20px;
    color: #fff;
}


.gallery-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 26px;
}

.gallery-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* TABLET */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid img {
        height: 200px;
    }
}

/* MOBILE (2 per row – as requested) */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid img {
        height: 160px;
    }
}

/* PRICE LIST */
.price-list-section {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

.price-list-section h2 {
    font-size: 28px;
    margin-bottom: 50px;
    color:#000;
}

.price-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.price-card {
    background: #fff;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    color:#000;
}

.price-card h3 {
    font-size: 18px;
    color:#000;
}

.price-card hr {
    margin: 20px 0;
    color:#000;
}

.price-card p {
    font-size: 14px;
    margin: 10px 0;
    color:#000;
}

.price-card button {
    margin-top: 20px;
    padding: 12px 25px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* FLOOR PLAN */
.floor-plan-section {
    background: #000;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.floor-plan-section h2 {
    font-size: 28px;
    margin-bottom: 50px;
}

.floor-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.floor-card {
    position: relative;
}

.floor-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    filter: blur(2px);
}

.floor-card button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 22px;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .price-grid,
    .floor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .price-grid,
    .floor-grid {
        grid-template-columns: 1fr;
    }
}


/* LOCATION ADVANTAGE */
.location-section {
    background: #fff;
    color: #000;
    padding: 80px 40px;
}

.location-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

.location-map {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

.location-content {
    flex: 1;
}

.location-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.location-list {
    list-style: none;
    margin-bottom: 30px;
}

.location-list li {
    margin-bottom: 10px;
    font-size: 15px;
}

.visit-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
}

/* PROJECT VIDEO */
/* PROJECT VIDEO */
.video-section {
    background: #000;
    padding: 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-height: 450px;
    overflow: hidden;
}

.video-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-overlay h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 900px) {
    .video-img {
        height: 300px;
    }
}


/* MOBILE */
@media (max-width: 900px) {
    .location-container {
        flex-direction: column;
    }

    .location-map iframe {
        height: 300px;
    }

   
}

/* ABOUT RUSTOMJEE */
.about-rustomjee {
    background: #fff;
    color: #000;
    padding: 80px 40px;
    text-align: center;
}

.about-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-family: Georgia, serif;
    text-align: center !important;
}


/* DISCLAIMER COMMON */
.disclaimer-section {
    padding: 60px 40px;
    font-size: 12px;
    line-height: 1.7;
}

.disclaimer-section.light {
    background: #fff;
    color: #333;
}

.disclaimer-section.dark {
    background: #000;
    color: #ccc;
    text-align: center;
}

.disclaimer-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.disclaimer-container h3 {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* QR */
.qr-image {
    width: 140px;
    background: #fff;
    padding: 8px;
    margin: 10px 0;
}

.qr-text {
    font-size: 11px;
    letter-spacing: 1px;
}

/* FOOTER DISCLAIMER */
.footer-disclaimer {
    background: #000;
    color: #aaa;
    padding: 40px 30px;
    font-size: 11px;
    line-height: 1.6;
}

.footer-disclaimer-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.footer-disclaimer p {
    margin-bottom: 12px;
}

.rera-line {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.policy-links {
    margin-top: 15px;
}

.policy-links a {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    margin: 0 6px;
}

/* MOBILE */
@media (max-width: 900px) {
    .disclaimer-section,
    .footer-disclaimer {
        padding: 40px 20px;
        font-size: 11px;
    }
}
