:root {
    --navy: #0a192f;
    --gold: #c5a059;
    --orange: #ff6600;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text-main: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text-main); line-height: 1.7; background: var(--white); }
.container { max-width: 1200px; margin: auto; padding: 0 25px; }
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--navy); }

/* Navigation */
nav { background: rgba(255, 255, 255, 0.98); border-bottom: 1px solid #eee; padding: 20px 0; position: sticky; top: 0; z-index: 1000; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 800; color: var(--navy); text-decoration: none; letter-spacing: -0.5px; }
.logo span { color: var(--orange); }
.nav-links a { text-decoration: none; color: var(--navy); margin-left: 30px; font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover { color: var(--gold); }

/* Headers (Sub-pages) */
.page-header { padding: 120px 0 80px; background: var(--navy); color: var(--white); text-align: center; }
.page-header h1 { color: var(--white); font-size: 3.5rem; margin-bottom: 20px; }
.page-header p { font-size: 1.2rem; max-width: 700px; margin: auto; opacity: 0.9; }

/* Content Sections */
.section { padding: 90px 0; }
.light-bg { background: var(--light-bg); }
.section-title { font-size: 2.8rem; text-align: center; margin-bottom: 50px; }

/* Grids & Cards */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 40px; }
.card { background: var(--white); border-radius: 8px; border-top: 4px solid var(--gold); padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.package-img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; margin-bottom: 20px; }

/* Image Protection (Deterrent) */
img { -webkit-user-drag: none; user-select: none; pointer-events: none; }

/* Buttons */
.btn-primary { background: var(--orange); color: var(--white); padding: 15px 35px; border-radius: 5px; text-decoration: none; font-weight: bold; display: inline-block; border: none; cursor: pointer; }
.btn-primary:hover { background: #e65c00; }

/* Footer */
footer { background: #050c17; color: var(--white); padding: 50px 0; text-align: center; font-size: 0.9rem; opacity: 0.8; }

/* --- IMAGE PROTECTION DETERRENTS --- */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
