/* ==========================================
   GLOBAL BASE (Light Architectural Theme)
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    background: #F0F0F0;
    /* Cool modern grey */
    font-family: 'Outfit', sans-serif;
    color: #2A2A2A;
    /* Charcoal */
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Section spacing */
.section {
    padding: 120px 0;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1320px;
    margin: auto;
}

/* ==========================================
   NAVBAR
========================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 5%;
    z-index: 30;
    background: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid #ddd;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 26px;
    font-weight: 700;
    color: #4A0D0C;
    /* Burgundy */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-links li a {
    cursor: pointer;
    font-size: 16px;
    color: #2A2A2A;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #D4AF37;
}

/* Mobile menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    z-index: 50;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.35s ease-in-out;
    border-left: 1px solid #ddd;
}

.mobile-menu a {
    font-size: 22px;
    color: #2A2A2A;
}

/* ==========================================
   HERO
========================================== */

.hero {
    background: url('assets/back.webp') center/cover no-repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.268), #4d4d4d30);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-left: 10%;
    max-width: 750px;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1;
    color: #2A2A2A;
}

.hero-content h1 span {
    color: #D4AF37;
}

.hero-content p {
    margin-top: 16px;
    font-size: 20px;
    opacity: 0.8;
}
#vision{
    background: url("assets/img_26.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
}
.vision-wrapper{
    background: linear-gradient(to bottom, #00000020 , #ffffff70);
    padding: 150px 6%;
}
#vision h2{
    color: white;
    margin-bottom: 1%;
}
#vision .desc{
    color: white;
}
#amenities{
    background: url("assets/img_12.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;

}
#amenities h2{
    color: white;
}
.amenities-wrapper{
    background: linear-gradient(to bottom, #00000020 , #000000bf);
    padding: 150px 6%;
}
.hero-btns {
    margin-top: 32px;
    display: flex;
    gap: 20px;
}
.amenity-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 0;
    overflow: hidden;
    transition: 0.3s ease;
    text-align: center;
}

.amenity-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}

.amenity-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.amenity-card h3 {
    padding: 15px;
    font-size: 20px;
    color: #2A2A2A;
}

/* Buttons */
.btn-primary {
    padding: 14px 30px;
    background: #D4AF37;
    color: #2A2A2A;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
#pricing h2{
    color: white;
}
.btn-secondary {
    padding: 14px 30px;
    background: transparent;
    border: 2px solid #2A2A2A;
    color: #2A2A2A;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-secondary:hover {
    color: #D4AF37;
    border-color: #D4AF37;
}
/* PAYMENT TIMELINE */
.timeline {
    position: relative;
    margin: 40px auto;
    padding-left: 30px;
    border-left: 3px solid #D4AF37;
}

.timeline-year {
    font-size: 26px;
    font-weight: 700;
    color: #4A0D0C;
    margin-top: 40px;
    margin-bottom: 20px;
}

.timeline-item {
    position: relative;
    padding: 20px 0 20px 20px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 28px;
    width: 16px;
    height: 16px;
    background: #D4AF37;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #D4AF37;
}

.timeline-date {
    font-weight: 600;
    font-size: 16px;
    color: #2A2A2A;
}

.timeline-content h4 {
    font-size: 18px;
    margin: 5px 0;
    color: #4A0D0C;
}

.timeline-content p {
    font-size: 16px;
    margin: 0;
    color: #2A2A2A;
}

/* Mobile */
@media (max-width: 600px) {
    .timeline {
        padding-left: 20px;
        border-left-width: 2px;
    }

    .timeline-item::before {
        left: -10px;
        width: 14px;
        height: 14px;
    }
}
/* ACCORDION */
.acc-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.acc-header {
    width: 100%;
    padding: 16px 20px;
    background: #D4AF37;
    color: #2A2A2A;
    font-size: 20px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: left;
}

.acc-header.active {
    background: #b89023;
}

.acc-body {
    display: none;
    padding: 20px;
    background: #fafafa;
}


/* TIMELINE INSIDE ACCORDION */
.timeline {
    position: relative;
    margin-left: 25px;
    border-left: 3px solid #D4AF37;
    padding-left: 20px;
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: #D4AF37;
    border-radius: 50%;
    border: 3px solid #fff;
}

.timeline-date {
    font-weight: 600;
    color: #2A2A2A;
}

.timeline-content h4 {
    margin: 5px 0;
    color: #4A0D0C;
    font-size: 17px;
}

.timeline-content p {
    margin: 0;
    color: #2A2A2A;
}


/* ==========================================
   GRID SECTIONS
========================================== */

.grid-3,
.facts-grid,
.pricing-grid,
.pay-grid,
.amenities-grid,
.gallery-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.facts-grid {
    grid-template-columns: repeat(4, 1fr);
}

.pricing-grid {
    grid-template-columns: repeat(4, 1fr);
}

.pay-grid {
    grid-template-columns: repeat(3, 1fr);
}

.amenities-grid {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* Cards */
.feature,
.fact-card,
.pricing-card,
.pay-card,
.amenity {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.feature:hover,
.fact-card:hover,
.pricing-card:hover,
.pay-card:hover,
.amenity:hover {
    border-color: #D4AF37;
    transform: translateY(-4px);
}

.price {
    color: #D4AF37;
    font-size: 26px;
    margin: 10px 0;
}

/* ==========================================
   GALLERY
========================================== */

.gallery-img {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    object-fit: cover;
    transition: 0.3s;
    filter: brightness(0.95);
}

.gallery-img:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}
/* LOCATION GRID FIX */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.location-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.location-details h3 {
    margin-bottom: 15px;
    color: #4A0D0C;
}

.location-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-details ul li {
    margin-bottom: 10px;
    font-size: 18px;
    position: relative;
    padding-left: 20px;
}

.location-details ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-size: 22px;
    line-height: 18px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .location-details ul li {
        padding-left: 0;
    }

    .location-details ul li::before {
        display: none;
    }
}
/* PRICING IMAGE CARDS */
/* FIXED PRICING IMAGE CARDS */
.img-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 2px solid rgba(255,255,255,0.7);
    height: 320px;
    background: #000;
    padding: 0;
}

.pricing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
    filter: brightness(0.85);
}

.img-card:hover .pricing-img {
    transform: scale(1.07);
    filter: brightness(0.65);
}

/* Overlay box */
.pricing-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 18px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
    color: #fff;
}

.pricing-overlay h3 {
    margin: 0 0 3px;
    font-size: 20px;
    font-weight: 700;
}

.pricing-overlay .price {
    font-size: 18px;
    color: #D4AF37;
    font-weight: 700;
}

@media(max-width:768px){
    .img-card {
        height: 260px;
    }
}


/* ==========================================
   CONTACT FORM
========================================== */
#contact{
    background: url('assets/img_11.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0;
}
#contact h2{
    color: white;
}
.contact-container {
    
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.wrap{
   background-color: rgba(0, 0, 0, 0.45);padding: 150px 5%;
}
.contact-form input,
.contact-form select {
    background: #fff;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* ==========================================
   FLOATING BUTTONS
========================================== */

.whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25D366;
    padding: 15px;
    border-radius: 50%;
    z-index: 50;
    color: white;
}

.consult-btn {
    position: fixed;
    right: 20px;
    bottom: 90px;
    background: #D4AF37;
    padding: 14px 26px;
    border-radius: 30px;
    color: #2A2A2A;
    font-weight: 600;
    cursor: pointer;
    border: none;
    z-index: 50;
}

/* ==========================================
   FOOTER
========================================== */

footer {
    text-align: center;
    padding: 25px;
    color: #2A2A2A;
    border-top: 1px solid #ddd;
    background: #fff;
}

/* ==========================================
   FADE-IN ANIMATIONS (Intersection Observer)
========================================== */

.fade-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 992px) {

    .grid-3,
    .facts-grid,
    .pricing-grid,
    .pay-grid,
    .amenities-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .pricing-grid,
    .pay-grid,
    .amenities-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 50px;
    }
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form button {
    width: 100%;
}