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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    padding: 1.5rem 0;
    transition: background 0.3s ease;
}

.navbar:hover {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-size: 2rem;
    filter: brightness(0.9);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #ffffff;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #e0e0e0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: #7BAF6E;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.cta-button:hover {
    background: #6a9e5e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 175, 110, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero1.jpg');
    background-size: cover;
    background-position: center;
    transition: opacity 1.5s ease-in-out;
    opacity: 1;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero2.jpg');
    background-size: cover;
    background-position: center;
    transition: opacity 1.5s ease-in-out;
    opacity: 0;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: #f0f0f0;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
    margin-bottom: 2rem;
}

.hero-cta-button {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.4s both;
    -webkit-tap-highlight-color: transparent;
}

.hero-cta-button:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.hero-cta-button:active {
    transform: translateY(-1px);
}

/* Social Media Icons */
.social-icons {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.social-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon:active {
    transform: translateY(-1px);
}

/* About Section with Slider */
.about-section {
    background: #f5f5f0;
    padding: 5rem 2rem;
    color: #333;
}

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

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 0.5rem;
}

.about-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    color: #888;
    text-align: center;
    margin-bottom: 3rem;
}

.about-description {
    text-align: center;
    margin-bottom: 4rem;
}

.about-description p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto 1rem auto;
}

.about-description strong {
    font-weight: 600;
    color: #000;
}

/* Slider Wrapper */
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slider Container */
.slider-container {
    position: relative;
    max-width: 1000px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-image {
    min-width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: none;
}

.slider-image.active {
    display: block;
}

.slider-arrow {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.slider-arrow:hover {
    background: #f8f8f8;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.slider-arrow:active {
    transform: scale(1.05);
}

.slider-arrow svg {
    color: #333;
    pointer-events: none;
}

/* Featured Quote Section */
.featured-quote-section {
    background: #ffffff;
    padding: 2rem 2rem;
}

.featured-quote-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: #7BAF6E;
    line-height: 1;
    margin-bottom: 0.25rem;
    opacity: 0.3;
}

.featured-quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.quote-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #555;
    margin: 0;
}

.author-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    font-size: 1.25rem;
    color: #f4b400;
    letter-spacing: 0.1em;
}

.rating-score {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #7BAF6E;
}

/* Rooms Section */
.rooms-section {
    background: #fafaf8;
    padding: 5rem 2rem;
    position: relative;
}

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

.rooms-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left Column - Room Menu */
.rooms-left {
    position: sticky;
    top: 100px;
}

.rooms-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 0.5rem;
}

.rooms-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #888;
    margin-bottom: 2rem;
}

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

.room-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    margin-bottom: 0.5rem;
    background: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 56px;
}

.room-menu-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
}

.room-menu-item svg {
    color: #999;
    transition: transform 0.3s ease;
}

.room-menu-item:hover {
    background: #f5f5f5;
    transform: translateX(5px);
}

.room-menu-item.active {
    background: #7BAF6E;
    border-color: #7BAF6E;
}

.room-menu-item.active span {
    color: #ffffff;
    font-weight: 600;
}

.room-menu-item.active svg {
    color: #ffffff;
    transform: translateX(3px);
}

/* Right Column - Room Details */
.rooms-right {
    position: relative;
    min-height: 500px;
}

.room-details {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.room-details.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.room-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1.5rem;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.room-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.room-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7BAF6E;
    font-weight: 600;
}

/* Room Carousel */
.room-carousel {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.room-carousel-track {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    aspect-ratio: 5 / 4;
}

.room-carousel-track img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.room-carousel-track img.active {
    opacity: 1;
    position: relative;
}

.room-carousel-arrow {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.room-carousel-arrow:hover {
    background: #f8f8f8;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.room-carousel-arrow:active {
    transform: scale(1.05);
}

.room-carousel-arrow svg {
    color: #333;
    pointer-events: none;
}

.cta-button-secondary {
    background: #7BAF6E;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.cta-button-secondary:hover {
    background: #6a9e5e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 175, 110, 0.3);
}

.cta-button-secondary:active {
    transform: translateY(0);
}

/* Amenities Section */
.amenities-section {
    background: #f5f1e8;
    padding: 5rem 2rem;
}

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

.amenities-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 0.5rem;
}

.amenities-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    color: #888;
    text-align: center;
    margin-bottom: 3rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.amenity-item {
    background: #e8dfd0;
    border-radius: 12px;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 120px;
}

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

.amenity-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.amenity-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #5a4a3a;
    margin: 0;
    line-height: 1.4;
}

/* Property Carousel Section */
.property-section {
    background: #ffffff;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.property-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.property-content {
    position: relative;
}

.property-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 0.5rem;
}

.property-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    color: #888;
    text-align: center;
    margin-bottom: 3rem;
}

.property-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.property-carousel {
    overflow: hidden;
    width: 100%;
}

.property-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
}

.property-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.property-card:hover {
    transform: translateY(-3px);
    border-color: #7BAF6E;
}

.property-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.property-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image-wrapper img {
    transform: scale(1.05);
}

.property-card-content {
    padding: 1.5rem;
}

.property-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.property-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    flex: 1;
}

.property-distance-chip {
    background: #7BAF6E;
    color: white;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.property-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.property-arrow {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    z-index: 10;
}

.property-arrow:hover {
    background: #f8f8f8;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.property-arrow:active {
    transform: scale(1.05);
}

.property-arrow svg {
    color: #333;
    pointer-events: none;
}

.property-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.property-arrow:disabled:hover {
    transform: scale(1);
    background: white;
}

/* Reviews Section */
.reviews-section {
    background: #f5f5f0;
    padding: 5rem 2rem;
}

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

.reviews-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 0.5rem;
}

.reviews-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    color: #888;
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
}

.review-card {
    padding: 2rem 1.5rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-score {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.review-quote {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: #7BAF6E;
    line-height: 1;
    margin-bottom: 1rem;
}

.review-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

.review-author {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    color: #888;
    margin: 0;
}

.review-divider {
    width: 1px;
    height: 100%;
    background: #d0d0d0;
    align-self: stretch;
}

/* Location Section */
.location-section {
    background: #ffffff;
    padding: 5rem 2rem;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-content {
    max-width: 500px;
}

.location-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 0.5rem;
}

.location-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    color: #888;
    margin-bottom: 2rem;
}

.location-text {
    margin-bottom: 2.5rem;
}

.location-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.location-text p:last-child {
    margin-bottom: 0;
}

.location-text strong {
    font-weight: 600;
    color: #333;
}

.location-text ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
}

.location-text li {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.location-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #7BAF6E;
    font-weight: 600;
}

.location-cta-button {
    background: #7BAF6E;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.location-cta-button:hover {
    background: #6a9e5e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 175, 110, 0.3);
}

.location-cta-button:active {
    transform: translateY(0);
}

.location-map {
    display: flex;
    justify-content: center;
    align-items: center;
}

.poland-map {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.city-labels text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.main-location text {
    font-family: 'Inter', sans-serif;
}

/* Footer CTA Section */
.footer-cta {
    position: relative;
    background-image: url('images/hero1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 2rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
    color: #ffffff;
}

.footer-contact-info {
    margin-bottom: 2rem;
}

.footer-contact-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0.3rem 0;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 2.5rem 0;
    line-height: 1.3;
}

.footer-cta-button {
    background: #7BAF6E;
    color: #ffffff;
    border: none;
    padding: 0.9rem 3rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    margin-bottom: 3rem;
}

.footer-cta-button:hover {
    background: #6a9e5e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 175, 110, 0.4);
}

.footer-cta-button:active {
    transform: translateY(0);
}

.footer-nav {
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-legal {
    margin-bottom: 2rem;
}

.footer-legal a {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 0.8;
}

.footer-separator {
    margin: 0 1rem;
    color: #ffffff;
    opacity: 0.5;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-social-icon:active {
    transform: translateY(-1px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-quote-text {
        font-size: 1.5rem;
    }

    .nav-menu {
        gap: 2rem;
    }

    .cta-button {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    #navCallCta {
        display: none;
    }

    .navbar {
        padding: 1rem 0;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .hero::before,
    .hero::after {
        position: absolute;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .social-icons {
        bottom: 2rem;
        right: 1.5rem;
        gap: 0.75rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .about-section {
        padding: 3rem 0;
    }

    .about-title {
        font-size: 2rem;
        padding: 0 1.5rem;
    }

    .about-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
        padding: 0 1.5rem;
    }

    .about-description {
        margin-bottom: 3rem;
        padding: 0 1.5rem;
    }

    .about-description p {
        font-size: 1.05rem;
    }

    .slider {
        border-radius: 0;
    }

    /* About Section - Arrows overlay on mobile */
    .slider-container {
        gap: 0;
        position: relative;
        max-width: 100%;
        padding: 0;
    }

    .slider {
        width: 100%;
    }

    .slider-wrapper {
        padding: 0 1rem;
    }

    .slider-arrow {
        position: absolute;
        width: 40px;
        height: 40px;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);
    }

    .slider-arrow-left {
        left: 1rem;
    }

    .slider-arrow-right {
        right: 1rem;
    }

    .featured-quote-section {
        padding: 1.5rem 1.5rem;
    }

    .quote-mark {
        font-size: 5rem;
        margin-bottom: 0.25rem;
    }

    .featured-quote-text {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .author-name {
        font-size: 1rem;
    }

    .stars {
        font-size: 1.1rem;
    }

    .rating-score {
        font-size: 0.95rem;
    }

    .rooms-section {
        padding: 3rem 1.5rem;
    }

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

    .rooms-left {
        position: static;
    }

    .rooms-title {
        font-size: 1.8rem;
    }

    .rooms-subtitle {
        font-size: 0.85rem;
    }

    .room-menu-item {
        padding: 0.9rem 1rem;
    }

    .room-menu-item span {
        font-size: 0.9rem;
    }

    .room-name {
        font-size: 1.8rem;
    }

    .room-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .room-features li {
        font-size: 0.9rem;
    }

    /* Room Carousel - Arrows overlay on mobile */
    .room-carousel {
        gap: 0;
        position: relative;
    }

    .room-carousel-track {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .room-carousel-arrow {
        position: absolute;
        width: 40px;
        height: 40px;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);
    }

    .room-carousel-arrow.left {
        left: 1rem;
    }

    .room-carousel-arrow.right {
        right: 1rem;
    }

    .property-section {
        padding: 3rem 1.5rem;
    }

    .property-title {
        font-size: 2rem;
    }

    .property-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .property-card {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
    }

    .property-card-content {
        padding: 1.25rem;
    }

    .property-card-title {
        font-size: 1.2rem;
    }

    .property-distance-chip {
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
    }

    .property-card-description {
        font-size: 0.9rem;
    }

    /* Property Carousel - Arrows overlay on mobile */
    .property-carousel-wrapper {
        gap: 0;
        position: relative;
    }

    .property-carousel {
        width: 100%;
    }

    .property-arrow {
        position: absolute;
        width: 40px;
        height: 40px;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);
    }

    .property-arrow-left {
        left: 1rem;
    }

    .property-arrow-right {
        right: 1rem;
    }


    .amenities-section {
        padding: 3rem 1.5rem;
    }

    .amenities-title {
        font-size: 2rem;
    }

    .amenities-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

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

    .amenity-item {
        padding: 1.5rem 0.75rem;
        min-height: 100px;
    }

    .amenity-icon {
        font-size: 2rem;
    }

    .amenity-label {
        font-size: 0.85rem;
    }

    .reviews-section {
        padding: 3rem 1.5rem;
    }

    .reviews-title {
        font-size: 2rem;
    }

    .reviews-subtitle {
        font-size: 0.95rem;
        margin-bottom: 3rem;
    }

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

    .review-divider {
        width: 100%;
        height: 1px;
    }

    .review-score {
        font-size: 1rem;
    }

    .review-stars {
        font-size: 1.1rem;
    }

    .review-quote {
        font-size: 4.5rem;
    }

    .location-section {
        padding: 3rem 1.5rem;
    }

    .location-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .location-title {
        font-size: 2rem;
    }

    .location-subtitle {
        font-size: 0.95rem;
    }

    .location-text p {
        font-size: 1rem;
    }

    .location-text li {
        font-size: 1rem;
    }

    .poland-map {
        max-width: 400px;
    }

    .footer-cta {
        padding: 4rem 1.5rem;
        min-height: 500px;
        background-attachment: scroll;
    }

    .footer-title {
        font-size: 2.5rem;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    .featured-quote-text {
        font-size: 1.25rem;
    }

    .property-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .property-card-content {
        padding: 1.25rem;
    }

    .property-card-title {
        font-size: 1.15rem;
    }

    .property-distance-chip {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }

    .property-card-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-icon {
        font-size: 1.5rem;
    }

    .logo-main {
        font-size: 0.85rem;
    }

    .logo-sub {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-cta-button {
        padding: 0.85rem 1.75rem;
        font-size: 0.9rem;
    }

    .social-icons {
        bottom: 1.5rem;
        right: 1rem;
        gap: 0.5rem;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .about-section {
        padding: 2.5rem 1rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .about-description {
        margin-bottom: 2.5rem;
    }

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

    .slider {
        border-radius: 15px;
    }

    /* About Section - Arrows overlay on mobile */
    .slider-container {
        gap: 0;
        position: relative;
    }

    .slider {
        width: 100%;
    }

    .slider-arrow {
        position: absolute;
        width: 35px;
        height: 35px;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);
    }

    .slider-arrow-left {
        left: 0.75rem;
    }

    .slider-arrow-right {
        right: 0.75rem;
    }

    .featured-quote-section {
        padding: 1.5rem 1rem;
    }

    .quote-mark {
        font-size: 4rem;
        margin-bottom: 0.25rem;
    }

    .featured-quote-text {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }

    .author-name {
        font-size: 0.95rem;
    }

    .testimonial-image {
        width: 50px;
        height: 50px;
    }

    .author-rating {
        gap: 0.5rem;
    }

    .stars {
        font-size: 1rem;
    }

    .rating-score {
        font-size: 0.9rem;
    }

    .rooms-section {
        padding: 2.5rem 1rem;
    }

    .rooms-title {
        font-size: 1.6rem;
    }

    .rooms-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .room-menu-item {
        padding: 0.8rem 1rem;
        margin-bottom: 0.4rem;
    }

    .room-menu-item span {
        font-size: 0.85rem;
    }

    .room-name {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .room-features {
        margin-bottom: 1rem;
    }

    .room-features li {
        font-size: 0.85rem;
    }

    /* Room Carousel - Arrows overlay on mobile */
    .room-carousel {
        gap: 0;
        position: relative;
    }

    .room-carousel-track {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .room-carousel-arrow {
        position: absolute;
        width: 35px;
        height: 35px;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);
    }

    .room-carousel-arrow.left {
        left: 0.75rem;
    }

    .room-carousel-arrow.right {
        right: 0.75rem;
    }

    .room-carousel-arrow svg {
        width: 20px;
        height: 20px;
    }

    .cta-button-secondary {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
        width: 100%;
        max-width: 280px;
    }

    .property-section {
        padding: 2.5rem 1rem;
    }

    .property-title {
        font-size: 1.8rem;
    }

    .property-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    /* Property Carousel - Arrows overlay on mobile */
    .property-carousel-wrapper {
        gap: 0;
        position: relative;
    }

    .property-carousel {
        width: 100%;
    }

    .property-arrow {
        position: absolute;
        width: 35px;
        height: 35px;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);
    }

    .property-arrow-left {
        left: 0.75rem;
    }

    .property-arrow-right {
        right: 0.75rem;
    }

    .amenities-section {
        padding: 2.5rem 1rem;
    }

    .amenities-title {
        font-size: 1.8rem;
    }

    .amenities-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .amenity-item {
        padding: 1.25rem 0.5rem;
        min-height: 90px;
    }

    .amenity-icon {
        margin-bottom: 0.75rem;
        font-size: 1.75rem;
    }

    .amenity-label {
        font-size: 0.8rem;
    }

    .property-label-title {
        font-size: 1rem;
    }

    .property-label-description {
        font-size: 0.85rem;
    }

    .reviews-section {
        padding: 2.5rem 1rem;
    }

    .reviews-title {
        font-size: 1.8rem;
    }

    .reviews-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2.5rem;
    }

    .review-card {
        padding: 1.5rem 1rem;
    }

    .review-rating {
        margin-bottom: 0.75rem;
    }

    .review-score {
        font-size: 0.95rem;
    }

    .review-stars {
        font-size: 1rem;
    }

    .review-quote {
        font-size: 4rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .review-author {
        font-size: 1rem;
    }

    .location-section {
        padding: 2.5rem 1rem;
    }

    .location-container {
        gap: 2.5rem;
    }

    .location-title {
        font-size: 1.8rem;
    }

    .location-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .location-text {
        margin-bottom: 2rem;
    }

    .location-text p {
        font-size: 0.95rem;
    }

    .location-text li {
        font-size: 0.95rem;
    }

    .location-cta-button {
        padding: 0.75rem 2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 100%;
    }

    .poland-map {
        max-width: 350px;
    }

    .city-labels text {
        font-size: 10px;
    }

    .main-location text {
        font-size: 11px;
    }

    .footer-cta {
        padding: 3rem 1rem;
        min-height: 450px;
    }

    .footer-contact-info {
        margin-bottom: 1.5rem;
    }

    .footer-contact-info p {
        font-size: 0.85rem;
    }

    .footer-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .footer-cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
        margin-bottom: 2.5rem;
    }

    .footer-links {
        gap: 1rem 1.5rem;
    }

    .footer-links a {
        font-size: 0.75rem;
    }

    .footer-legal {
        margin-bottom: 1.5rem;
    }

    .footer-legal a {
        font-size: 0.75rem;
    }

    .footer-separator {
        margin: 0 0.75rem;
    }

    .footer-social-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }
}

/* Extra Small Devices (very small phones) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .hero-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .logo-icon {
        font-size: 1.3rem;
    }

    .logo-main {
        font-size: 0.75rem;
    }

    .logo-sub {
        font-size: 0.6rem;
    }

    .cta-button {
        padding: 0.55rem 1.2rem;
        font-size: 0.8rem;
    }

    .about-section {
        padding: 2rem 0.75rem;
    }

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

    .featured-quote-section {
        padding: 1.25rem 0.75rem;
    }

    .quote-mark {
        font-size: 3.5rem;
    }

    .featured-quote-text {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }

    .testimonial-image {
        width: 45px;
        height: 45px;
    }

    .author-name {
        font-size: 0.9rem;
    }

    .stars {
        font-size: 0.95rem;
    }

    .rating-score {
        font-size: 0.85rem;
    }

    .amenities-section {
        padding: 2rem 0.75rem;
    }

    .amenities-title {
        font-size: 1.6rem;
    }

    .amenities-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.75rem;
    }

    .amenities-grid {
        gap: 0.6rem;
    }

    .amenity-item {
        padding: 1rem 0.5rem;
        min-height: 85px;
        border-radius: 10px;
    }

    .amenity-icon {
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }

    .amenity-label {
        font-size: 0.75rem;
    }

    .rooms-title {
        font-size: 1.5rem;
    }

    .rooms-subtitle {
        font-size: 0.75rem;
    }

    .room-menu-item {
        padding: 0.75rem 0.9rem;
    }

    .room-menu-item span {
        font-size: 0.8rem;
    }

    .room-name {
        font-size: 1.5rem;
    }

    .room-features li {
        font-size: 0.8rem;
    }

    .room-carousel-track {
        border-radius: 12px;
    }

    .property-title {
        font-size: 1.6rem;
    }

    .property-subtitle {
        font-size: 0.85rem;
    }

    .property-label-title {
        font-size: 0.95rem;
    }

    .property-label-description {
        font-size: 0.8rem;
    }

    .reviews-title {
        font-size: 1.6rem;
    }

    .reviews-subtitle {
        font-size: 0.85rem;
    }

    .review-score {
        font-size: 0.9rem;
    }

    .review-stars {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .review-quote {
        font-size: 3.5rem;
    }

    .review-text {
        font-size: 0.95rem;
    }

    .review-author {
        font-size: 0.95rem;
    }

    .location-title {
        font-size: 1.6rem;
    }

    .location-subtitle {
        font-size: 0.85rem;
    }

    .location-text p {
        font-size: 0.9rem;
    }

    .location-text li {
        font-size: 0.9rem;
    }

    .location-cta-button {
        font-size: 0.8rem;
    }

    .poland-map {
        max-width: 300px;
    }

    .city-labels text {
        font-size: 9px;
    }

    .main-location text {
        font-size: 10px;
    }
}
