:root {
    --gold: #c8a951;
    --gold-light: #e8d48b;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --cream: #faf8f0;
    --green: #2d6a4f;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; width: 100%; }
body { font-family: 'Inter', sans-serif; color: #333; }
h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; }

/* Navbar */
.navbar-pyramid {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}
.navbar-pyramid.scrolled {
    background: rgba(15, 15, 26, 1);
    box-shadow: 0 2px 30px rgba(200,169,81,0.15);
}
.navbar-pyramid .navbar-brand { padding: 0; }
.navbar-logo {
    height: 60px;
    width: auto;
    border-radius: 8px;
    transition: all 0.3s;
}
.navbar-pyramid.scrolled .navbar-logo { height: 65px; }
.navbar-pyramid .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px !important;
    transition: color 0.3s;
}
.navbar-pyramid .nav-link:hover,
.navbar-pyramid .nav-link.active { color: var(--gold) !important; }
.nav-enquiry-btn {
    padding: 10px 30px !important;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-transform: uppercase;
}
.nav-enquiry-btn:hover {
    color: var(--dark) !important;
}

/* Hero */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(15,15,26,0.65), rgba(26,26,46,0.55)),
        url('/assets/images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%; right: 0;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,169,81,0.15), transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}
.hero-badge {
    display: inline-block;
    background: rgba(109, 90, 42, 0.685);
    border: 1px solid var(--gold);
    color: rgb(255, 206, 114);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem; font-weight: 800; color: #fff;
    line-height: 1.1; margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 3px 10px rgba(0,0,0,0.5);
}
.hero-title .gold { color: var(--gold); }
.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; color: rgba(255,255,255,0.85);
    max-width: 600px; line-height: 1.6; margin-bottom: 35px;
    animation: fadeInUp 1.2s ease; font-style: italic;
    text-shadow: 1px 2px 8px rgba(0,0,0,0.4);
}
.hero-btns { animation: fadeInUp 1.4s ease; }
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark); padding: 14px 40px; border-radius: 50px;
    font-weight: 600; font-size: 0.95rem; letter-spacing: 1px;
    text-transform: uppercase; border: none; transition: all 0.3s;
    text-decoration: none; display: inline-block;
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200,169,81,0.4);
    color: var(--dark);
}
.btn-outline-gold {
    border: 2px solid var(--gold); color: var(--gold);
    padding: 12px 40px; border-radius: 50px; font-weight: 600;
    font-size: 0.95rem; letter-spacing: 1px; text-transform: uppercase;
    background: transparent; transition: all 0.3s; text-decoration: none;
    display: inline-block;
}
.btn-outline-gold:hover {
    background: var(--gold); color: var(--dark);
    transform: translateY(-3px);
}
.hero-stats { margin-top: 60px; animation: fadeInUp 1.6s ease; }
.stat-item {
    text-align: center; padding: 0 25px;
    border-right: 1px solid rgba(200,169,81,0.3);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem; font-weight: 700; color: var(--gold);
}
.stat-label {
    color: rgba(255,255,255,0.6); font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 1px;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section-padding { padding: 100px 0; }
.section-title { font-size: 2.8rem; font-weight: 700; color: var(--dark); margin-bottom: 15px; }
.section-title .gold { color: var(--gold); }
.section-subtitle { color: #777; font-size: 1.05rem; max-width: 600px; margin: 0 auto 60px; }
.section-line {
    width: 80px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 15px auto 20px;
}

/* About */
.about-section { background: var(--cream); }
.about-img-wrapper {
    position: relative; border-radius: 20px; overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.about-img-wrapper img { width: 100%; height: 500px; object-fit: cover; }
.about-badge {
    position: absolute; bottom: 20px; right: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark); padding: 15px 25px; border-radius: 15px;
    text-align: center; font-weight: 700;
}
.about-badge .number { font-size: 2rem; font-family: 'Montserrat', sans-serif; line-height: 1; }
.about-badge .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.about-text { font-size: 1.05rem; color: #555; line-height: 1.9; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; }
.about-feature { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--dark); }
.about-feature i { color: var(--gold); font-size: 1.1rem; }

/* Banner */
.banner-section { background: #fff; }
.banner-img { overflow: hidden; }
.banner-img img { width: 100%; height: auto; display: block; }

/* Configurations */
.config-section { background: var(--dark); position: relative; overflow: hidden; }
.config-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(200,169,81,0.05)" stroke-width="0.5"/></pattern></defs><rect fill="url(%23grid)" width="100" height="100"/></svg>');
}
.config-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,169,81,0.2);
    border-radius: 20px; padding: 40px 30px;
    text-align: center; transition: all 0.4s ease;
    position: relative; overflow: hidden;
}
.config-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0); transition: transform 0.4s;
}
.config-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(200,169,81,0.08);
}
.config-card:hover::before { transform: scaleX(1); }
.config-icon {
    width: 70px; height: 70px;
    background: rgba(200,169,81,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 1.5rem; color: var(--gold);
}
.config-card h4 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.config-card .area { color: var(--gold); font-size: 1rem; font-weight: 600; margin-bottom: 15px; }
.config-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* Amenities */
.amenities-section { background: #fff; }
.amenity-card {
    background: var(--cream); border-radius: 16px; padding: 35px 25px;
    text-align: center; transition: all 0.4s ease;
    border: 1px solid transparent; height: 100%;
}
.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(200,169,81,0.15);
    border-color: var(--gold);
}
.amenity-icon {
    width: 65px; height: 65px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 18px;
    font-size: 1.4rem; color: var(--dark);
}
.amenity-card h5 { font-size: 1.05rem; color: var(--dark); margin-bottom: 8px; }
.amenity-card p { font-size: 0.85rem; color: #777; margin: 0; }

/* Eco */
.eco-section {
    background: var(--cream);
    color: var(--dark); position: relative;
}
.eco-section .section-title { color: var(--dark); }
.eco-feature { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.eco-feature-icon {
    width: 55px; height: 55px; min-width: 55px;
    background: rgba(200,169,81,0.15); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.3rem;
}
.eco-feature h5 { font-size: 1.1rem; margin-bottom: 5px; color: var(--dark); }
.eco-feature p { color: #666; font-size: 0.9rem; }

/* Location */
.location-section { background: #fff; }
.location-card {
    background: var(--cream); border-radius: 16px; padding: 25px 20px;
    text-align: center; transition: all 0.4s ease;
    height: 100%; border: 1px solid transparent;
}
.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(200,169,81,0.15);
    border-color: var(--gold);
}
.location-card i { font-size: 2rem; color: var(--gold); margin-bottom: 15px; }
.location-card h5 { font-size: 1rem; color: var(--dark); margin-bottom: 5px; }
.location-card p { font-size: 0.85rem; color: #777; margin: 0; }

/* Contact */
.contact-section { background: var(--dark); position: relative; }
.contact-section .section-title { color: #fff; }
.contact-form-wrapper {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,169,81,0.2);
    border-radius: 25px; padding: 50px 40px;
}
.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,169,81,0.3);
    border-radius: 12px; padding: 14px 20px;
    color: #fff; font-size: 0.95rem; transition: all 0.3s;
}
.contact-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,169,81,0.15);
    background: rgba(255,255,255,0.08); color: #fff;
}
.contact-form .form-select { color: rgba(255,255,255,0.7); }
.contact-form .form-select option { background: var(--dark); color: #fff; }
.contact-info-card {
    background: #fff;
    border-radius: 25px; padding: 50px 40px;
    color: var(--dark); height: 100%;
}
.contact-info-card h3 { font-size: 1.8rem; margin-bottom: 30px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.contact-info-item i { font-size: 1.2rem; margin-top: 4px; width: 20px; }
.contact-info-item h6 {
    font-family: 'Inter', sans-serif; font-weight: 600;
    margin-bottom: 3px; font-size: 0.9rem;
}
.contact-info-item p { margin: 0; font-size: 0.9rem; opacity: 0.85; }

/* RERA */
.rera-bar {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 20px 0; text-align: center;
}
.rera-bar p {
    margin: 0; color: var(--dark); font-weight: 600;
    font-size: 0.95rem; letter-spacing: 1px;
}

/* Footer */
.footer { background: var(--darker); padding: 60px 0 30px; }
.footer-brand { margin-bottom: 5px; }
.footer-logo {
    height: 110px;
    width: auto;
    border-radius: 8px;
}
.footer-text { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 15px; }
.footer h5 { color: var(--gold); font-size: 1.1rem; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6); text-decoration: none;
    font-size: 0.9rem; transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px; margin-top: 40px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin: 0; }
.social-links a {
    display: inline-flex; width: 40px; height: 40px; border-radius: 50%;
    background: rgba(200,169,81,0.1); color: var(--gold);
    align-items: center; justify-content: center; margin-left: 10px;
    transition: all 0.3s; text-decoration: none;
}
.social-links a:hover {
    background: var(--gold); color: var(--dark); transform: translateY(-3px);
}

/* Enquiry Modal */
.modal-enquiry .modal-content {
    background: var(--dark);
    border: 1px solid rgba(200,169,81,0.3);
    border-radius: 25px;
    overflow: hidden;
}
.modal-enquiry .modal-header {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    padding: 25px 30px;
}
.modal-enquiry .modal-header .modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}
.modal-enquiry .modal-header .btn-close {
    filter: none;
    opacity: 0.7;
}
.modal-enquiry .modal-body {
    padding: 35px 30px;
}
.modal-enquiry .form-control,
.modal-enquiry .form-select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,169,81,0.3);
    border-radius: 12px;
    padding: 14px 20px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.modal-enquiry .form-control::placeholder { color: rgba(255,255,255,0.4); }
.modal-enquiry .form-control:focus,
.modal-enquiry .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,169,81,0.15);
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.modal-enquiry .form-select { color: rgba(255,255,255,0.7); }
.modal-enquiry .form-select option { background: var(--dark); color: #fff; }
.modal-backdrop.show { backdrop-filter: blur(5px); }

/* Scroll top */
.scroll-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark); border: none; border-radius: 50%;
    font-size: 1.2rem; cursor: pointer; opacity: 0;
    visibility: hidden; transition: all 0.3s; z-index: 999;
    box-shadow: 0 5px 15px rgba(200,169,81,0.3);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-5px); }

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed; bottom: 30px; left: 30px; z-index: 999;
    width: 55px; height: 55px; border-radius: 50%;
    background: #25d366; color: #fff; border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; text-decoration: none;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    transition: all 0.3s;
    animation: whatsappPulse 2s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); color: #fff; box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 5px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.15); }
}

/* Toaster */
.toaster {
    position: fixed; top: 30px; right: 30px; z-index: 99999;
    min-width: 350px; padding: 20px 25px;
    border-radius: 14px; color: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    display: flex; align-items: center; gap: 15px;
    transform: translateX(120%); transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.toaster.show { transform: translateX(0); }
.toaster-success { background: linear-gradient(135deg, #2d6a4f, #1b4332); }
.toaster-error { background: linear-gradient(135deg, #c0392b, #96281b); }
.toaster-icon {
    width: 45px; height: 45px; min-width: 45px;
    border-radius: 50%; background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.toaster-body h6 { margin: 0 0 3px; font-family: 'Inter', sans-serif; font-size: 0.95rem; }
.toaster-body p { margin: 0; font-size: 0.82rem; opacity: 0.85; }
.toaster-close {
    position: absolute; top: 10px; right: 12px;
    background: none; border: none; color: rgba(255,255,255,0.6);
    font-size: 1rem; cursor: pointer;
}
.toaster-progress {
    position: absolute; bottom: 0; left: 0; height: 4px;
    background: rgba(255,255,255,0.4); border-radius: 0 0 14px 14px;
    animation: toastProgress 4s linear forwards;
}
@keyframes toastProgress {
    from { width: 100%; }
    to { width: 0; }
}

/* Button Loader */
.btn-loader {
    display: inline-flex; align-items: center; gap: 10px;
    pointer-events: none; opacity: 0.85;
}
.spinner {
    width: 20px; height: 20px;
    border: 3px solid rgba(26,26,46,0.2);
    border-top-color: var(--dark);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll animations */
.fade-up { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Responsive - Tablet */
@media (max-width: 991px) {
    .hero-title { font-size: 3.2rem; }
    .section-title { font-size: 2.2rem; }
    .navbar-logo { height: 75px; }
    .navbar-pyramid .navbar-collapse {
        background: var(--darker);
        border-radius: 15px;
        padding: 20px;
        margin-top: 15px;
        border: 1px solid rgba(200,169,81,0.15);
    }
    .navbar-pyramid .nav-link { padding: 10px 15px !important; }
    .nav-cta { text-align: center; margin-top: 10px; }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .hero-section { min-height: 100vh; padding: 120px 0 60px; }
    .hero-title { font-size: 2.4rem; line-height: 1.15; }
    .hero-badge { font-size: 0.7rem; padding: 6px 16px; letter-spacing: 2px; }
    .hero-subtitle { font-size: 1.2rem; line-height: 1.6; margin-bottom: 25px; }
    .btn-gold, .btn-outline-gold {
        padding: 12px 30px; font-size: 0.85rem;
        width: 100%; text-align: center;
    }
    .hero-btns { flex-direction: column; }

    .section-padding { padding: 60px 0; }
    .section-title { font-size: 1.6rem; }
    .section-subtitle { font-size: 0.9rem; margin-bottom: 40px; }
    .section-line { margin: 10px auto 15px; }

    .about-img-wrapper img { height: 300px; }
    .about-badge { padding: 10px 18px; }
    .about-badge .number { font-size: 1.5rem; }
    .about-text { font-size: 0.95rem; }
    .about-features { grid-template-columns: 1fr; gap: 10px; }

    .config-card { padding: 30px 20px; }
    .config-icon { width: 55px; height: 55px; font-size: 1.2rem; }
    .config-card h4 { font-size: 1.1rem; }

    .amenity-card { padding: 25px 15px; }
    .amenity-icon { width: 50px; height: 50px; font-size: 1.1rem; }
    .amenity-card h5 { font-size: 0.9rem; }
    .amenity-card p { font-size: 0.8rem; }

    .eco-feature { gap: 15px; }
    .eco-feature-icon { width: 45px; height: 45px; min-width: 45px; font-size: 1.1rem; }
    .eco-feature h5 { font-size: 1rem; }
    .eco-section img { height: 300px !important; }

    .location-card { padding: 20px 15px; }
    .location-card i { font-size: 1.5rem; margin-bottom: 10px; }
    .location-card h5 { font-size: 0.9rem; }

    .contact-form-wrapper { padding: 25px 18px; border-radius: 18px; }
    .contact-info-card { padding: 25px 18px; margin-top: 20px; border-radius: 18px; }
    .contact-info-card h3 { font-size: 1.4rem; margin-bottom: 20px; }
    .contact-form .form-control,
    .contact-form .form-select { padding: 12px 16px; font-size: 0.9rem; }

    .rera-bar p { font-size: 0.8rem; letter-spacing: 0.5px; }

    .footer { padding: 40px 0 20px; }
    .footer-logo { height: 60px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
    .social-links { justify-content: center; }
    .social-links a { margin: 0 5px; }

    .modal-enquiry .modal-body { padding: 25px 18px; }
    .modal-enquiry .modal-header { padding: 18px 20px; }
    .modal-enquiry .modal-title { font-size: 0.85rem !important; }

    .navbar-logo { height: 65px; }
    .navbar-pyramid.scrolled .navbar-logo { height: 55px; }
    .scroll-top { width: 42px; height: 42px; font-size: 1rem; bottom: 20px; right: 20px; }
}

/* Responsive - Small Mobile */
@media (max-width: 400px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.4rem; }
    .amenity-card { padding: 20px 10px; }
    .config-card { padding: 25px 15px; }
}
