:root {
    --primary: #800000; /* Maroon */
    --secondary: #ff0000; /* Red */
    --gold: #D4AF37;
    --dark: #222;
    --light: #f4f6f9;
    --white: #fff;
    --gray: #666;
}

/* --- BASE RESET --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Lato', sans-serif; color: #333; background: #fff; line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.text-center { text-align: center; }
.relative { position: relative; }
.mt-20 { margin-top: 20px; }
.full-width { width: 100%; }
.small-text { font-size: 12px; color: #888; }

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* --- BUTTONS --- */
.btn-primary { 
    background: linear-gradient(to right, var(--primary), var(--secondary)); 
    color: var(--white); border: none; padding: 12px 25px; 
    text-transform: uppercase; font-weight: 700; cursor: pointer; 
    border-radius: 4px; transition: 0.3s; box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0,0,0,0.15); }

.btn-outline {
    background: transparent; border: 2px solid var(--primary);
    color: var(--primary); padding: 10px 25px; text-transform: uppercase;
    font-weight: 700; cursor: pointer; border-radius: 4px; transition: 0.3s;
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* --- HEADER --- */
#header {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 8px 0;
    position: sticky; top: 0; z-index: 1000;
}
.header-flex { display: flex; justify-content: space-between; align-items: center; }

/* Transparent Header Logo */
.logo-bg { background: transparent; padding: 0; display: flex; align-items: center; }
.logo-img { max-height: 45px; width: auto; filter: brightness(0) invert(1); }

.desktop-nav a { margin: 0 15px; font-weight: 600; font-size: 14px; color: var(--white); text-transform: uppercase; }
.desktop-nav a:hover { color: var(--gold); }

.header-cta { display: flex; align-items: center; gap: 15px; }
.phone-link { display: flex; align-items: center; gap: 5px; font-weight: 700; color: var(--white); font-size: 14px; }
.phone-link img { filter: brightness(0) invert(1); }

/* --- HERO SECTION --- */
.hero-section { position: relative; height: 600px; overflow: hidden; background: #000; }
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.5s ease-in-out;
}
.slide::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); }
.slide.active { opacity: 1; }

.hero-box {
    position: absolute; top: 80px; left: 0;
    background: #ffffff; padding: 25px; width: 380px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-top: 5px solid var(--primary); z-index: 10; border-radius: 0 0 8px 8px;
}
.status-badge { background: var(--primary); color: #fff; padding: 3px 8px; font-size: 10px; font-weight: bold; text-transform: uppercase; border-radius: 2px; }
.hero-box h1 { font-size: 30px; margin: 10px 0 5px; line-height: 1.1; font-weight: 900; text-transform: uppercase; }
.project-name { font-size: 13px; font-weight: 700; color: #555; margin-bottom: 15px; letter-spacing: 1px; }
.hero-offer { font-size: 16px; margin-bottom: 15px; line-height: 1.4; color: #333; }
.hero-list { list-style: none; margin-bottom: 20px; }
.hero-list li { font-size: 14px; margin-bottom: 8px; color: #444; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.hero-list li i { color: var(--secondary); }

/* --- SECTIONS --- */
.section-pad { padding: 60px 0; }
.bg-light { background: #f8f9fa; }
.section-title-center { 
    font-size: 32px; text-align: center; margin-bottom: 40px; 
    border-bottom: 3px solid var(--gold); display: inline-block; 
    padding-bottom: 10px; position: relative; left: 50%; transform: translateX(-50%); 
}

/* --- PRICING CARDS --- */
.pricing-container { display: flex; justify-content: center; gap: 20px; align-items: flex-end; flex-wrap: wrap; }
.pricing-card {
    background: #fff; border: 1px solid #eee; border-radius: 10px;
    padding: 30px 20px; text-align: center; flex: 1; min-width: 280px; max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; position: relative;
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.pricing-card.popular { border: 2px solid var(--gold); transform: scale(1.05); z-index: 2; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.pricing-card.popular:hover { transform: scale(1.05) translateY(-5px); }
.badge-pop {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: #000; padding: 5px 15px; font-size: 11px;
    font-weight: 800; text-transform: uppercase; border-radius: 20px;
}
.pc-header { font-size: 18px; font-weight: 700; color: #555; text-transform: uppercase; margin-bottom: 10px; }
.pc-size { font-size: 42px; font-weight: 900; color: var(--dark); line-height: 1; margin-bottom: 5px; font-family: 'Playfair Display', serif; }
.pc-size span { font-size: 14px; font-weight: 400; color: #888; display: block; font-family: 'Lato', sans-serif; margin-top: 5px; }
.pc-price { font-size: 22px; color: var(--primary); font-weight: 700; margin: 15px 0 20px; padding: 10px; background: #fff0f0; border-radius: 5px; }
.pc-features { list-style: none; margin-bottom: 25px; padding: 0; }
.pc-features li { color: #666; font-size: 14px; margin-bottom: 8px; border-bottom: 1px dashed #eee; padding-bottom: 5px; }

/* --- LOCATION TIMELINE --- */
.location-timeline-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 20px; }
.loc-item {
    background: #fff; padding: 20px; border-radius: 8px;
    display: flex; align-items: center; gap: 20px;
    border: 1px solid #eee; box-shadow: 0 3px 6px rgba(0,0,0,0.03); transition: 0.3s;
}
.loc-item:hover { transform: translateX(5px); border-color: var(--gold); }
.loc-icon {
    width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px; flex-shrink: 0;
}
.loc-content h3 { font-size: 20px; font-weight: 800; margin-bottom: 3px; color: var(--dark); }
.loc-content p { font-size: 14px; color: #666; margin: 0; }

/* --- OTHER GRIDS --- */
.features-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.feature-box { text-align: center; width: 100px; }
.feature-box i { font-size: 32px; color: var(--secondary); margin-bottom: 10px; }
.feature-box p { font-weight: 700; font-size: 14px; }

.overview-grid { display: flex; justify-content: center; gap: 20px; margin-top: 30px; text-align: center; flex-wrap: wrap; }
.overview-item { background: #fff; padding: 20px; border: 1px solid #ddd; border-radius: 5px; min-width: 150px; font-size: 14px; flex: 1; }

.amenities-grid-ref { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.amenity-box { width: 110px; background: #fff; padding: 15px 10px; border: 1px solid #eee; text-align: center; border-radius: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
.amenity-box img { width: 40px; height: 40px; margin-bottom: 5px; }
.amenity-box span { display: block; font-size: 12px; font-weight: 700; }

:root {
    --primary: #800000; /* Maroon */
    --secondary: #ff0000; /* Red */
    --gold: #D4AF37;
    --dark: #222;
    --light: #f4f6f9;
    --white: #fff;
    --gray: #666;
}

/* --- BASE RESET --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Lato', sans-serif; color: #333; background: #fff; line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.text-center { text-align: center; }
.relative { position: relative; }
.mt-20 { margin-top: 20px; }
.full-width { width: 100%; }
.small-text { font-size: 12px; color: #888; }

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* --- BUTTONS --- */
.btn-primary { 
    background: linear-gradient(to right, var(--primary), var(--secondary)); 
    color: var(--white); border: none; padding: 12px 25px; 
    text-transform: uppercase; font-weight: 700; cursor: pointer; 
    border-radius: 4px; transition: 0.3s; box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0,0,0,0.15); }

.btn-outline {
    background: transparent; border: 2px solid var(--primary);
    color: var(--primary); padding: 10px 25px; text-transform: uppercase;
    font-weight: 700; cursor: pointer; border-radius: 4px; transition: 0.3s;
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* --- HEADER --- */
#header {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 8px 0;
    position: sticky; top: 0; z-index: 1000;
}
.header-flex { display: flex; justify-content: space-between; align-items: center; }

/* Transparent Header Logo */
.logo-bg { background: transparent; padding: 0; display: flex; align-items: center; }
.logo-img { max-height: 45px; width: auto; filter: brightness(0) invert(1); }

.desktop-nav a { margin: 0 15px; font-weight: 600; font-size: 14px; color: var(--white); text-transform: uppercase; }
.desktop-nav a:hover { color: var(--gold); }

.header-cta { display: flex; align-items: center; gap: 15px; }
.phone-link { display: flex; align-items: center; gap: 5px; font-weight: 700; color: var(--white); font-size: 14px; }
.phone-link img { filter: brightness(0) invert(1); }

/* --- HERO SECTION --- */
.hero-section { position: relative; height: 600px; overflow: hidden; background: #000; }
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.5s ease-in-out;
}
.slide::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); }
.slide.active { opacity: 1; }

.hero-box {
    position: absolute; top: 80px; left: 0;
    background: #ffffff; padding: 25px; width: 380px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-top: 5px solid var(--primary); z-index: 10; border-radius: 0 0 8px 8px;
}
.status-badge { background: var(--primary); color: #fff; padding: 3px 8px; font-size: 10px; font-weight: bold; text-transform: uppercase; border-radius: 2px; }
.hero-box h1 { font-size: 30px; margin: 10px 0 5px; line-height: 1.1; font-weight: 900; text-transform: uppercase; }
.project-name { font-size: 13px; font-weight: 700; color: #555; margin-bottom: 15px; letter-spacing: 1px; }
.hero-offer { font-size: 16px; margin-bottom: 15px; line-height: 1.4; color: #333; }
.hero-list { list-style: none; margin-bottom: 20px; }
.hero-list li { font-size: 14px; margin-bottom: 8px; color: #444; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.hero-list li i { color: var(--secondary); }

/* --- SECTIONS --- */
.section-pad { padding: 60px 0; }
.bg-light { background: #f8f9fa; }
.section-title-center { 
    font-size: 32px; text-align: center; margin-bottom: 40px; 
    border-bottom: 3px solid var(--gold); display: inline-block; 
    padding-bottom: 10px; position: relative; left: 50%; transform: translateX(-50%); 
}

/* --- PRICING CARDS --- */
.pricing-container { display: flex; justify-content: center; gap: 20px; align-items: flex-end; flex-wrap: wrap; }
.pricing-card {
    background: #fff; border: 1px solid #eee; border-radius: 10px;
    padding: 30px 20px; text-align: center; flex: 1; min-width: 280px; max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; position: relative;
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.pricing-card.popular { border: 2px solid var(--gold); transform: scale(1.05); z-index: 2; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.pricing-card.popular:hover { transform: scale(1.05) translateY(-5px); }
.badge-pop {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: #000; padding: 5px 15px; font-size: 11px;
    font-weight: 800; text-transform: uppercase; border-radius: 20px;
}
.pc-header { font-size: 18px; font-weight: 700; color: #555; text-transform: uppercase; margin-bottom: 10px; }
.pc-size { font-size: 42px; font-weight: 900; color: var(--dark); line-height: 1; margin-bottom: 5px; font-family: 'Playfair Display', serif; }
.pc-size span { font-size: 14px; font-weight: 400; color: #888; display: block; font-family: 'Lato', sans-serif; margin-top: 5px; }
.pc-price { font-size: 22px; color: var(--primary); font-weight: 700; margin: 15px 0 20px; padding: 10px; background: #fff0f0; border-radius: 5px; }
.pc-features { list-style: none; margin-bottom: 25px; padding: 0; }
.pc-features li { color: #666; font-size: 14px; margin-bottom: 8px; border-bottom: 1px dashed #eee; padding-bottom: 5px; }

/* --- LOCATION TIMELINE --- */
.location-timeline-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 20px; }
.loc-item {
    background: #fff; padding: 20px; border-radius: 8px;
    display: flex; align-items: center; gap: 20px;
    border: 1px solid #eee; box-shadow: 0 3px 6px rgba(0,0,0,0.03); transition: 0.3s;
}
.loc-item:hover { transform: translateX(5px); border-color: var(--gold); }
.loc-icon {
    width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px; flex-shrink: 0;
}
.loc-content h3 { font-size: 20px; font-weight: 800; margin-bottom: 3px; color: var(--dark); }
.loc-content p { font-size: 14px; color: #666; margin: 0; }

/* --- OTHER GRIDS --- */
.features-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.feature-box { text-align: center; width: 100px; }
.feature-box i { font-size: 32px; color: var(--secondary); margin-bottom: 10px; }
.feature-box p { font-weight: 700; font-size: 14px; }

.overview-grid { display: flex; justify-content: center; gap: 20px; margin-top: 30px; text-align: center; flex-wrap: wrap; }
.overview-item { background: #fff; padding: 20px; border: 1px solid #ddd; border-radius: 5px; min-width: 150px; font-size: 14px; flex: 1; }

.amenities-grid-ref { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.amenity-box { width: 110px; background: #fff; padding: 15px 10px; border: 1px solid #eee; text-align: center; border-radius: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
.amenity-box img { width: 40px; height: 40px; margin-bottom: 5px; }
.amenity-box span { display: block; font-size: 12px; font-weight: 700; }

/* --- MASTER PLAN ALIGNMENT FIX (Grid System) --- */
.plans-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    justify-content: center; 
}

.plan-card { 
    position: relative; 
    cursor: pointer; 
    border: 1px solid #ddd; 
    padding: 5px; 
    background: #fff; 
    width: 100%; 
    /* Ensures items stretch evenly */
    display: flex; 
    flex-direction: column;
}

.plan-card img { 
    width: 100%; 
    height: 300px; /* Fixed height for uniformity */
    object-fit: cover; 
}
.plan-label { 
    background: var(--dark); 
    color: #fff; 
    padding: 10px; 
    text-align: center; 
    font-size: 13px; 
    text-transform: uppercase; 
    margin-top: auto; /* Pushes label to bottom */
}


.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.gallery-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 4px; transition: 0.3s; }
.gallery-grid img:hover { transform: scale(1.02); }

/* --- VIDEO WRAPPER (Responsive) --- */
.video-wrapper {
    position: relative; padding-bottom: 56.25%; /* 16:9 */ height: 0; overflow: hidden;
    border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); background: #000;
    border: 4px solid #fff;
}
.video-wrapper video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }

/* --- FOOTER (Matching Gradient) --- */
.footer-dark { 
    background: linear-gradient(to right, var(--primary), var(--secondary)); 
    color: #fff; padding: 60px 0 20px; font-size: 14px; 
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-logo img { max-height: 55px; width: auto; filter: brightness(0) invert(1); margin-bottom: 15px; }
.footer-col h4 { color: var(--gold); margin-bottom: 20px; font-size: 18px; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { text-decoration: underline; color: var(--gold); }
.copyright { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; text-align: center; font-size: 12px; color: #f1f1f1; }

/* --- MOBILE STICKY --- */
.mobile-sticky { 
    display: none; position: fixed; bottom: 0; left: 0; width: 100%; 
    z-index: 2000; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); 
}
.sticky-btn { flex: 1; padding: 15px; text-align: center; font-weight: bold; color: #fff; font-size: 14px; display: flex; justify-content: center; align-items: center; gap: 8px; }
.sticky-btn.call { background: var(--primary); }
.sticky-btn.whatsapp { background: #25D366; }

/* --- PREMIUM MODAL --- */
.modal { 
    display: none; position: fixed; z-index: 3000; left: 0; top: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.8); backdrop-filter: blur(4px); animation: fadeIn 0.3s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-content { 
    background: #fff; margin: 10vh auto; padding: 40px 30px; width: 90%; max-width: 400px; 
    position: relative; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.4); 
    border-top: 6px solid var(--primary);
}
.close-btn { position: absolute; right: 15px; top: 10px; font-size: 30px; cursor: pointer; color: #999; }
.modal-header h3 { font-size: 24px; margin-bottom: 5px; }
.modal-header p { font-size: 14px; color: #666; margin-bottom: 25px; }
.form-group { margin-bottom: 15px; text-align: left; }
.modal input { 
    width: 100%; padding: 14px; border: 2px solid #eee; border-radius: 6px; 
    font-size: 15px; background: #fdfdfd; 
}
.modal input:focus { border-color: var(--gold); outline: none; }
.submit-btn { width: 100%; padding: 15px; font-size: 16px; margin-top: 10px; border-radius: 6px; }
.honey { display: none; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    body { padding-bottom: 50px; } 
    .desktop-nav { display: none; }
    .desktop-only { display: none; }
    .hero-section { height: auto; padding-bottom: 20px; }
    .hero-slider { position: absolute; height: 100%; }
    .hero-box { 
        position: relative; top: 0; left: 0; width: 100%; margin: 250px auto 0;
        border-radius: 10px 10px 0 0; padding: 20px;
    }
    .section-title-center { font-size: 24px; }
    .pricing-container { flex-direction: column; align-items: center; }
    .pricing-card { width: 100%; max-width: 100%; }
    .pricing-card.popular { transform: none; margin: 20px 0; }
    .mobile-sticky { display: flex; }
}