:root {
    --primary-blue: #1b365d;
    --accent-yellow: #fcd116;
    --light-blue: #4b9cd3;
    --bg-light: #f8f9fa;
    --text-dark: #333333;
    --text-light: #ffffff;
    --font-main: 'Segoe UI', Roboto, "Helvetica Neue", sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* Header & Nav */
.site-header {
    background-color: #ffffff;
    color: var(--primary-blue);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 4px solid var(--accent-yellow);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-logo {
    max-height: 128px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.5) brightness(1.2);
}

.main-nav {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--accent-yellow);
}

/* Hero Section */
.hero {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 8rem 5%;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-yellow);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Background Image Slider (Pure CSS) */
.hero {
    position: relative;
}
.hero-slider {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}
.hero-slider .slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 15s infinite;
}
.hero-slider .slide:nth-child(1) { animation-delay: 0s; }
.hero-slider .slide:nth-child(2) { animation-delay: 5s; }
.hero-slider .slide:nth-child(3) { animation-delay: 10s; }

@keyframes heroFade {
    0% { opacity: 1; }
    28% { opacity: 1; }
    33% { opacity: 0; }
    95% { opacity: 0; }
    100% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Services Grid */
.services-section {
    padding: 4rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card ul {
    list-style: none;
}

.card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.card ul li::before {
    content: "•";
    color: var(--accent-yellow);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Footer */
.site-footer {
    background-color: #111;
    color: #ccc;
    padding: 3rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-col h4 {
    color: var(--accent-yellow);
    margin-bottom: 1.2rem;
}

/* Quick Amenities Banner */
.amenities-banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    background-color: var(--primary-blue);
    padding: 2rem 5%;
    color: white;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border-left: 2px solid var(--accent-yellow);
    padding-left: 1.5rem;
}

.amenity-item:first-child {
    border-left: none;
}

.amenity-item strong {
    font-size: 1.2rem;
    color: var(--accent-yellow);
    margin-bottom: 0.2rem;
}

.amenity-item span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 5%;
    background-color: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--light-blue);
}

.faq-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 5%;
    background-color: var(--accent-yellow);
    text-align: center;
    color: var(--primary-blue);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #112240;
    transform: translateY(-3px);
}

/* Contact & Location Section */
.contact-location-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container, .map-container {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form-container h3, .map-container h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--accent-yellow);
    padding-bottom: 0.5rem;
    display: inline-block;
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 5px rgba(27, 54, 93, 0.2);
}

.btn-submit {
    background-color: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: #112240;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.footer-bottom {
    background: #000;
    color: #888;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

/* Inner Page Specific Styles */
.text-section {
    padding: 2rem 5%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.text-section .section-heading {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.text-section .section-body {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 5% 5rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--accent-yellow);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.global-footer {
    background: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: auto;
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 1rem;
    }
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    .main-nav a {
        padding: 0.5rem;
        font-size: 0.95rem;
    }
    
    /* Fix the yellow borders on the amenities banner when stacked vertically */
    .amenities-banner {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 5%;
    }
    .amenity-item {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem 0;
        width: 100%;
    }
    .amenity-item:last-child {
        border-bottom: none;
    }
    
    /* Ensure hero text doesn't overflow */
    .hero h2 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}
