* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gilroy', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-top {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.contact-info span {
    margin-right: 20px;
    font-size: 14px;
}

.language-switcher a {
    margin-left: 10px;
    text-decoration: none;
    color: #666;
    padding: 5px 10px;
}

.language-switcher a.active {
    color: #2c5f5d;
    font-weight: bold;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo h1 {
    color: #2c5f5d;
    font-size: 24px;
    margin: 0;
    font-family: 'Trajan', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2c5f5d;
}

/* Slider */
.slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
    z-index: 2;
}

.slide.fade-out {
    opacity: 0;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurnsZoom 8s ease-out forwards;
}

/* Ken Burns Zoom Effect */
@keyframes kenBurnsZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

/* Reset animation when slide becomes active */
.slide.active img {
    animation: kenBurnsZoom 8s ease-out forwards;
}

/* Weather Widget */
.weather-widget {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px 25px;
    color: white;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.weather-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.weather-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.weather-icon i {
    font-size: 50px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.weather-info {
    flex: 1;
}

.weather-temp {
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.weather-city {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.weather-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: capitalize;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Weather Widget Responsive */
@media (max-width: 768px) {
    .weather-widget {
        bottom: 25px;
        right: 15px;
        padding: 15px 18px;
        min-width: 160px;
    }
    
    .weather-icon i {
        font-size: 40px;
    }
    
    .weather-temp {
        font-size: 24px;
    }
    
    .weather-city {
        font-size: 14px;
    }
    
    .weather-desc {
        font-size: 11px;
    }
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Trajan', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Rezervasyon Formu - Slider Altında Sabit */
.booking-form {
    background: #fff;
    padding: 25px 40px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.booking-form form {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 150px;
}

.booking-form label {
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form input,
.booking-form select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    background: #fff;
}

.booking-form button {
    flex-shrink: 0;
    padding: 12px 35px;
    white-space: nowrap;
    margin-top: 27px; /* Label height (11px font + 8px margin-bottom + 8px extra) */
    height: 44px;
}

/* Sections */
.about-section-home,
.rooms-section,
.facilities-section,
.map-section,
.newsletter-section {
    padding: 60px 0;
}

/* About Section Home - Two Column */
.about-section-home {
    padding: 0;
    background: #fff;
}

.about-section-home .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
    max-height: 500px;
}

.about-section-home .about-left {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.about-slider-home {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    max-height: 500px;
}

.about-slide-home {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.about-slide-home.active {
    display: block;
    opacity: 1;
    z-index: 2;
}

.about-slide-home.fade-out {
    opacity: 0;
    z-index: 1;
}

.about-slide-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurnsZoom 10s ease-out forwards;
}

.about-prev-home,
.about-next-home {
    position: absolute;
    bottom: 20px;
    background: rgba(44, 95, 93, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.about-prev-home:hover,
.about-next-home:hover {
    background: rgba(44, 95, 93, 1);
    transform: scale(1.1);
}

.about-prev-home {
    right: 80px;
}

.about-next-home {
    right: 20px;
}

.about-section-home .about-right {
    display: flex;
    align-items: center;
    padding: 40px 60px;
    background: #fff;
    overflow-y: auto;
}

.about-section-home .about-content-wrapper {
    max-width: 600px;
}

.about-section-home .about-welcome {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 400;
}

.about-title-home {
    font-size: 32px;
    color: #2c5f5d;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Trajan', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 1.5px;
}

.about-section-home .about-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    max-height: 280px;
    overflow-y: auto;
}

.about-section-home .about-text p {
    margin-bottom: 15px;
}

.about-section h2,
.rooms-section h2,
.facilities-section h2,
.map-section h2,
.newsletter-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: #2c5f5d;
    font-family: 'Trajan', 'Georgia', serif;
    font-weight: 400;
    letter-spacing: 2px;
}

/* Rooms Slider - Based on Titanic Hotel Design */
.rooms-section {
    padding: 80px 0;
    overflow: hidden;
}

.slider-rooms {
    position: relative;
    margin-right: 150px; /* Show next room preview on right */
}

.slider-rooms .slider__clip {
    overflow: visible;
    position: relative;
}

.slider-rooms .slider__slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.slider-rooms .slider__slide {
    min-width: 100%;
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.4s;
}

.slider-rooms .slider__slide.active {
    opacity: 1;
}

.halfpane {
    display: flex;
    flex-direction: row;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 600px;
    position: relative;
}

.halfpane__image {
    width: 55%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    position: relative;
}

.halfpane__content {
    width: 45%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.halfpane__title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-family: 'Trajan', 'Georgia', serif;
    letter-spacing: 1.5px;
}

.halfpane__title a {
    color: inherit;
    text-decoration: none;
}

.halfpane__entry {
    margin-bottom: 25px;
}

.halfpane__entry p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.halfpane__link {
    margin-bottom: 25px;
}

.halfpane__link .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2c5f5d;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    background: transparent;
    border: none;
    padding: 0;
}

.halfpane__link .btn-link:hover {
    gap: 12px;
    opacity: 0.8;
}

.halfpane__link .btn__icon {
    width: 7px;
    height: 11px;
}

.halfpane__rate {
    margin-bottom: 25px;
}

.halfpane__rate p {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.halfpane__rate strong {
    display: block;
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 700;
    margin: 5px 0;
}

.halfpane__rate span {
    font-size: 16px;
    color: #666;
    text-transform: none;
}

.halfpane__actions .btn {
    background: #2c7a7b;
    color: white;
    padding: 16px 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.halfpane__actions .btn:hover {
    background: #234e52;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 122, 123, 0.3);
}

.slider-rooms .paging-circle {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.slider-rooms .paging-circle button {
    position: absolute;
    background: rgba(44, 122, 123, 0.9);
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.slider-rooms .paging-circle button svg {
    width: 11px;
    height: 19px;
}

.slider-rooms .paging-circle button:hover {
    background: #2c7a7b;
    transform: scale(1.1);
}

.slider-rooms .paging__prev {
    left: 20px;
}

.slider-rooms .paging__next {
    left: calc(55% - 27px); /* Position between image and content */
}

@media (max-width: 1024px) {
    .slider-rooms {
        margin-right: 0;
    }
    
    .slider-rooms .slider__slides {
        gap: 20px;
    }
    
    .slider-rooms .slider__slide {
        min-width: 100%;
    }
    
    .halfpane {
        flex-direction: column;
        height: auto;
    }
    
    .halfpane__image {
        width: 100%;
        height: 400px;
    }
    
    .halfpane__content {
        width: 100%;
        padding: 40px 30px;
    }
    
    .slider-rooms .paging__prev {
        left: 20px;
    }
    
    .slider-rooms .paging__next {
        left: auto;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .halfpane__image {
        height: 300px;
    }
    
    .halfpane__content {
        padding: 30px 20px;
    }
    
    .halfpane__title {
        font-size: 28px;
    }
    
    .slider-rooms .paging-circle button {
        width: 45px;
        height: 45px;
    }
    
    .slider-rooms .paging__prev {
        left: 15px;
    }
    
    .slider-rooms .paging__next {
        right: 15px;
    }
}

/* Old Rooms Grid - Keep for other pages */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.room-card {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-card h3 {
    padding: 20px;
    font-size: 24px;
}

.room-card p {
    padding: 0 20px;
    color: #666;
}

.room-price {
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #2c5f5d;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.facility-card {
    text-align: center;
}

.facility-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.facility-card h3 {
    margin: 20px 0 10px;
    font-size: 22px;
}

.facility-card a {
    color: #2c5f5d;
    text-decoration: none;
    font-weight: 500;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    margin: 10px;
}

.btn-primary {
    background: #2c5f5d;
    color: #fff;
}

.btn-primary:hover {
    background: #1f4644;
}

.btn-secondary {
    background: #fff;
    color: #2c5f5d;
    border: 2px solid #2c5f5d;
}

.btn-secondary:hover {
    background: #2c5f5d;
    color: #fff;
}

/* Newsletter */
.newsletter-section {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 0 50px;
    text-align: center;
}

.footer-logo-center {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo-center a {
    text-decoration: none;
    display: inline-block;
}

.footer-logo-center img {
    max-width: 250px;
    height: auto;
    transition: opacity 0.3s;
}

.footer-logo-center a:hover img {
    opacity: 0.8;
}

.footer-logo-text {
    color: #fff;
    font-size: 36px;
    margin: 0;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.footer-logo-center a:hover .footer-logo-text {
    opacity: 0.8;
}

.newsletter-section h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-style: italic;
}

.newsletter-form button {
    padding: 16px 45px;
    background: #2c7a7b;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #236566;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.footer-contact {
    flex: 1;
}

.footer-contact p {
    margin: 8px 0;
    font-size: 13px;
    color: #ccc;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2c7a7b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: #236566;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 35px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    text-transform: capitalize;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom p {
    color: #999;
    font-size: 13px;
    margin: 0;
}

/* Map */
.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Video Section */
.video-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.video-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: #2c5f5d;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}


/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c5f5d 0%, #1f4644 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin: 0;
}

/* Contact Page */
.contact-page {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    color: #2c5f5d;
    margin-bottom: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-map {
    margin-top: 50px;
}

.contact-map h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c5f5d;
}

/* Booking Page */
.booking-page {
    padding: 60px 0;
}

.booking-form-full {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h2 {
    color: #2c5f5d;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.btn-large {
    width: 100%;
    padding: 18px;
    font-size: 16px;
}

/* Gallery Page */
.gallery-page {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 15px;
    text-align: center;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #2c7a7b;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: color 0.3s;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #2c7a7b;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

#lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#lightbox-caption {
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    max-width: 800px;
}

/* Rooms Page */
.rooms-page {
    padding: 60px 0;
}

.room-card-content {
    padding: 20px;
}

.room-features {
    margin: 20px 0;
}

.room-features h4 {
    color: #2c5f5d;
    margin-bottom: 10px;
}

.room-features ul {
    list-style: none;
    padding: 0;
}

.room-features ul li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.room-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f5d;
    font-weight: bold;
}

.room-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Rooms Page Detailed Layout */
.rooms-page-detailed {
    padding: 60px 0;
}

.rooms-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 40px;
}

.room-card-compact {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.room-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.room-card-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.room-card-compact:hover .room-card-image img {
    transform: scale(1.05);
}

.room-card-body {
    padding: 30px;
}

.room-card-title {
    font-size: 24px;
    color: #2c5f5d;
    margin-bottom: 20px;
    font-weight: 600;
}

.room-specs-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.room-spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 13px;
}

.room-spec-item svg {
    color: #2c5f5d;
    flex-shrink: 0;
}

.room-features-compact {
    margin-bottom: 20px;
}

.room-features-compact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.room-features-compact ul li {
    padding-left: 20px;
    position: relative;
    font-size: 13px;
    color: #555;
}

.room-features-compact ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f5d;
    font-weight: bold;
    font-size: 16px;
}

.premium-amenities-compact {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.premium-amenities-compact h4 {
    font-size: 14px;
    color: #2c5f5d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.amenities-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.amenity-icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenity-icon-item svg {
    color: #2c5f5d;
    flex-shrink: 0;
}

.amenity-icon-item span {
    font-size: 13px;
    color: #555;
}

.room-card-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.room-price-compact {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.room-price-compact .price-label {
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-price-compact .price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f5d;
}

.room-price-compact .price-period {
    color: #666;
    font-size: 14px;
}

.room-card-actions {
    display: flex;
    gap: 12px;
}

.btn-outline-compact,
.btn-primary-compact {
    flex: 1;
    display: inline-block;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    text-align: center;
}

.btn-outline-compact {
    border: 2px solid #2c5f5d;
    color: #2c5f5d;
    background: #fff;
}

.btn-outline-compact:hover {
    background: #2c5f5d;
    color: #fff;
}

.btn-primary-compact {
    background: #2c5f5d;
    color: #fff;
    border: 2px solid #2c5f5d;
}

.btn-primary-compact:hover {
    background: #1f4644;
    border-color: #1f4644;
}

/* Rooms Page Responsive */
@media (max-width: 1024px) {
    .rooms-grid-compact {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .rooms-grid-compact {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .room-card-image {
        height: 250px;
    }
    
    .room-card-body {
        padding: 20px;
    }
    
    .room-specs-compact {
        flex-direction: column;
        gap: 12px;
    }
    
    .room-features-compact ul {
        grid-template-columns: 1fr;
    }
    
    .amenities-icons {
        grid-template-columns: 1fr;
    }
    
    .room-card-actions {
        flex-direction: column;
    }
    
    .btn-outline-compact,
    .btn-primary-compact {
        width: 100%;
    }
}

.room-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e0e0e0;
}

.room-detail-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.room-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.room-detail-content {
    display: flex;
    flex-direction: column;
}

.room-detail-title {
    font-size: 32px;
    color: #2c5f5d;
    margin-bottom: 25px;
}

.room-specs {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.room-spec {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.room-spec svg {
    color: #2c5f5d;
    flex-shrink: 0;
}

.room-features-list {
    margin-bottom: 30px;
}

.room-features-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.room-features-list ul li {
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: #333;
}

.room-features-list ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f5d;
    font-weight: bold;
    font-size: 16px;
}

.premium-amenities {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.premium-amenities h3 {
    font-size: 18px;
    color: #2c5f5d;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.amenity-item svg {
    color: #2c5f5d;
    flex-shrink: 0;
}

.amenity-item span {
    font-size: 14px;
    color: #333;
}

.room-price-section {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.room-actions-inline {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-outline {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid #2c5f5d;
    color: #2c5f5d;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-align: center;
}

.btn-outline:hover {
    background: #2c5f5d;
    color: #fff;
}

/* Old Rooms Page Responsive */
@media (max-width: 968px) {
    .room-detail-card {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
        padding-bottom: 60px;
    }
    
    .room-detail-image img {
        min-height: 350px;
    }
    
    .room-specs {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .room-features-list ul {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .room-actions-inline {
        flex-direction: column;
    }
    
    .btn-outline,
    .room-actions-inline .btn-primary {
        width: 100%;
    }
}

/* Room Detail */
.room-detail {
    padding: 60px 0;
}

/* Room Detail Hero Slider */
.room-detail-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.room-hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.room-hero-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.room-hero-slide.active {
    display: block;
    opacity: 1;
    z-index: 2;
    animation: fadeIn 0.5s;
}

.room-hero-slide.fade-out {
    opacity: 0;
    z-index: 1;
}

.room-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurnsZoom 10s ease-out forwards;
}

.room-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 60px 80px;
}

.room-hero-title {
    color: #fff;
    font-size: 48px;
    margin: 0;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.room-hero-prev,
.room-hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.room-hero-prev:hover,
.room-hero-next:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.room-hero-prev {
    left: 30px;
}

.room-hero-next {
    right: 30px;
}

.room-hero-pause {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-hero-pause:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.room-hero-reservation {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2c7a7b;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
    transition: all 0.3s;
}

.room-hero-reservation:hover {
    background: #236566;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Room Detail Content */
.room-detail-content {
    padding: 80px 0;
}

.room-detail-layout {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 80px;
}

.room-detail-intro h2 {
    font-size: 24px;
    color: #666;
    font-weight: 400;
    margin-bottom: 10px;
}

.room-name-large {
    font-size: 42px;
    color: #2c5f5d;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 1px;
}

.room-description-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.room-specs-detail {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.room-spec-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.room-spec-detail-item svg {
    color: #2c5f5d;
}

.room-amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: #333;
}

.amenity-item i {
    color: #2c7a7b;
    font-size: 16px;
    flex-shrink: 0;
}

.amenity-item.premium i {
    color: #d4af37;
}

.amenity-item span {
    line-height: 1.4;
}

.room-premium-section h4 {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    text-transform: capitalize;
    font-weight: 400;
}

.premium-icons-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.premium-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.premium-icon-item svg {
    color: #2c5f5d;
}

.premium-icon-item span {
    font-size: 13px;
    color: #555;
    max-width: 100px;
}

/* Thumbnail Slider */
.room-thumbnail-slider {
    position: relative;
    width: 100%;
    height: 350px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
}

.room-thumb-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.room-thumb-slide.active {
    display: block;
    opacity: 1;
    z-index: 2;
    animation: fadeIn 0.5s;
}

.room-thumb-slide.fade-out {
    opacity: 0;
    z-index: 1;
}

.room-thumb-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    animation: kenBurnsZoom 8s ease-out forwards;
}

.room-thumb-prev,
.room-thumb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.room-thumb-prev:hover,
.room-thumb-next:hover {
    background: rgba(0, 0, 0, 0.9);
}

.room-thumb-prev {
    left: 15px;
}

.room-thumb-next {
    right: 15px;
}

.room-thumb-pause {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-thumb-pause:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Booking Box */
.room-booking-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.room-price-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.room-price-box .price-from {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-price-box .price-value {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f5d;
}

.room-price-box .price-night {
    font-size: 14px;
    color: #666;
}

.btn-check-availability {
    display: block;
    width: 100%;
    padding: 18px;
    background: #2c7a7b;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-check-availability:hover {
    background: #236566;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Room Detail Responsive */
@media (max-width: 1024px) {
    .room-detail-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .room-thumbnail-slider {
        max-width: 600px;
        margin: 0 auto 30px;
    }
    
    .room-booking-box {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .room-detail-hero {
        height: 400px;
    }
    
    .room-hero-overlay {
        padding: 40px 20px;
    }
    
    .room-hero-title {
        font-size: 32px;
    }
    
    .room-hero-prev,
    .room-hero-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .room-hero-prev {
        left: 15px;
    }
    
    .room-hero-next {
        right: 15px;
    }
    
    .room-hero-reservation {
        top: 10px;
        right: 10px;
        padding: 12px 20px;
        font-size: 11px;
    }
    
    .room-name-large {
        font-size: 32px;
    }
    
    .room-specs-detail {
        flex-direction: column;
        gap: 15px;
    }
    
    .room-amenities-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .amenity-item {
        font-size: 14px;
        padding: 6px 0;
    }
    
    .amenity-label {
        font-size: 11px;
    }
    
    .premium-icons-row {
        gap: 20px;
    }
    
    .room-thumbnail-slider {
        height: 250px;
    }
}

.room-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.image-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
}

.room-price-large {
    font-size: 24px;
    color: #2c5f5d;
    margin: 20px 0;
}

.room-price-large strong {
    font-size: 32px;
}

.room-description {
    margin: 30px 0;
    line-height: 1.8;
}

.room-features-detail {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.room-features-detail h3 {
    color: #2c5f5d;
    margin-bottom: 15px;
}

.room-features-detail ul {
    list-style: none;
    padding: 0;
}

.room-features-detail ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.room-features-detail ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f5d;
    font-weight: bold;
}

.room-booking {
    margin-top: 30px;
}

/* Blog Page */
.blog-page {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-card h3 {
    margin: 10px 0;
    font-size: 22px;
}

.blog-card p {
    color: #666;
    margin: 15px 0;
}

/* Facility Detail */
.facility-detail {
    padding: 60px 0;
}

.facility-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.facility-image {
    margin-bottom: 40px;
}

.facility-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.facility-description {
    line-height: 1.8;
}

.facility-description h2 {
    color: #2c5f5d;
    margin-bottom: 20px;
}

/* About Page - Two Column Layout */
.about-page-full {
    padding: 0;
    min-height: 600px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.about-left {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.about-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.about-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.about-slide.active {
    display: block;
    opacity: 1;
    z-index: 2;
}

.about-slide.fade-out {
    opacity: 0;
    z-index: 1;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurnsZoom 10s ease-out forwards;
}

.about-single-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.about-single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-prev,
.about-next {
    position: absolute;
    bottom: 20px;
    background: rgba(44, 95, 93, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.about-prev:hover,
.about-next:hover {
    background: rgba(44, 95, 93, 1);
    transform: scale(1.1);
}

.about-prev {
    right: 80px;
}

.about-next {
    right: 20px;
}

.about-right {
    display: flex;
    align-items: center;
    padding: 60px 80px;
    background: #fff;
}

.about-content-wrapper {
    max-width: 600px;
}

.about-welcome {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 400;
}

.about-title {
    font-size: 42px;
    color: #2c5f5d;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.about-text p {
    margin-bottom: 20px;
}

/* About & Sustainability Pages */
.about-page,
.sustainability-page {
    padding: 60px 0;
}

.about-image,
.page-image {
    margin-bottom: 40px;
    text-align: center;
}

.about-image img,
.page-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-content,
.page-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 16px;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .booking-form form {
        flex-direction: column;
        gap: 15px;
    }
    
    .booking-form .form-group {
        width: 100%;
    }
    
    .booking-form button {
        width: 100%;
    }
    
    /* Newsletter Responsive */
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    /* Footer Responsive */
    .footer-main {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
    
    /* About Section Home Responsive */
    .about-section-home .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-section-home .about-left {
        min-height: 400px;
    }
    
    .about-slider-home {
        min-height: 400px;
    }
    
    .about-section-home .about-right {
        padding: 40px 20px;
    }
    
    .about-title-home {
        font-size: 32px;
    }
    
    /* About Page Responsive */
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-left {
        min-height: 400px;
    }
    
    .about-slider {
        min-height: 400px;
    }
    
    .about-single-image {
        min-height: 400px;
    }
    
    .about-right {
        padding: 40px 20px;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .contact-grid,
    .room-detail-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid,
    .facilities-grid,
    .blog-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* Lightbox Responsive */
@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 35px;
        padding: 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    #lightbox-img {
        max-width: 95%;
        max-height: 70vh;
    }
    
    #lightbox-caption {
        font-size: 14px;
        padding: 15px;
    }
}

/* Sustainability Page */
.sustainability-documents,
.sustainability-practices {
    margin-top: 60px;
}

.section-title {
    font-size: 32px;
    color: #2c5f5d;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Document Cards */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.document-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    position: relative;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #2c7a7b;
}

.document-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c7a7b 0%, #236566 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.document-icon svg {
    color: #fff;
}

.document-content h3 {
    font-size: 20px;
    color: #2c5f5d;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.document-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.document-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.meta-item svg {
    color: #2c7a7b;
    flex-shrink: 0;
}

.document-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 25px;
    background: #2c7a7b;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    margin-top: auto;
}

.document-preview:hover {
    background: #236566;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 122, 123, 0.3);
}

.document-preview svg {
    flex-shrink: 0;
}

/* Practice Cards */
.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.practice-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #fff;
    border-color: #2c7a7b;
}

.practice-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.practice-card h3 {
    font-size: 18px;
    color: #2c5f5d;
    margin-bottom: 15px;
    font-weight: 600;
}

.practice-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Sustainability Responsive */
@media (max-width: 768px) {
    .documents-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .practices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .document-card {
        padding: 25px;
    }
    
    .document-icon {
        width: 70px;
        height: 70px;
    }
    
    .document-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .document-content h3 {
        font-size: 18px;
    }
    
    .document-meta {
        gap: 8px;
    }
    
    .practice-card {
        padding: 30px 20px;
    }
    
    .practice-icon {
        font-size: 56px;
        height: 70px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
}


/* Newsletter Notification Messages */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    animation: slideIn 0.3s ease-out;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification.success {
    background: #28a745;
    color: white;
}

.notification.error {
    background: #dc3545;
    color: white;
}

.notification.info {
    background: #17a2b8;
    color: white;
}

.notification i {
    font-size: 20px;
}

.notification-close {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.notification-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.notification.slide-out {
    animation: slideOut 0.3s ease-out forwards;
}

@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}


/* Contact Page Alerts */
.contact-form-wrapper .alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    animation: slideDown 0.3s ease-out;
}

.contact-form-wrapper .alert i {
    font-size: 20px;
}

.contact-form-wrapper .alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.contact-form-wrapper .alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Form Button */
.contact-form .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


/* ============================================
   MOBILE MENU & RESPONSIVE IMPROVEMENTS
   ============================================ */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    /* Slider Height */
    .slider {
        height: 500px;
    }
    
    .slide-content h2 {
        font-size: 36px;
    }
    
    /* Booking Form */
    .booking-form {
        padding: 20px 25px;
    }
    
    .booking-form form {
        gap: 15px;
    }
    
    /* Sections Padding */
    .about-section-home,
    .rooms-section,
    .facilities-section,
    .map-section,
    .newsletter-section {
        padding: 40px 0;
    }
    
    /* Page Header */
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Header Top */
    .header-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px 0;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-info span {
        margin-right: 0;
        font-size: 12px;
    }
    
    .language-switcher {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    
    .language-switcher a {
        margin-left: 0;
    }
    
    /* Navbar */
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .logo img {
        max-width: 150px !important;
        height: auto !important;
    }
    
    /* Mobile Navigation Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        gap: 0;
        margin-top: 0;
        padding: 80px 0 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 25px;
        font-size: 16px;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    /* Slider */
    .slider {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .slide-content .btn-primary {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    /* Weather Widget - Already has responsive styles */
    
    /* Booking Form */
    .booking-form {
        padding: 20px 15px;
    }
    
    .booking-form form {
        flex-direction: column;
        gap: 15px;
    }
    
    .booking-form .form-group {
        width: 100%;
        min-width: auto;
    }
    
    .booking-form button {
        width: 100%;
        padding: 14px 20px;
    }
    
    /* Sections */
    .about-section-home,
    .rooms-section,
    .facilities-section,
    .map-section,
    .newsletter-section {
        padding: 30px 0;
    }
    
    .about-section h2,
    .rooms-section h2,
    .facilities-section h2,
    .map-section h2,
    .newsletter-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    /* About Section Home */
    .about-section-home .about-container {
        grid-template-columns: 1fr;
        min-height: auto;
        max-height: none;
    }
    
    .about-section-home .about-left {
        min-height: 350px;
        max-height: 400px;
    }
    
    .about-slider-home {
        min-height: 350px;
        max-height: 400px;
    }
    
    .about-prev-home,
    .about-next-home {
        width: 40px;
        height: 40px;
        font-size: 20px;
        bottom: 15px;
    }
    
    .about-prev-home {
        right: 65px;
    }
    
    .about-next-home {
        right: 15px;
    }
    
    .about-section-home .about-right {
        padding: 30px 20px;
    }
    
    .about-title-home {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .about-section-home .about-welcome {
        font-size: 14px;
    }
    
    .about-section-home .about-text {
        font-size: 13px;
        max-height: none;
    }
    
    /* Rooms Section - Already has responsive styles */
    
    /* Facilities Grid */
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .facility-card img {
        height: 250px;
    }
    
    /* Newsletter */
    .newsletter-section {
        padding: 40px 0 30px;
    }
    
    .footer-logo-center {
        margin-bottom: 30px;
    }
    
    .footer-logo-center img {
        max-width: 180px;
    }
    
    .footer-logo-text {
        font-size: 24px;
    }
    
    .newsletter-section h2 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input {
        padding: 14px 18px;
        font-size: 13px;
    }
    
    .newsletter-form button {
        width: 100%;
        padding: 14px 20px;
        font-size: 12px;
    }
    
    /* Footer */
    .footer-main {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 25px 0;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact p {
        font-size: 12px;
    }
    
    .footer-social {
        justify-content: center;
        gap: 10px;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 0;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
    
    /* Map */
    .map-container {
        height: 300px;
    }
    
    /* Page Header */
    .page-header {
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    /* Contact Page */
    .contact-page {
        padding: 30px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .contact-item h3 {
        font-size: 18px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    /* Booking Page */
    .booking-page {
        padding: 30px 0;
    }
    
    .booking-form-full {
        padding: 25px 20px;
    }
    
    .form-section h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Gallery Page */
    .gallery-page {
        padding: 30px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    /* Rooms Grid */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .room-card img {
        height: 200px;
    }
    
    /* Video Section */
    .video-section {
        padding: 40px 0;
    }
    
    .video-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
        margin: 5px;
    }
    
    .btn-large {
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .slider {
        height: 300px;
    }
    
    .slide-content h2 {
        font-size: 22px;
    }
    
    .about-section-home .about-left {
        min-height: 300px;
        max-height: 350px;
    }
    
    .about-slider-home {
        min-height: 300px;
        max-height: 350px;
    }
    
    .about-title-home {
        font-size: 20px;
    }
    
    .about-section h2,
    .rooms-section h2,
    .facilities-section h2 {
        font-size: 24px;
    }
    
    .halfpane__title {
        font-size: 24px;
    }
    
    .halfpane__rate strong {
        font-size: 24px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .footer-logo-center img {
        max-width: 150px;
    }
    
    .footer-logo-text {
        font-size: 20px;
    }
    
    .newsletter-section h2 {
        font-size: 14px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .slider {
        height: 350px;
    }
    
    .about-section-home .about-left {
        min-height: 300px;
    }
    
    .about-slider-home {
        min-height: 300px;
    }
}

/* Print Styles */
@media print {
    .header-top,
    .navbar,
    .booking-form,
    .newsletter-section,
    .footer,
    .whatsapp-float,
    .mobile-menu-toggle,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }
    
    .slider {
        height: auto;
        page-break-after: always;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}
