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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
    min-height: 100vh;
    padding: 40px 20px;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Navigation */
nav {
    background: white;
    padding: 20px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

nav ul li:first-child {
    margin-right: auto;
    font-weight: 700;
    font-size: 18px;
    color: #2c3e50;
}

nav ul li a {
    color: #7f8c8d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #87ceeb;
}

nav ul li a.active {
    color: #87ceeb;
    font-weight: 600;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    margin-top: 40px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 30px;
}

.subtitle {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Page Headers */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.page-header .subtitle {
    font-size: 20px;
}

/* Content Sections */
.page-content {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.page-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content ul li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

.page-content a {
    color: #87ceeb;
    text-decoration: none;
    font-weight: 600;
}

.page-content a:hover {
    color: #6bb6d6;
    text-decoration: underline;
}

/* Search Section */
.search-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.search-box {
    display: flex;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

#locationInput {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

#locationInput:focus {
    border-color: #87ceeb;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.1);
}

#searchBtn {
    padding: 16px 40px;
    background: #87ceeb;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#searchBtn:hover {
    background: #6bb6d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

#searchBtn:active {
    transform: translateY(0);
}

/* Results */
.results-section {
    display: none;
}

.results-section.active {
    display: block;
}

#resultsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.result-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.card-icon {
    font-size: 32px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.card-category {
    display: inline-block;
    padding: 6px 14px;
    background: #e8f4f8;
    color: #4a90a4;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.card-highlights {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.card-highlights h4 {
    font-size: 14px;
    color: #87ceeb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-weight: 700;
}

.card-highlights ul {
    list-style: none;
    padding: 0;
}

.card-highlights li {
    padding: 6px 0;
    color: #666;
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.card-highlights li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #87ceeb;
    font-weight: bold;
    font-size: 18px;
}

.location-header {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    text-align: center;
}

.location-name {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.location-tagline {
    font-size: 16px;
    color: #7f8c8d;
}

/* Contact Form */
.contact-intro {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-intro p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
}

.privacy-note {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #87ceeb;
}

.contact-form-section {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.required {
    color: #e74c3c;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #87ceeb;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.spam-notice {
    color: #7f8c8d;
    font-size: 14px;
}

.submit-btn {
    width: 100%;
    padding: 16px 40px;
    background: #87ceeb;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #6bb6d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.contact-alternative {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact-alternative h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-alternative p {
    font-size: 16px;
    color: #555;
}

/* Privacy Policy Specific */
.privacy-content {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
}

.privacy-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-content ul li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

.privacy-content a {
    color: #87ceeb;
    text-decoration: none;
    font-weight: 600;
}

.privacy-content a:hover {
    color: #6bb6d6;
    text-decoration: underline;
}

/* Newsletter */
.newsletter-section {
    margin: 60px auto;
    max-width: 1100px;
}

.newsletter-box {
    background: linear-gradient(135deg, #87ceeb 0%, #6bb6d6 100%);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 30px rgba(135, 206, 235, 0.3);
}

.newsletter-box h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.newsletter-box p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    padding: 16px 35px;
    background: white;
    color: #87ceeb;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.affiliate-badge {
    display: inline-block;
    background: #ffd700;
    color: #333;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 8px;
    text-transform: uppercase;
}

.booking-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #87ceeb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.booking-link:hover {
    background: #6bb6d6;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    margin-top: 80px;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #87ceeb;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #87ceeb;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #bdc3c7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }

    nav {
        padding: 15px 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    nav ul li:first-child {
        margin-right: 0;
        margin-bottom: 10px;
    }

    h1 {
        font-size: 36px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 26px;
    }

    .page-content {
        padding: 30px 25px;
    }

    .privacy-content {
        padding: 30px 25px;
    }

    .contact-intro {
        padding: 30px 25px;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .search-box {
        flex-direction: column;
    }

    #resultsGrid {
        grid-template-columns: 1fr;
    }

    .location-name {
        font-size: 28px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-box {
        padding: 40px 25px;
    }
    
    .newsletter-box h2 {
        font-size: 24px;
    }
}
