:root {
    --navy: #002347;
    --gold: #c5a059;
    --gold-dark: #a68541;
    --light: #f9f9f9;
    --white: #ffffff;
    --text: #333;
}

/* Base Styles */
* { margin:0; padding:0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: var(--text); line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
.gold-text { color: var(--gold); }
.bg-light { background: var(--light); }
.bg-navy { background: var(--navy); }
.text-white { color: #fff; }

/* Fixed Sidebar Form */
.luxury-sidebar {
    position: fixed; right: 3%; top: 120px; width: 380px;
    background: var(--white); z-index: 1000; padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); border-radius: 8px;
    border-top: 5px solid var(--gold);
}
@media (max-width: 1200px) { .luxury-sidebar { display: none; } }

.form-header h3 { font-size: 1.6rem; color: var(--navy); text-align: center; }
.gold-accent { width: 40px; height: 2px; background: var(--gold); margin: 15px auto; }
.form-header p { font-size: 0.8rem; text-align: center; margin-bottom: 25px; color: #666; }

input { width: 100%; padding: 14px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 4px; background: #fdfdfd; }
.btn-gold-full { width: 100%; padding: 16px; background: var(--navy); color: #fff; border: none; font-weight: 700; cursor: pointer; transition: 0.3s; }
.btn-gold-full:hover { background: var(--gold); }
.consent-text { font-size: 0.7rem; margin-bottom: 15px; display: flex; gap: 8px; color: #888; }
.sidebar-support { text-align: center; margin-top: 20px; font-weight: 700; font-size: 1rem; }
.sidebar-support a { color: var(--navy); text-decoration: none; }

/* Navbar */
.navbar { position: fixed; top: 0; width: 100%; background: var(--white); padding: 15px 5%; z-index: 1001; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-sp { display: block; font-weight: 900; color: var(--navy); font-size: 1.2rem; }
.logo-sub { font-size: 0.9rem; letter-spacing: 3px; color: var(--gold); }
.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 600; font-size: 0.8rem; }

/* Hero Section */
.hero { 
    height: 100vh; background: linear-gradient(rgba(0, 35, 71, 0.307), rgba(0,0,0,0.7)), url('images/banner.jpg') no-repeat center center/cover;
    display: flex; align-items: center; padding: 0 8%; color: #fff;
}
.hero-content { max-width: 650px; }
.hero-tag { color: var(--gold); letter-spacing: 3px; font-size: 0.9rem; font-weight: 700; margin-bottom: 20px; }
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 25px; }
.hero-stats { display: flex; gap: 40px; margin: 30px 0; }
.stat-item { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.stat-item span { display: block; font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.btn-white { padding: 15px 40px; background: #fff; color: var(--navy); border: none; font-weight: 700; cursor: pointer; }

/* Common Section Styles */
.section { padding: 100px 5%; }
.section-container { max-width: 60%; } /* Keeping content left aligned */
@media (max-width: 1200px) { .section-container { max-width: 100%; } }
.section-title { font-size: 2.5rem; margin-bottom: 50px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.price-card { background: #fff; padding: 40px; border: 1px solid #eee; border-radius: 8px; transition: 0.3s; }
.price-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.price-val { font-size: 1.8rem; font-weight: 700; color: var(--navy); margin: 20px 0; }
.btn-outline-gold { width: 100%; padding: 12px; border: 1px solid var(--gold); background: transparent; color: var(--gold); font-weight: 700; cursor: pointer; }

/* Plans */
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.plan-img { position: relative; cursor: pointer; overflow: hidden; height: 300px; }
.plan-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.img-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,35,71,0.8); color: #fff; display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; font-weight: 700; }
.plan-img:hover .img-overlay { opacity: 1; }
.plan-img:hover img { transform: scale(1.1); }

/* Amenities */
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.amenity { text-align: center; }
.amenity img { width: 100%; height: 200px; object-fit: cover; border-radius: 4px; margin-bottom: 15px; }

/* Connectivity */
.connectivity-table { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.conn-col p { margin-bottom: 15px; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.conn-col i { color: var(--gold); margin-right: 10px; }

/* Footer */
.footer { background: #000; color: #777; padding: 60px 5%; text-align: left; }
.disclaimer-text { font-size: 0.9rem; max-width: 900px; margin: 20px auto; line-height: 1.8;}

/* Mobile Actions */
.mobile-cta { position: fixed; bottom: 0; width: 100%; display: flex; z-index: 1002; }
.m-call, .m-wa { flex: 1; text-align: center; padding: 18px; color: #fff; text-decoration: none; font-weight: 700; }
.m-call { background: var(--navy); }
.m-wa { background: #25D366; }

/* Popup */
.popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 2000; display: none; align-items: center; justify-content: center; }
.popup-card { background: #fff; padding: 50px; width: 90%; max-width: 500px; position: relative; border-radius: 8px; text-align: center; }
.close-btn { position: absolute; top: 15px; right: 20px; font-size: 2rem; cursor: pointer; }
.popup-checklist { display: flex; justify-content: center; gap: 20px; margin: 20px 0; font-size: 0.8rem; font-weight: 700; color: var(--gold); }

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }