/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a2e;
    --secondary: rgb(20, 131, 150);
    --accent: rgb(20, 131, 150);
    --light: #f5f5f5;
    --dark: #0f0f1a;
    --text: #333;
    --text-light: #666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--secondary);
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(20, 131, 150, 0.3);
    border-top: 3px solid var(--secondary);
    border-radius: 50%;
    margin: 20px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    display: none;
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--secondary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    display: none;
}

@media (min-width: 1024px) {

    .cursor,
    .cursor-dot {
        display: block;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    padding: 15px 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-btn {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 12px 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.5s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    /* transition removed for performance */
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* animation removed for performance */
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.8), rgba(26, 26, 46, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-title span {
    color: var(--secondary);
    display: block;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 1.1s forwards;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 1.4s forwards;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
    padding: 18px 45px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: transparent;
    color: var(--secondary);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 18px 45px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--primary);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.scroll-indicator a:hover {
    color: var(--secondary);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

/* Section Styles */
section {
    padding: 120px 50px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--secondary);
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--light);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.1);
}

.about-img-1 {
    width: 350px;
    height: 450px;
    top: 0;
    left: 0;
}

.about-img-2 {
    width: 300px;
    height: 380px;
    bottom: 0;
    right: 0;
    border: 10px solid #fff;
}

.about-experience {
    position: absolute;
    bottom: 100px;
    left: 280px;
    background: var(--secondary);
    padding: 30px 40px;
    text-align: center;
    border-radius: 10px;
    z-index: 5;
}

.about-experience h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary);
}

.about-experience p {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature i {
    width: 50px;
    height: 50px;
    background: rgba(20, 131, 150, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
}

.about-feature span {
    font-weight: 600;
    color: var(--primary);
}

/* Rooms Section */
.rooms {
    background: #fff;
}

.rooms-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.room-image {
    height: 300px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--primary);
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
}

.room-content {
    padding: 30px;
    background: #fff;
}

.room-type {
    font-size: 0.85rem;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.room-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.room-amenities {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.room-amenity {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.room-amenity i {
    color: var(--secondary);
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
}

.room-price span {
    font-size: 0.9rem;
    font-family: 'Raleway', sans-serif;
    color: var(--text-light);
}

.room-btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.room-btn:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* Amenities Section */
.amenities {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.amenities::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(20, 131, 150, 0.05);
    border-radius: 50%;
}

.amenities .section-subtitle {
    color: var(--secondary);
}

.amenities .section-title {
    color: #fff;
}

.amenities-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.amenity-card {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 131, 150, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.amenity-card:hover::before {
    opacity: 1;
}

.amenity-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    background: rgba(20, 131, 150, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.amenity-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.amenity-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.amenity-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Gallery Section */
.gallery {
    background: #fff;
    padding: 120px 0;
}

.gallery .section-header {
    padding: 0 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9), transparent);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
    background: var(--light);
    position: relative;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 60px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary);
}

.testimonial-info p {
    color: var(--secondary);
    font-size: 0.9rem;
}

.testimonial-stars {
    color: var(--secondary);
    margin-top: 5px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--secondary);
    width: 40px;
    border-radius: 6px;
}

/* Booking Section */
.booking {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.booking-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.booking-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.booking-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.booking-feature i {
    width: 50px;
    height: 50px;
    background: rgba(20, 131, 150, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.3rem;
}

.booking-feature span {
    color: #fff;
    font-weight: 500;
}

.booking-form {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.booking-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-submit {
    width: 100%;
    background: var(--secondary);
    color: var(--primary);
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--primary);
    color: #fff;
}

/* Location Section */
.location {
    padding: 0;
    position: relative;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.location-map {
    height: 500px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    background: var(--primary);
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
}

.location-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.location-item i {
    width: 50px;
    height: 50px;
    background: rgba(20, 131, 150, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.location-item h4 {
    color: var(--secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.location-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 100px 50px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo span {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-5px);
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 20px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 5px;
}

.footer-contact-item p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-5px);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Styles */

/* Large Desktops and Below */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }

    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .about-container {
        gap: 60px;
    }
}

/* Tablets and Below */
@media (max-width: 992px) {

    .nav-links,
    .nav-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 80px 30px;
    }

    .navbar {
        padding: 15px 30px;
    }

    .navbar.scrolled {
        padding: 12px 30px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images {
        height: 450px;
    }

    .booking-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .location-container {
        grid-template-columns: 1fr;
    }

    .location-map {
        height: 400px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
    }

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .section-header {
        margin-bottom: 60px;
    }
}

/* Mobile Landscape and Below */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .navbar.scrolled {
        padding: 12px 20px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 35px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    section {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .room-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .room-amenities {
        flex-wrap: wrap;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .amenity-card {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 30px 20px;
    }

    .booking-content h2 {
        font-size: 2.2rem;
    }

    .booking-content p {
        font-size: 1rem;
    }

    .booking-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-info {
        padding: 50px 25px;
    }

    .location-info h2 {
        font-size: 2rem;
    }

    .footer {
        padding: 80px 20px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }

    .about-img-1 {
        width: 100%;
        height: 350px;
        position: relative;
    }

    .about-img-2 {
        display: none;
    }

    .about-experience {
        bottom: 20px;
        left: 20px;
        padding: 25px 30px;
    }

    .about-experience h3 {
        font-size: 2.5rem;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 1.05rem;
    }

    .testimonial-quote {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 250px);
    }

    .gallery-item:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .navbar {
        padding: 12px 15px;
    }

    .navbar.scrolled {
        padding: 10px 15px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    section {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-experience {
        padding: 20px 25px;
    }

    .about-experience h3 {
        font-size: 2rem;
    }

    .about-experience p {
        font-size: 0.8rem;
    }

    .room-content {
        padding: 25px 20px;
    }

    .room-name {
        font-size: 1.4rem;
    }

    .room-amenities {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .amenity-card h3 {
        font-size: 1.2rem;
    }

    .amenity-icon {
        width: 60px;
        height: 60px;
    }

    .amenity-icon i {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-rows: repeat(5, 200px);
    }

    .testimonial-card {
        padding: 25px 15px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-quote {
        font-size: 2.5rem;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-info h4 {
        font-size: 1.1rem;
    }

    .booking-form {
        padding: 25px 15px;
    }

    .booking-form h3 {
        font-size: 1.5rem;
    }

    .booking-content h2 {
        font-size: 1.8rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input,
    .form-group select {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .form-submit {
        padding: 15px;
        font-size: 0.9rem;
    }

    .location-info {
        padding: 40px 20px;
    }

    .location-info h2 {
        font-size: 1.8rem;
    }

    .location-item {
        gap: 15px;
    }

    .location-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer {
        padding: 60px 15px 25px;
    }

    .footer-logo {
        font-size: 1.6rem;
    }

    .footer-column h4 {
        font-size: 1.2rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }



    .whatsapp-button,
    .call-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button img,
    .call-button img {
        width: 25px;
        height: 25px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .about-content h2,
    .booking-content h2,
    .location-info h2 {
        font-size: 1.6rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 0.75rem;
    }

    section {
        padding: 40px 12px;
    }

    .gallery-grid {
        grid-template-rows: repeat(5, 180px);
    }
}


/* Navbar Base Styles */




.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}


.nav-links a:hover {
    color: #e63946;
}

.book-btn {
    background-color: #e63946;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
}

.book-btn:hover {
    background-color: #c62828;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-book {
    display: none;
}

/* ========== MOBILE STYLES ========== */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .desktop-only {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-book {
        display: block;
    }

    .mobile-book a {
        background-color: #e63946;
        color: white !important;
        padding: 12px 30px;
        border-radius: 8px;
    }
}

/* Hamburger Animation When Active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* Desktop Book Button */
.desktop-only {
    display: block;
}

/* Mobile Nav Right (Book + Hamburger) */
.mobile-nav-right {
    display: none;
    align-items: center;
    gap: 15px;
}

/* Mobile Book Button */
.nav-btn-mobile {
    background: var(--secondary);
    color: var(--primary);
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-btn-mobile:hover {
    background: rgb(20, 131, 150);
    color: var(--primary);
}

/* Mobile Styles */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .desktop-only {
        display: none;
    }

    .mobile-nav-right {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* Smaller Mobile */
@media (max-width: 480px) {
    .nav-btn-mobile {
        padding: 8px 15px;
        font-size: 0.7rem;
    }
}


.floating-buttons {
    position: fixed;
    bottom: 100px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10002;
    align-items: center;
}

.whatsapp-button,
.call-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-button {
    background-color: #25D366;
}

.call-button {
    background-color: #007BFF;
}

.whatsapp-button:hover,
.call-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img,
.call-button img {
    width: 30px;
    height: 30px;
}

/* Mobile Floating Buttons Override */
@media (max-width: 480px) {
    .floating-buttons {
        bottom: 90px;
        right: 20px;
        gap: 12px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 2147483647 !important;
        /* Max z-index */
    }

    .whatsapp-button,
    .call-button {
        display: flex !important;
        width: 50px !important;
        height: 50px !important;
    }
}

/* Prevent horizontal overflow on mobile */
@media (max-width: 768px) {

    html,
    body {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* Force ALL elements to respect viewport width */
    * {
        max-width: 100vw !important;
    }

    /* Specific fixes for problematic elements */
    .preloader {
        max-width: 100vw !important;
        width: 100vw !important;
    }

    .location-map,
    .location-map iframe {
        max-width: 100vw !important;
        width: 100% !important;
    }

    .hero-slider,
    .slide,
    .slide img {
        max-width: 100vw !important;
        width: 100% !important;
    }

    .testimonial-card {
        max-width: 100% !important;
        width: 100% !important;
        padding: 30px 15px !important;
    }

    .about-content,
    .about-container,
    .rooms-grid,
    .amenities-grid,
    .gallery-grid {
        max-width: 100% !important;
        width: 100% !important;
    }

    img,
    video,
    iframe {
        max-width: 100% !important;
    }
}


/* Room Section private apartment  */

/* ========================================
   PRIVATE APARTMENT SECTION STYLES
   ======================================== */

.private-apartment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 50px;
    position: relative;
}

.private-apartment-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.private-apartment-section .section-header .icon {
    color: var(--secondary);
    margin-right: 10px;
}

.private-apartment-section .elegant-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.private-apartment-section .elegant-divider .line {
    width: 80px;
    height: 1px;
    background: var(--secondary);
}

.private-apartment-section .elegant-divider .diamond {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    transform: rotate(45deg);
}

.private-apartment-section .content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Booking.com Style Gallery Grid */
.private-apartment-section .apartment-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 8px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.private-apartment-section .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.private-apartment-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.private-apartment-section .gallery-item:hover img {
    transform: scale(1.05);
}

/* Main item spans 2 cols, 2 rows (Left Half) */
.private-apartment-section .main-item {
    grid-column: span 2;
    grid-row: span 2;
}

.private-apartment-section .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.private-apartment-section .view-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.private-apartment-section .gallery-item:hover .overlay {
    opacity: 1;
}

.private-apartment-section .gallery-item:hover .view-tag {
    transform: translateY(0);
}

/* Count Overlay specific (Always visible on last item) */
.private-apartment-section .count-overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
}

.private-apartment-section .count-overlay span {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    border-bottom: 2px solid white;
    padding-bottom: 2px;
}

.private-apartment-section .count-overlay:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Side Panel */
.private-apartment-section .side-panel {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Thumbnail Gallery Styles Removed */

/* Quick Info Card */
.private-apartment-section .quick-info-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.private-apartment-section .quick-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.private-apartment-section .quick-info-header i {
    color: var(--secondary);
    font-size: 1.3rem;
}

.private-apartment-section .quick-info-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary);
}

.private-apartment-section .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.private-apartment-section .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}

.private-apartment-section .info-item i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.private-apartment-section .price-display {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.private-apartment-section .price-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.private-apartment-section .price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.private-apartment-section .price-amount span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

/* Apartment Features */
.private-apartment-section .apartment-features {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

.private-apartment-section .feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.private-apartment-section .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.private-apartment-section .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.private-apartment-section .feature-card:hover .feature-icon {
    transform: rotate(360deg);
}

.private-apartment-section .feature-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.private-apartment-section .feature-card p {
    font-size: 0.85rem;
    color: #666;
}

/* CTA Section */
.private-apartment-section .cta-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, #2a2a3e 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.private-apartment-section .cta-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.private-apartment-section .cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.private-apartment-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.private-apartment-section .cta-btn {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.private-apartment-section .cta-btn.primary {
    background: var(--secondary);
    color: var(--primary);
}

.private-apartment-section .cta-btn.primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(20, 131, 150, 0.4);
}

.private-apartment-section .cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.private-apartment-section .cta-btn.secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablets and Below */
@media (max-width: 1200px) {
    .private-apartment-section .apartment-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .private-apartment-section {
        padding: 80px 30px;
    }

    .private-apartment-section .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .private-apartment-section .slider-container {
        height: 500px;
    }

    .private-apartment-section .apartment-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .private-apartment-section .cta-content h3 {
        font-size: 2rem;
    }
}

/* Mobile Landscape and Below */
@media (max-width: 768px) {
    .private-apartment-section {
        padding: 60px 20px;
    }

    .private-apartment-section .slider-container {
        height: 400px;
    }

    .private-apartment-section .slide-caption {
        bottom: 20px;
        left: 20px;
    }

    .private-apartment-section .slide-caption h3 {
        font-size: 1.5rem;
    }

    .private-apartment-section .slider-btn {
        width: 40px;
        height: 40px;
    }

    .private-apartment-section .slider-btn.prev {
        left: 10px;
    }

    .private-apartment-section .slider-btn.next {
        right: 10px;
    }

    .private-apartment-section .apartment-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .private-apartment-section .cta-container {
        padding: 40px 25px;
    }

    .private-apartment-section .cta-content h3 {
        font-size: 1.8rem;
    }

    .private-apartment-section .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .private-apartment-section .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .private-apartment-section .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .private-apartment-section {
        padding: 50px 15px;
    }

    .private-apartment-section .slider-container {
        height: 350px;
    }

    .private-apartment-section .slide-caption h3 {
        font-size: 1.3rem;
    }

    .private-apartment-section .slide-caption p {
        font-size: 0.85rem;
    }

    .private-apartment-section .cta-content h3 {
        font-size: 1.5rem;
    }

    .private-apartment-section .cta-content p {
        font-size: 0.95rem;
    }

    .private-apartment-section .cta-btn {
        padding: 15px 30px;
        font-size: 0.9rem;
    }

    .private-apartment-section .thumbnail-container {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   LIGHTBOX STYLES
   ======================================== */

.lightbox-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 24px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    color: white;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
}

@media (max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
        background: rgba(0, 0, 0, 0.5);
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-content img {
        max-width: 95%;
    }
}