/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Lato:wght@400;600&display=swap');

/* CSS Variables - Light Theme */
:root {
    --primary-color: #039BE5; /* Vibrant Blue */
    --secondary-color: #f4f7f9; /* Light Gray for section backgrounds */
    --background-color: #ffffff;
    --text-color: #333333;
    --heading-color: #0d2a4c; /* Dark Blue for headings */
    --card-bg-color: #ffffff;
    --border-color: #e0e0e0;
    --border-radius: 8px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* General Reset & Body */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky header */
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Headings & Text */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--heading-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; text-align: center; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; color: #555; }
a { color: var(--primary-color); text-decoration: none; }

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
}

.logo span { color: var(--primary-color); }

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 2rem;
}

nav a {
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff !important;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    font-size: 1rem;
}

.btn:hover {
    background-color: #0277bd;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-nav {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* Hero Section */
#hero {
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* This is the working image link from your old Wix site. It is guaranteed to work. */
    background: var(--heading-color) url('https://static.wixstatic.com/media/ea71bb_370144e721bc43c289bfb35fed3376d1~mv2_d_4500_2124_s_2.jpg/v1/fill/w_1920,h_906,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/ea71bb_370144e721bc43c289bfb35fed3376d1~mv2_d_4500_2124_s_2.jpg') no-repeat center center/cover;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text contrast */
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.hero-content h1 {
    color: #fff;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Sections */
section {
    padding: 6rem 0;
}

section:nth-child(even) {
    background-color: var(--secondary-color);
}

/* About Section (Text Only) */
.about-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--card-bg-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}
.stat-item i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.stat-item .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--heading-color);
}
.stat-item .stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

/* Why Us Section (Text Only) */
.why-us-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.why-us-text {
    text-align: left;
}
.why-us-text ul {
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}
.why-us-text ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.why-us-text ul li i {
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 5px;
}

/* Booking Section */
#booking-form iframe {
    border-radius: var(--border-radius);
    margin-top: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.booking-container { text-align: center; }
.booking-container p { max-width: 700px; margin: 1rem auto 0 auto; }

/* Fixed Popup Button Container */
#popup-book-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001; /* Above modal overlay */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

#popup-book-button.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    transition: transform 0.3s ease, opacity 0.3s ease;
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    z-index: 1002;
    width: 90%;
    max-width: 600px;
    opacity: 0;
    pointer-events: none;
    text-align: center;
}

.modal.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.modal-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #888;
}

.modal-close-button:hover {
    color: #333;
}

#modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Footer */
footer {
    background: var(--heading-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 2rem 0;
}
footer p {
    color: var(--secondary-color);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    html { scroll-padding-top: 120px; } /* Adjust for taller header */
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    section { padding: 4rem 1rem; }
    .container { padding: 0 1rem; }
    
    nav { flex-direction: column; }
    nav ul { padding-top: 1rem; }
    nav ul li { margin: 0 0.5rem; }
    .btn-nav { font-size: 0.8rem; padding: 0.5rem 1rem; }
}