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

:root {
    --primary-color: #014B66;
    --secondary-color: #08A2B5;
    --accent-color: #0891A5;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --background: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #dee2e6;
    --shadow: rgba(1, 75, 102, 0.1);
    --shadow-hover: rgba(1, 75, 102, 0.2);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
    gap: 5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    position: relative;
    flex-shrink: 0;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
    position: relative;
    z-index: 10;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand h1 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.nav-brand .tagline {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    margin-top: 73px;
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Use background-image with cover for better scaling */
.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(1, 75, 102, 0.95), rgba(1, 75, 102, 0.7), transparent);
    color: var(--text-light);
    padding: 3rem 2rem 5rem;
    text-align: center;
}

.hero-content h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 20;
    width: 60px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-top: 5px solid white;
    border-right: 5px solid white;
    transition: var(--transition);
}

.slider-btn.prev::before {
    transform: rotate(-135deg);
    left: 20px;
}

.slider-btn.next::before {
    transform: rotate(45deg);
    right: 20px;
}

.slider-btn:hover::before {
    border-color: white;
    transform: scale(1.2) rotate(-135deg);
}

.slider-btn.next:hover::before {
    transform: scale(1.2) rotate(45deg);
}

.slider-btn.prev {
    left: 0;
    background: linear-gradient(to right, rgba(1, 75, 102, 0.3), transparent);
}

.slider-btn.next {
    right: 0;
    background: linear-gradient(to left, rgba(1, 75, 102, 0.3), transparent);
}

.slider-btn:hover {
    background: linear-gradient(to right, rgba(8, 162, 181, 0.4), transparent);
}

.slider-btn.next:hover {
    background: linear-gradient(to left, rgba(8, 162, 181, 0.4), transparent);
}

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 30;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.3);
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--gray-light);
}

.about-content {
    text-align: center;
}

.lead {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-content > p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px var(--shadow-hover);
}

.feature svg {
    color: var(--secondary-color);
    margin: 0 auto 1rem;
}

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

/* Facilities Section */
.facilities {
    padding: 6rem 0;
}

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

.facility-card {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid var(--secondary-color);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px var(--shadow-hover);
    border-top-color: var(--primary-color);
}

.facility-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.facility-card p {
    line-height: 1.6;
    color: #555;
}

/* Mobile facilities compact view */
@media (max-width: 768px) {
    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .facility-card {
        padding: 1.5rem 1rem;
        cursor: pointer;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .facility-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .facility-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0;
        text-align: center;
    }

    .facility-card p {
        display: none;
        font-size: 0.9rem;
        margin-top: 1rem;
        text-align: center;
    }

    .facility-card.active {
        grid-column: 1 / -1;
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .facility-card.active h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .facility-card.active p {
        display: block;
    }

    .facility-card.active .facility-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
}

/* Accommodations Section */
.accommodations {
    padding: 6rem 0;
    background-color: var(--gray-light);
}

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

.accommodation-card {
    background-color: var(--background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow);
    transition: var(--transition);
}

.accommodation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px var(--shadow-hover);
}

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

.accommodation-content {
    padding: 2rem;
}

.accommodation-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.accommodation-content p {
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.features-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-hover);
}

/* Prices Section */
.prices {
    padding: 6rem 0;
    background: white;
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.pricing-table {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px var(--shadow);
}

.pricing-table h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.pricing-table thead {
    background: var(--primary-color);
    color: white;
}

.pricing-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-medium);
}

.pricing-table tbody tr:hover {
    background-color: rgba(8, 162, 181, 0.05);
}

.pricing-table tbody tr.highlight {
    background-color: rgba(8, 162, 181, 0.1);
    font-weight: 600;
}

.table-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.pricing-info {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
}

.pricing-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-info ul {
    list-style: none;
    padding: 0;
}

.pricing-info li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.pricing-info li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1.2;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--gray-light);
}

.gallery .container {
    position: relative;
}

.gallery-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px var(--shadow);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 20;
    width: 60px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-btn::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-top: 5px solid white;
    border-right: 5px solid white;
    transition: var(--transition);
}

.gallery-btn.prev::before {
    transform: rotate(-135deg);
    left: 20px;
}

.gallery-btn.next::before {
    transform: rotate(45deg);
    right: 20px;
}

.gallery-btn:hover::before {
    border-color: white;
    transform: scale(1.2) rotate(-135deg);
}

.gallery-btn.next:hover::before {
    transform: scale(1.2) rotate(45deg);
}

.gallery-btn.prev {
    left: 0;
    background: linear-gradient(to right, rgba(1, 75, 102, 0.3), transparent);
}

.gallery-btn.next {
    right: 0;
    background: linear-gradient(to left, rgba(1, 75, 102, 0.3), transparent);
}

.gallery-btn:hover {
    background: linear-gradient(to right, rgba(8, 162, 181, 0.4), transparent);
}

.gallery-btn.next:hover {
    background: linear-gradient(to left, rgba(8, 162, 181, 0.4), transparent);
}

.gallery-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 30;
}

.gallery-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.gallery-dots .dot.active {
    background-color: var(--secondary-color);
}

/* Old gallery grid - keeping for backward compatibility but hidden */
.gallery-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 250px;
    box-shadow: 0 4px 6px var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(1, 75, 102, 0.5));
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.contact-item svg {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.contact-item p {
    margin: 0;
    font-size: 1rem;
}

/* Form Styles */
.contact-form {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--gray-medium);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(8, 162, 181, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Expandable info sections */
.expandable-section {
    margin-top: 2rem;
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    overflow: hidden;
}

.expandable-header {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1.1rem;
}

.expandable-header:hover {
    background: var(--accent-color);
}

.expandable-header::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 700;
    transition: transform 0.3s ease;
    line-height: 1;
}

.expandable-header.active::after {
    content: '−';
}

.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--background);
}

.expandable-content.active {
    max-height: 2000px;
}

.expandable-inner {
    padding: 1.5rem;
}

.expandable-inner h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.expandable-inner ul {
    list-style: none;
    padding: 0;
}

.expandable-inner li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-medium);
}

.expandable-inner li:last-child {
    border-bottom: none;
}

.expandable-inner strong {
    color: var(--primary-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.info-box {
    background: var(--gray-light);
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid var(--secondary-color);
}

.info-box h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-box p {
    margin: 0.25rem 0;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.7;
}

.footer-tagline {
    color: var(--secondary-color);
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .pricing-tables {
        grid-template-columns: 1fr;
    }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .navbar .container {
        padding: 1rem 1.5rem;
        gap: 3rem;
    }

    .nav-brand .logo {
        height: 45px;
    }

    .nav-brand h1 {
        font-size: 1.5rem;
    }

    .nav-brand .tagline {
        font-size: 0.8rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.95rem;
    }

    .hero {
        height: 450px;
    }

    .hero-content {
        padding: 2.5rem 2rem 4.5rem;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .accommodations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-slider {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0.75rem 1rem;
        justify-content: space-between;
        gap: 1rem;
    }

    .nav-brand {
        gap: 0.5rem;
    }

    .nav-brand .logo {
        height: 35px;
    }

    .nav-brand h1 {
        font-size: 1.3rem;
    }

    .nav-brand .tagline {
        font-size: 0.75rem;
    }

    .nav-toggle {
        display: flex;
        order: 3;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background-color: var(--primary-color);
        padding: 2rem 0;
        gap: 0;
        align-items: flex-start;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 1002;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-radius: 0;
        width: 100%;
        display: block;
    }

    .nav-link:hover {
        background-color: rgba(8, 162, 181, 0.2);
    }

    .language-switcher {
        padding: 1rem 2rem;
        width: 100%;
        justify-content: flex-start;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 1rem;
    }

    .lang-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero {
        height: 400px;
        margin-top: 57px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content {
        padding: 2rem 1rem 4rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .section-intro {
        font-size: 1rem;
        padding: 0 1rem;
        max-width: 100%;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .about-content {
        text-align: center;
    }

    .about-content p {
        padding: 0 1rem;
        font-size: 1rem;
    }

    .about-content > p {
        max-width: 100%;
    }

    .lead {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .feature {
        padding: 1.5rem;
    }

    .feature h3 {
        font-size: 1.3rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .accommodations-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .accommodation-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .accommodation-card img {
        border-radius: 10px 10px 0 0;
    }

    section {
        padding: 4rem 0 !important;
    }

    .about, .facilities, .accommodations, .prices, .gallery, .contact {
        padding: 4rem 0 !important;
    }

    .slider-btn {
        width: 50px;
        height: 80px;
    }

    .slider-btn::before {
        width: 20px;
        height: 20px;
        border-width: 4px;
    }

    .slider-btn.prev::before {
        left: 15px;
    }

    .slider-btn.next::before {
        right: 15px;
    }

    .container {
        padding: 0 1rem;
    }

    .pricing-tables {
        grid-template-columns: 1fr;
    }

    .gallery-slider {
        height: 400px;
        max-width: 100%;
        border-radius: 8px;
    }

    .gallery-btn {
        width: 50px;
        height: 80px;
    }

    .gallery-btn::before {
        width: 20px;
        height: 20px;
        border-width: 4px;
    }

    .gallery-btn.prev::before {
        left: 15px;
    }

    .gallery-btn.next::before {
        right: 15px;
    }

    .pricing-table {
        padding: 1.5rem 1rem;
    }

    .pricing-table h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .pricing-table table {
        font-size: 0.85rem;
    }

    .expandable-header {
        font-size: 1rem;
        padding: 1rem;
    }

    .expandable-inner {
        padding: 1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
    }

    .hero-content {
        padding: 1.5rem 1rem 3.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.8rem;
        padding: 0 0.5rem;
    }

    .section-intro {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature {
        padding: 1.25rem;
    }

    .feature h3 {
        font-size: 1.2rem;
    }

    .lead {
        font-size: 1rem;
    }

    .about-content > p {
        font-size: 0.95rem;
    }

    section {
        padding: 3rem 0 !important;
    }

    .about, .facilities, .accommodations, .prices, .gallery, .contact {
        padding: 3rem 0 !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .accommodations-grid {
        grid-template-columns: 1fr;
    }

    .pricing-table {
        padding: 1rem 0.75rem;
    }

    .pricing-table table {
        font-size: 0.8rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.6rem 0.4rem;
    }

    .pricing-table h3 {
        font-size: 1.3rem;
    }

    .nav-brand h1 {
        font-size: 1.1rem;
    }

    .nav-brand .tagline {
        font-size: 0.7rem;
    }

    .nav-brand .logo {
        height: 30px;
    }

    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .facility-card {
        padding: 1rem 0.5rem;
        min-height: 100px;
    }

    .facility-card h3 {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .facility-icon {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }

    .gallery-slider {
        height: 280px;
        max-width: 100%;
    }

    .expandable-header {
        font-size: 0.95rem;
        padding: 0.9rem;
    }

    .expandable-inner {
        padding: 0.9rem;
    }

    .expandable-inner h4 {
        font-size: 1rem;
    }

    .expandable-inner ul li {
        font-size: 0.9rem;
    }

    .info-box {
        padding: 0.9rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Large Monitors - Keep hero contained */
@media (min-width: 1920px) {
    .hero {
        height: 600px;
    }

    .hero-bg {
        background-size: cover;
        background-position: center center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .language-switcher,
    .slider-btn,
    .slider-dots,
    .contact-form {
        display: none;
    }

    .hero {
        height: auto;
        margin-top: 0;
    }

    body {
        font-size: 12pt;
    }
}
