/* Global Styles */
:root {
    --primary-dark: #1a1a1a;
    --primary-green: #556b2f;
    --accent-gold: #d4af37;
    --text-light: #f5f5f5;
    --text-gray: #cccccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--text-light);
    background-color: var(--primary-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

p, span, a, li, label, input, select, textarea {
    font-family: 'Poppins', sans-serif;
}

/* Header Styles */
.navbar {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold) !important;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-gold) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-book {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    padding: 0.6rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background-color: #c19a1f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.navbar-toggler {
    border: none;
    color: var(--text-light);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-image: url('media/poster 1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-mobile {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(85, 107, 47, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 100px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.booking-widget {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.booking-widget label {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.booking-widget .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 0.75rem;
}

.booking-widget .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.btn-search {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background-color: #c19a1f;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 1s ease-out;
}

.animate-fade-in-left-delay {
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.animate-fade-in-right {
    animation: fadeInRight 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out 0.5s both;
}

.animate-scale-in {
    animation: scaleIn 0.8s ease-out;
}

.animate-scale-in-delay {
    animation: scaleIn 0.8s ease-out 0.2s both;
}

.animate-scale-in-delay-2 {
    animation: scaleIn 0.8s ease-out 0.4s both;
}

.animate-fade-in-up {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-up-delay {
    animation: fadeIn 1s ease-out 0.2s both;
}

.animate-fade-in-up-delay-2 {
    animation: fadeIn 1s ease-out 0.4s both;
}

.animate-fade-in-up-delay-3 {
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Scroll Animation Classes */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Luxury Section */
.luxury-section {
    background-color: var(--primary-dark);
    padding: 5rem 0;
    position: relative;
    z-index: 0;
    overflow: visible;
}

.luxury-section .container {
    position: relative;
    z-index: 1;
}

.image-stack {
    position: relative;
    height: 600px;
    z-index: 1;
}

.stack-image {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.stack-image:hover {
    transform: scale(1.05);
    z-index: 10;
}

.stack-image-1 {
    top: 0;
    left: 0;
    width: 80%;
    z-index: 2;
}

.stack-image-2 {
    bottom: 0;
    right: 0;
    width: 70%;
    z-index: 1;
}

.stack-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stack-image:hover img {
    transform: scale(1.1);
}

.section-content {
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.section-label {
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 1rem 0;
    line-height: 1.2;
}

.section-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-read-more {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-read-more:hover {
    color: #c19a1f;
    transform: translateX(5px);
}

.separator {
    margin-left: 10px;
    color: var(--text-gray);
}

.full-width-image {
    margin-top: 4rem;
    margin-bottom: 0;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
}

.full-width-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.full-width-image:hover img {
    transform: scale(1.1);
}

/* Apartment Types Section */
.apartment-types-section {
    background-color: var(--primary-dark);
    padding: 5rem 0;
    position: relative;
    z-index: 0;
    margin-top: 0;
}

.apartment-types-section .container {
    position: relative;
    z-index: 1;
}

.apartment-types-section .row {
    position: relative;
    z-index: 1;
    margin: 0;
}

.apartment-types-section .row > div {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    isolation: isolate;
}

.apartment-types-section .row > div:not(:last-child) {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .apartment-types-section .row > div {
        margin-bottom: 0;
    }
    
    .apartment-types-section .row > div:not(:last-child) {
        margin-bottom: 0;
    }
}

.section-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.apartment-card {
    position: relative;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1;
    will-change: transform;
    margin-bottom: 2rem;
}

.apartment-card:hover {
    transform: translateY(-10px);
    z-index: 5;
}

.card-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.3s ease;
    opacity: 0;
    animation: fadeInImage 0.5s ease forwards;
    display: block;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

.apartment-card:hover .card-image img {
    transform: scale(1.15);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 50%);
    transition: background 0.3s ease;
}

.apartment-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 50%);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
}

.card-content h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin: 0;
}

/* Cuisine Section */
.cuisine-section {
    background-color: var(--primary-dark);
}

.cuisine-image {
    height: 100%;
    min-height: 700px;
    overflow: hidden;
}

.cuisine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.cuisine-image:hover img {
    transform: scale(1.1);
}

.cuisine-content {
    background-color: var(--primary-green);
    padding: 4rem;
    height: 100%;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cuisine-image-small {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.cuisine-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cuisine-image-small:hover img {
    transform: scale(1.1);
}

/* Amenities Section */
.amenities-section {
    background-color: var(--primary-dark);
    padding: 5rem 0;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-image {
    width: 100%;
    height: 100%;
    min-height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-label {
    color: var(--accent-gold);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Guest Experience Section */
.guest-experience-section {
    background-color: var(--primary-dark);
}

.experience-image {
    position: relative;
    height: 100%;
    min-height: 700px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.experience-image:hover img {
    transform: scale(1.1);
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 3rem;
}

.experience-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    max-width: 600px;
}

.testimonial-content {
    background-color: var(--primary-green);
    padding: 4rem;
    height: 100%;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-gold);
    padding-left: 2rem;
}

.testimonial-author {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent-gold);
    width: 30px;
    border-radius: 6px;
}

/* City Section */
.city-section {
    background-color: var(--primary-dark);
    padding: 5rem 0;
}

.city-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.city-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.city-image {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
}

.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.city-card:hover .city-image img {
    transform: scale(1.2);
}

.city-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8) 0%, transparent 50%);
}

.city-content {
    padding: 2rem;
}

.city-label {
    color: var(--accent-gold);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.city-content h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.city-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-dark);
}

.contact-card {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.contact-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.contact-card:hover img {
    transform: scale(1.1);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(85, 107, 47, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.contact-content {
    text-align: center;
}

.contact-label {
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.contact-content h3 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-info {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info i {
    color: var(--accent-gold);
}

/* Footer */
.footer-section {
    background-color: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-section h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 400;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 0.75rem 1rem;
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.newsletter-form .form-control::placeholder {
    color: var(--text-gray);
}

.btn-subscribe {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #c19a1f;
    transform: translateY(-2px);
}

.form-check-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-bottom {
    color: var(--text-gray);
}

.social-icon {
    color: var(--text-light);
    font-size: 1.3rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Page Header Styles */
.page-header {
    position: relative;
    height: 400px;
    margin-top: 80px;
    overflow: hidden;
}

.page-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(85, 107, 47, 0.6) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
}

/* Page Content Section */
.page-content-section {
    background-color: var(--primary-dark);
    padding: 5rem 0;
}

.content-image {
    border-radius: 10px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.content-image:hover img {
    transform: scale(1.05);
}

.feature-box {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

/* Room Detail Card */
.room-detail-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.room-detail-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.room-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-detail-card:hover .room-image img {
    transform: scale(1.1);
}

.room-content {
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-label {
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.room-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.room-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.room-features p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.room-price {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.price-amount {
    color: var(--accent-gold);
    font-size: 2rem;
    font-weight: 700;
}

/* Gallery Styles */
.gallery-filter {
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.6rem 2rem;
    margin: 0 0.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.gallery-card {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--text-light);
    margin: 0;
}

/* Contact Form Styles */
.contact-form-card,
.contact-info-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 10px;
}

.contact-form .form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 0.75rem;
}

.contact-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.contact-form textarea.form-control {
    resize: vertical;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.contact-details h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.social-media-section {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-large {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    text-align: center;
    line-height: 50px;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-icon-large:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-feature-box {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-feature-box:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.service-feature-box h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-feature-box p {
    color: var(--text-gray);
}

/* Tablet Responsive (768px - 992px) */
@media (min-width: 768px) and (max-width: 992px) {
    .apartment-card {
        height: 500px;
        margin-bottom: 2rem;
        z-index: 1;
        position: relative;
    }
    
    .apartment-card:hover {
        z-index: 2;
    }
    
    .apartment-types-section .row > div {
        margin-bottom: 2rem;
    }
    
    .booking-widget .row > div {
        margin-bottom: 1rem;
    }
    
    .section-heading {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .image-stack {
        height: 450px;
    }
    
    .cuisine-image,
    .cuisine-content {
        min-height: 600px;
    }
    
    .experience-image,
    .testimonial-content {
        min-height: 600px;
    }
    
    .contact-card {
        height: 500px;
    }
    
    /* Ensure images are full width on tablet */
    .card-image img,
    .stack-image img,
    .cuisine-image img,
    .service-image img,
    .city-image img,
    .contact-card img,
    .room-image img,
    .content-image img,
    .full-width-image img {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .experience-title {
        font-size: 2rem;
    }
    
    .cuisine-content,
    .testimonial-content {
        padding: 2rem;
        min-height: auto;
    }
    
    .image-stack {
        height: 400px;
        margin-bottom: 2rem;
    }
    
    .apartment-card {
        height: 500px;
        margin-bottom: 2rem;
        z-index: 1;
    }
    
    .apartment-card:hover {
        z-index: 2;
    }
    
    .booking-widget .row > div {
        margin-bottom: 1rem;
    }
    
    .booking-widget {
        padding: 1.5rem;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }
    
    .luxury-section {
        padding: 3rem 0;
    }
    
    .apartment-types-section {
        padding: 3rem 0;
    }
    
    .apartment-types-section .row > div {
        margin-bottom: 2rem;
    }
    
    .cuisine-image,
    .cuisine-content {
        min-height: 500px;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .contact-card {
        height: 500px;
        margin-bottom: 2rem;
    }
    
    /* Ensure images are full width on tablet */
    .card-image img,
    .stack-image img,
    .cuisine-image img,
    .service-image img,
    .city-image img,
    .contact-card img,
    .room-image img {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .content-image img,
    .full-width-image img {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    /* Mobile Hero Layout - Image on top, content below */
    .hero-section {
        height: auto;
        min-height: 100vh;
        background-image: none;
        background-attachment: scroll;
        flex-direction: column;
        padding-top: 80px;
    }
    
    .hero-image-mobile {
        display: block;
        width: 100%;
        height: 50vh;
        min-height: 300px;
        background-image: url('media/poster 1.webp');
        background-size: cover;
        background-position: center;
        position: relative;
    }
    
    .hero-overlay {
        display: none;
    }
    
    .hero-content {
        width: 100%;
        padding: 2rem 1rem;
        background-color: var(--primary-dark);
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        color: var(--text-light);
    }
    
    .booking-widget {
        background-color: rgba(26, 26, 26, 0.95);
        padding: 1.5rem;
    }
    
    .booking-widget .row > div {
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .apartment-card {
        height: 400px;
        margin-bottom: 2rem;
        z-index: 1;
        position: relative;
    }
    
    .apartment-card:hover {
        z-index: 2;
        transform: translateY(-5px);
    }
    
    .contact-card {
        height: 400px;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .room-content {
        padding: 2rem;
    }
    
    .room-title {
        font-size: 2rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 2rem;
    }
    
    .gallery-card {
        height: 250px;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        margin: 0.25rem;
        font-size: 0.9rem;
    }
    
    .page-header {
        height: 300px;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .booking-widget .row {
        flex-direction: column;
    }
    
    .booking-widget .row > div {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .image-stack {
        height: 300px;
    }
    
    .stack-image-1,
    .stack-image-2 {
        width: 100% !important;
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        margin-bottom: 1rem;
    }
    
    .luxury-section .row {
        flex-direction: column;
    }
    
    .luxury-section .ps-lg-5 {
        padding-left: 0 !important;
        margin-top: 2rem;
    }
    
    .cuisine-section .row {
        flex-direction: column;
    }
    
    .cuisine-image,
    .cuisine-content {
        min-height: 400px;
    }
    
    .guest-experience-section .row {
        flex-direction: column;
    }
    
    .experience-image,
    .testimonial-content {
        min-height: 400px;
    }
    
    .contact-section .row {
        flex-direction: column;
    }
    
    .service-card .row {
        display: flex !important;
        flex-direction: column;
    }
    
    .service-card .row > div {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    .service-card .row .col-5 {
        order: 2;
        width: 100% !important;
    }
    
    .service-card .row .col-7 {
        order: 1;
        width: 100% !important;
    }
    
    .service-image {
        min-height: 250px;
        width: 100% !important;
    }
    
    .service-image img {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .city-card {
        margin-bottom: 2rem;
    }
    
    .room-detail-card .row {
        flex-direction: column;
    }
    
    .room-image {
        min-height: 300px;
    }
    
    /* Ensure all images are full width on mobile */
    .card-image,
    .card-image img,
    .stack-image,
    .stack-image img,
    .cuisine-image,
    .cuisine-image img,
    .service-image,
    .service-image img,
    .city-image,
    .city-image img,
    .contact-card,
    .contact-card img,
    .room-image,
    .room-image img,
    .content-image,
    .content-image img,
    .full-width-image,
    .full-width-image img,
    .experience-image,
    .experience-image img,
    .gallery-card,
    .gallery-card img {
        width: 100% !important;
        max-width: 100% !important;
        display: block;
    }
    
    .apartment-types-section .row > div {
        width: 100%;
        margin-bottom: 2rem;
        padding-left: 0;
        padding-right: 0;
    }
    
    .apartment-types-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* New Styles for Events & Functions Content */
.section-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.section-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.party-type-box {
    background: rgba(212, 175, 55, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.party-type-box:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.party-type-box h4 {
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.party-type-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.event-type-card {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
}

.event-type-card:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.event-type-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.event-type-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.gallery-stat-box {
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.gallery-stat-box:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.gallery-stat-box h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.gallery-stat-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.events-inquiry-box {
    border-radius: 8px;
}

.events-inquiry-box h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.events-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.events-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.event-section-header {
    margin-bottom: 3rem;
}

.event-section-header .section-title {
    margin-bottom: 1rem;
}

.wedding-section,
.parties-section {
    background: rgba(26, 26, 26, 0.5);
    padding: 4rem 0;
}

.service-feature-box {
    background: rgba(212, 175, 55, 0.05);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
}

.service-feature-box:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.service-feature-box h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.service-feature-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.gallery-intro {
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .party-type-box,
    .event-type-card,
    .gallery-stat-box {
        margin-bottom: 1.5rem;
    }
    
    .wedding-section,
    .parties-section {
        padding: 2rem 0;
    }
    
    .service-feature-box {
        margin-bottom: 1.5rem;
    }
    
    .gallery-intro {
        padding: 1.5rem;
    }
}

/* Form Alert Messages */
#formMessage {
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    animation: fadeIn 0.3s ease;
}

#formMessage.alert-success {
    background-color: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #4ade80;
}

#formMessage.alert-danger {
    background-color: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #f87171;
}

#formMessage i {
    margin-right: 0.5rem;
}

/* Button Loading State */
.btn-spinner {
    display: inline-block;
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Helper Text */
.form-text {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
    display: block;
}

/* Phone Input Styling */
#phone:invalid:not(:placeholder-shown) {
    border-color: rgba(220, 53, 69, 0.5);
}

#phone:valid:not(:placeholder-shown) {
    border-color: rgba(40, 167, 69, 0.5);
}

/* Search Results Banner Styles */
.search-results-section {
    background-color: rgba(26, 26, 26, 0.95);
    border-bottom: 2px solid var(--accent-gold);
}

.search-results-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
}

.search-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.search-detail-item {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.search-detail-item i {
    color: var(--accent-gold);
}

.search-detail-item strong {
    margin-right: 5px;
    color: var(--accent-gold);
}

.btn-search-modify {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-search-modify:hover {
    background-color: #c19a1f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .search-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-detail-item {
        font-size: 0.85rem;
    }
    
    .btn-search-modify {
        width: 100%;
        margin-top: 15px;
    }
}

