/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 32px;
    font-weight: bold;
    color: #1e5a8e;
    margin: 0;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 11px;
    color: #666;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 0;
    background: #4a6fa5;
    border-radius: 50px;
    padding: 12px 24px;
}

.nav a {
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    transition: background 0.3s;
    font-weight: 500;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    width: 100%;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Booking Widget Section */
.booking-widget-section {
    position: relative;
    margin-top: -60px;
    z-index: 100;
    padding-bottom: 20px;
}

/* Booking Widget */
.booking-widget {
    background: #6b8e23;
    padding: 25px 30px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: flex-end;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.booking-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.booking-field label {
    color: white;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.booking-input {
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    background: white;
}

.booking-button {
    background: white;
    color: #6b8e23;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.booking-button:hover {
    opacity: 0.9;
}

/* Ratings Section */
.ratings {
    padding: 40px 0;
    background: #f9fafb;
}

.ratings-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.rating-overall {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-score {
    font-size: 48px;
    font-weight: bold;
    color: #333;
}

.rating-status {
    font-weight: 600;
    color: #333;
}

.rating-reviews {
    font-size: 14px;
    color: #666;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-item svg {
    color: #4a9fd8;
}

.rating-label {
    font-size: 14px;
    color: #666;
}

.rating-value {
    font-size: 20px;
    font-weight: bold;
    color: #4a9fd8;
}

/* Location Info */
.location-info {
    padding: 40px 0;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.location-header svg {
    color: #4a9fd8;
}

.location-name {
    font-size: 24px;
    font-weight: bold;
    color: #4a9fd8;
    margin: 0;
}

.location-region {
    color: #666;
    margin: 0;
}

.location-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.location-read-more {
    color: #333;
    font-weight: 600;
}

/* Offers Section */
.offers {
    padding: 60px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #1f2937;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.offer-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.offer-content {
    padding: 20px;
}

.offer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #1f2937;
}

.offer-dates {
    color: #6b8e23;
    font-weight: 600;
    margin-bottom: 12px;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.price-old {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 16px;
}

.price-new {
    font-size: 24px;
    font-weight: bold;
    color: #6b8e23;
}

.offer-note {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.offer-link {
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background: #f9fafb;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Services Section */
.services {
    padding: 60px 0;
}

.service-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-showcase img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1f2937;
}

.service-info p {
    color: #666;
    line-height: 1.8;
}

/* Surroundings Section */
.surroundings {
    padding: 60px 0;
    background: #f9fafb;
}

.surroundings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.surrounding-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.surrounding-number {
    width: 40px;
    height: 40px;
    background: #4a9fd8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.surrounding-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1f2937;
}

.surrounding-card p {
    color: #666;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 60px 0;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background: #4a6fa5;
    color: white;
}

.testimonials .section-title {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

.testimonial-author span {
    font-size: 14px;
    opacity: 0.8;
}

.testimonial-more {
    color: white;
    font-weight: 600;
    text-decoration: underline;
}

/* Booking Form Section */
.booking-form-section {
    padding: 60px 0;
    background: #f9fafb;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
    text-transform: lowercase;
}

.form-input {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #4a6fa5;
}

textarea.form-input {
    resize: vertical;
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label a {
    color: #4a6fa5;
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    background: #6b8e23;
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.form-submit:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #4a9fd8;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col p {
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .booking-widget {
        flex-direction: column;
    }
    
    .ratings-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .service-showcase {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 500px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .booking-widget-section {
        margin-top: -30px;
        padding: 0 12px 24px;
    }
    
    .booking-widget {
        width: 100%;
        padding: 18px 16px;
        gap: 12px;
        align-items: stretch;
        box-shadow: 0 6px 16px rgba(0,0,0,0.22);
    }
    
    .booking-button {
        width: 100%;
        border-radius: 10px;
        height: 48px;
    }
    
    .booking-field label {
        font-size: 13px;
    }
    
    .booking-input {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 760px) and (min-width: 481px) {
    .booking-widget-section {
        margin-top: -20px;
        padding: 0 16px 28px;
    }
    
    .booking-widget {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 14px;
        padding: 20px 18px;
        width: 100%;
        max-width: 720px;
    }
    
    .booking-field {
        width: 100%;
    }
    
    .booking-button {
        width: 100%;
        border-radius: 12px;
        height: 52px;
        grid-column: 1 / -1;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    margin: auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
    z-index: 10;
}

.modal-close:hover,
.modal-close:focus {
    background: #f0f0f0;
    color: #333;
}

.modal-title {
    padding: 30px 30px 20px;
    margin: 0;
    font-size: 24px;
    color: #1f2937;
    border-bottom: 2px solid #f0f0f0;
}

.modal-body {
    padding: 30px;
}

.modal-section {
    margin-bottom: 25px;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #4a6fa5;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-section h3 svg {
    width: 20px;
    height: 20px;
}

.modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.modal-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6b8e23;
    font-weight: bold;
}

.modal-list.extra-services li::before {
    content: "+";
    color: #4a9fd8;
}

.modal-info {
    background: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.modal-info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.modal-info-row:last-child {
    border-bottom: none;
}

.modal-info-label {
    font-weight: 600;
    color: #666;
}

.modal-info-value {
    color: #1f2937;
}

.modal-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.modal-amenity {
    background: #e5e7eb;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-title {
        padding: 20px 20px 15px;
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-close {
        right: 15px;
        top: 15px;
    }
}

/* No Results Message */
.no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-results-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-results-content svg {
    color: #999;
    margin-bottom: 20px;
}

.no-results-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 12px;
}

.no-results-content p {
    color: #666;
    line-height: 1.6;
}

.no-results-content a {
    color: #4a6fa5;
    text-decoration: underline;
    font-weight: 600;
}

.no-results-content a:hover {
    color: #6b8e23;
}

/* Offer card hidden state */
.offer-card[style*="display: none"] {
    display: none !important;
}
