:root{
    --bg:#eef5fd;
    --primary:#052b7d;
    --accent:#c4def8;
    --white:#ffffff;
    --text:#1d2740;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:var(--bg);
    color:var(--text);
    font-family:'Montserrat',sans-serif;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* NAVIGATION HEADER */
nav{
    background:white;
    position:sticky;
    top:0;
    z-index:100;
    border-bottom:1px solid rgba(5,43,125,.08);
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
    position: relative;
}

.logo{ display:flex; flex-direction:column; }
.logo img{ width:80px; height:auto; display:block; }
.logo span{ letter-spacing:4px; font-size:11px; color:#052b7d; }
.logo h2{ color:var(--primary); font-family:'Cormorant Garamond',serif; font-size:42px; }

.menu{ display:flex; gap:40px; }
.menu a{ text-decoration:none; color:var(--primary); font-weight:600; text-transform:uppercase; font-size:13px; }

.btn{
    background:var(--primary);
    color:white;
    text-decoration:none;
    padding:14px 28px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
    border: none;
    cursor: pointer;
}
.btn:hover{ transform:translateY(-2px); }

.menu-toggle { display: none; }
.hamburger { display: none; font-size: 24px; cursor: pointer; color: var(--primary); order: 2; align-items: center; gap: 8px; font-weight: 600; }
.hamburger span { font-size: 13px; font-family: 'Montserrat', sans-serif; letter-spacing: 1px; }

@media(max-width:992px){
    .hamburger { display: flex; }
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 30px 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        gap: 25px;
        text-align: center;
        border-top: 1px solid rgba(5,43,125,.05);
    }
    .menu-toggle:checked ~ .menu { display: flex; }
    .nav-btn { padding: 10px 18px; font-size: 13px; }
}

/* CONTACT PAGE TARGET LAYOUT RULES */
.contact-section {
    padding: 60px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(5,43,125,0.02);
    border: 1px solid rgba(5, 43, 125, 0.03);
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, select, textarea {
    padding: 16px;
    border: 1px solid #d6e5fb;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    background: #fbfdff;
    transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
}

textarea {
    min-height: 160px;
    resize: vertical;
}

/* STATS DETAILS PANEL RULES */
.stats-list {
    list-style: none;
    margin-top: 20px;
}

.stats-list li {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(5, 43, 125, 0.06);
    font-size: 15px;
}

.stats-list li span:first-child {
    font-weight: 600;
    color: #52627f;
}

.stats-list li span:last-child {
    font-weight: 700;
    color: var(--primary);
}

.contact-meta-info {
    margin-top: 30px;
    font-size: 14px;
    color: #52627f;
    line-height: 1.6;
}

/* GLOBAL BRAND FOOTER */
footer{ background:white; margin-top:80px; border-top:1px solid rgba(5,43,125,.08); }
.footer-grid{ display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; padding:60px 0; }
.footer-title{ color:var(--primary); margin-bottom:15px; font-weight:600; }
footer ul{ list-style:none; }
footer li{ margin-bottom:10px; }
footer a{ text-decoration:none; color:#4c5d7a; }
.copyright{ text-align:center; padding:20px; border-top:1px solid rgba(5,43,125,.08); }

/* =========================
   CUSTOM POPUP MODAL
========================= */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 39, 64, 0.4); /* Uses your --text color with transparency */
    backdrop-filter: blur(4px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(5, 43, 125, 0.15);
    border: 1px solid rgba(5, 43, 125, 0.05);
    animation: modalFadeIn 0.3s ease forwards;
}

.modal-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.modal-card p {
    color: #52627f;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 28px;
}

.modal-btn {
    width: 100%;
    padding: 14px;
}


/* RESPONSIVE LAYOUT BREAKPOINTS */
@media(max-width: 992px) {
    .booking-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr; }
}
