:root {
    --primary: #1a365d; /* Navy Blue */
    --accent: #3182ce;
    --text: #2d3748;
    --light-bg: #f7fafc;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: white;
    margin: 0;
    line-height: 1.6;
}

/* Navbar Styling */
.navbar {
    background: white;
    border-bottom: 1px solid #edf2f7;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.contact-wrapper {
    position: relative;
}

.contact-btn {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    color: inherit;
}



.contact-card {
    position: absolute;
    right: 0;
    top: 35px;
    background: white;
    padding: 15px 18px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    min-width: 200px;
    text-align: left;
    z-index: 100;
}

.contact-card p {
    margin: 6px 0 2px;
    font-size: 12px;
    color: #777;
}

.contact-card a {
    display: block;
    text-decoration: none;
    color: var(--primary);
    margin-bottom: 8px;
}

.hidden {
    display: none;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}


.contact-btn {
    background: none;
    border: none;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text);
}

.contact-btn:hover {
    color: var(--accent);
}

.hidden {
    display: none !important;
}

.logo span { font-weight: 300; color: #718096; }

nav ul { list-style: none; display: flex; gap: 2rem; align-items: center; margin: 0; }
nav a { text-decoration: none; color: var(--text); font-size: 0.9rem; font-weight: 500; }
nav a:hover { color: var(--accent); }

/* --- Tooltip Logic --- */
nav a {
    position: relative; /* Necessary to anchor the tooltip */
}

/* Create the tooltip box */
nav a::after {
    content: attr(data-hover); /* Pulls text from the data-hover attribute */
    position: absolute;
    bottom: 120%; /* Sits above the link */
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary); /* Uses your navy blue variable */
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    pointer-events: none; /* Prevents the tooltip from blocking clicks */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Show the tooltip on hover */
nav a:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: 140%; /* Slight "float up" animation */
}




.nav-btn {
    background: var(--primary);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
}

/* Hero Section */
.hero {
    background: var(--light-bg);
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content { max-width: 800px; margin: 0 auto; }

h1 { font-size: 2.8rem; color: var(--primary); margin-bottom: 1.5rem; }
.description {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 720px;
}

.description strong {
  color: #2d3748;
  font-weight: 600;
}

.features { display: flex; justify-content: center; gap: 2rem; font-weight: 600; color: var(--primary); }

/* Form Styling */
.booking-section { padding: 4rem 2rem; }

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.5rem; }

label { display: block; margin-bottom: 0.5rem; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
}

button {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.1s;
}

button:hover { background: #2c5282; }
button:active { transform: scale(0.98); }

/* Helpers */
.hidden { display: none; }
.success { color: #2f855a; background: #f0fff4; padding: 1rem; border-radius: 6px; margin-top: 1rem; text-align: center; }
.error { color: #c53030; background: #fff5f5; padding: 1rem; border-radius: 6px; margin-top: 1rem; text-align: center; }

/* --- Dropdown Styling --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    right: 0; /* Aligns to the right edge of the Contact text */
    background-color: white;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.5rem;
}

/* Style the text inside the dropdown */
.dropdown-content p {
    margin: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text);
}

.dropdown-content a {
    color: var(--accent);
    font-weight: 600;
}

/* Show the dropdown when the parent is clicked (using JS class) */
.dropdown.active .dropdown-content {
    display: block;
}

nav a {
    position: relative;
}

nav a::after {
    content: attr(data-hover);
    position: absolute;
    left: 0;
    bottom: -18px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

nav a:hover::after {
    opacity: 1;
}


/* Add this at the end of style.css */
.hidden {
    display: none !important;
}

/* Accessibility & Checkbox Styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Ensure links in the form are visible for colorblind users */
.checkbox-group a {
    color: var(--accent);
    text-decoration: underline;
}

/* Focused state for keyboard navigation (Accessibility Requirement) */
input:focus, button:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ===============================
   MODAL STYLING
================================ */
.modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal h2 {
    margin-top: 0;
    color: var(--primary);
}

.modal div {
    margin-top: 1rem;
    line-height: 1.6;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #1a365d;
    color: white;
    padding: 1rem;
    z-index: 3000;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-buttons button {
    margin-left: 10px;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.cookie-buttons .secondary {
    background: #718096;
    color: white;
}

.hidden {
    display: none !important;
}

.success { color: green; font-weight: bold; }
.error { color: red; font-weight: bold; }