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

:root {
    --primary-color: #222b4c;
    --secondary-color: #F2295B;
    --accent-color: #6CFFD0;
    --text-dark: #333;
    --text-light: #666;
    --text-white: #fff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --transition-color: color 0.3s ease;
    --transition-transform: transform 0.3s ease;
    --transition-opacity: opacity 0.3s ease;
    --transition-shadow: box-shadow 0.3s ease;
    --transition-base: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 70px; /* Account for fixed navbar */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent text size adjustment on iOS */
* {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Improve touch scrolling on mobile */
@media (max-width: 768px) {
    html {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better tap highlight */
    a, button, input, select, textarea {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    /* Prevent pull-to-refresh on overscroll */
    body {
        overscroll-behavior-y: contain;
    }
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* Performance Optimizations - Fade-in Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Performance Optimizations - Image Loading */
.img-loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.img-loaded {
    opacity: 1;
}

.img-error {
    opacity: 1;
    background: var(--bg-light);
}

/* Performance Optimizations - Hardware Acceleration */
/* Apply backface-visibility only to animated elements */
.navbar,
.scroll-to-top,
.rooms-carousel,
.studio-image-item img,
.event-image img,
.room-card-carousel,
.room-card-listing,
.testimonial-speech-bubble,
.news-card,
.instagram-post,
.collage-item img,
.entertainment-featured-image img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Navigation */
.navbar {
    background: var(--primary-color);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
    will-change: transform;
    transform: translateY(0) translateZ(0);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 968px) {
    .nav-wrapper {
        gap: 0.5rem;
    }
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
        max-width: 130px;
    }
}

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

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-color);
    list-style: none;
    min-width: 200px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow-hover);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0.5rem 1.5rem;
}

.dropdown-menu a {
    display: block;
}

.btn-apply {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
}

.btn-apply:hover {
    background: #d01f4a;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-apply:active {
    transform: translateY(0);
}

@media (max-width: 968px) {
    .btn-apply {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
        min-height: 36px;
    }
}

@media (max-width: 480px) {
    .btn-apply {
        padding: 0.45rem 0.75rem;
        font-size: 0.75rem;
        min-height: 32px;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(135deg, rgba(34, 43, 76, 0.4), rgba(26, 31, 58, 0.5)), url('/images/Website Assets/Website Banner_3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Changed from fixed to scroll for better performance and bandwidth usage */
    color: var(--text-white);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        background-attachment: scroll; /* Better performance on mobile */
    }
}

.hero-banner {
    background: linear-gradient(135deg, #1a1f3a 0%, var(--primary-color) 50%, #1a1f3a 100%);
    padding: 3rem 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(242, 41, 91, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(108, 255, 208, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 41, 91, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.banner-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-card-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.banner-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d01f4a 100%);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(242, 41, 91, 0.3);
}

.badge-icon-new {
    font-size: 1.1rem;
    animation: sparkle 2s ease-in-out infinite;
}

.badge-text-new {
    color: var(--text-white);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

.banner-title-new {
    color: var(--primary-color);
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

.banner-description-new {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.banner-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

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

.banner-card-right {
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 2px solid rgba(34, 43, 76, 0.1);
    padding-left: 3rem;
}

.banner-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    width: 100%;
}

.banner-cta-label {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-button-new {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2b5c 100%);
    color: var(--text-white);
    padding: 1.125rem 2.5rem;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(34, 43, 76, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    width: 100%;
    justify-content: center;
}

.banner-button-new:focus {
    outline: none;
    box-shadow: 0 8px 25px rgba(34, 43, 76, 0.3), 0 0 0 3px rgba(34, 43, 76, 0.2);
}

.banner-button-new:hover {
    background: linear-gradient(135deg, #1a2b5c 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(34, 43, 76, 0.4);
}

.banner-button-new .button-icon {
    transition: transform 0.3s ease;
}

.banner-button-new:hover .button-icon {
    transform: translateY(-2px);
}

.banner-link-new {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.banner-link-new:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
    gap: 0.75rem;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: left;
    max-width: 700px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    font-weight: 300;
    font-size: 0.6em;
    color: #ffffff;
    opacity: 0.95;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.title-highlight {
    display: block;
    color: #ffffff;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    max-width: 600px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #d01f4a;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Room Search Section */
.room-search {
    background: var(--bg-light);
    padding: 3rem 0;
}

.search-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.filter-select {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    background: var(--bg-white);
    transition: var(--transition);
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-search {
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-search:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 2.5rem 0;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.section-header-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* New Studios Section */
.new-studios-section {
    background: var(--bg-white);
    padding: 0;
    width: 100%;
}

.studios-banner {
    background: var(--bg-white);
    padding: 4rem 0;
    width: 100%;
}

.studios-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

.studios-banner-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.studios-badge {
    display: inline-block;
    background: var(--secondary-color);
    padding: 0.5rem 1rem;
    width: fit-content;
}

.studios-badge-text {
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.studios-section-title {
    color: var(--primary-color);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.studios-banner-title {
    color: var(--primary-color);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.studios-banner-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
}

.studios-banner-divider {
    width: 1px;
    height: 100px;
    background: var(--border-color);
    flex-shrink: 0;
}

.studios-banner-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    flex-shrink: 0;
    min-width: 250px;
}

.pricing-label {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0.2rem;
    line-height: 1;
}

.currency {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.price {
    color: var(--primary-color);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.period {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    margin-left: 0.3rem;
}

.new-studios-section .section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.studios-gallery-wrapper {
    position: relative;
    width: 100%;
    margin: 0;
}

.studios-gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
    width: 100%;
    min-height: 600px;
}

.studio-image-item {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.studio-image-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
    background: #f5f5f5;
    will-change: transform;
    transform: translateZ(0);
}

.studio-image-item:hover img {
    transform: scale(1.03) translateZ(0);
}

.studio-image-main {
    grid-column: 1;
    grid-row: 1;
    height: 600px;
}

.studio-images-grid {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 0;
    grid-column: 2;
    grid-row: 1;
    height: 600px;
}

.studio-image-secondary {
    height: 100%;
    min-height: 0;
}

/* Responsive Design for Studios Gallery */
@media (max-width: 768px) {
    .studios-banner {
        padding: 2.5rem 0;
    }
    
    .studios-banner-content {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .studios-banner-header {
        width: 100%;
    }
    
    .studios-banner-divider {
        width: 100%;
        height: 1px;
        background: var(--border-color);
    }
    
    .studios-banner-pricing {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }
    
    .pricing-amount {
        justify-content: flex-start;
    }
    
    .price {
        font-size: 2.8rem;
    }
    
    .currency {
        font-size: 1.5rem;
    }
    
    .studios-gallery {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .studio-image-main {
        grid-column: 1;
        grid-row: 1;
        height: 400px;
    }
    
    .studio-images-grid {
        grid-column: 1;
        grid-row: 2;
        height: auto;
        grid-template-rows: repeat(3, 200px);
    }
    
    .studio-image-secondary {
        height: 200px;
    }
}

/* Location Section */
.location-section {
    background: var(--bg-white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.location-image {
    overflow: visible;
    position: relative;
}

.location-hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.location-text {
    display: flex;
    align-items: flex-start;
}

.location-text .section-header {
    text-align: left;
    margin: 0;
    max-width: 100%;
}

.location-text h2 {
    text-align: left;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #2d2d2d;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.location-text p {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2d2d2d;
    margin: 0;
    font-weight: 400;
}

.map-container {
    width: 100%;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.custom-map {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.map-placeholder {
    height: 400px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-light);
}

/* Responsive map styles */
@media (max-width: 768px) {
    .map-image {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .map-image {
        width: 100%;
        height: auto;
    }
}

/* Our Rooms Section */
.our-rooms-section {
    padding: 0;
    overflow: hidden;
}

.our-rooms-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.our-rooms-content {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 600px;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Left Column: Content */
.rooms-content-left {
    background: #f5f5f5;
    padding: 4rem 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    box-sizing: border-box;
}

.rooms-content-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(34, 43, 76, 0.03) 35px, rgba(34, 43, 76, 0.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(34, 43, 76, 0.03) 35px, rgba(34, 43, 76, 0.03) 70px);
    pointer-events: none;
    z-index: 0;
}

.rooms-content-left > * {
    position: relative;
    z-index: 1;
}

.rooms-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.rooms-main-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
}

.rooms-main-title {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 0;
    line-height: 1;
}

.rooms-main-title-large {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.rooms-main-title-small {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    position: relative;
    top: -0.1em;
}

.rooms-main-price-note {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666666;
    margin: 0;
    margin-left: 0.5rem;
    margin-top: 0.25rem;
}

.rooms-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Rooms Filters */
.rooms-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.filter-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2d2d2d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select {
    width: 100%;
    min-width: 0;
    padding: 0.75rem 1rem;
    padding-right: 2.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #ffffff;
    color: #2d2d2d;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23222b4c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px 8px;
    padding-right: 2.5rem;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-select:hover {
    border-color: #222b4c;
}

.filter-select:focus {
    outline: none;
    border-color: #222b4c;
    box-shadow: 0 0 0 3px rgba(34, 43, 76, 0.1);
}

.rooms-stats-wrapper {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.rooms-count-box {
    background: #222b4c;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    text-align: center;
    min-width: 150px;
    flex-shrink: 0;
}


.rooms-count-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rooms-count-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rooms-spaces-text {
    font-size: 1.4rem;
    font-style: italic;
    color: #2d2d2d;
    font-weight: 500;
    margin: 0 0 2rem 0;
    line-height: 1.4;
}

.rooms-studios-notice {
    font-size: 1rem;
    color: #222b4c;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
    background: rgba(34, 43, 76, 0.08);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border-left: 3px solid #222b4c;
}

.rooms-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.rooms-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #2d2d2d;
    font-weight: 500;
}

.rooms-checkmark {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.rooms-apply-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.rooms-apply-btn {
    display: inline-block;
    background: #F2295B;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.rooms-apply-btn:hover {
    background: #d01f4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 41, 91, 0.3);
}

/* Right Column: Carousel */
.rooms-content-right {
    background-image: url('/images/Website Assets/Section.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
}

@media (max-width: 968px) {
    .rooms-content-right {
        overflow: hidden;
    }
}

.rooms-content-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 255, 208, 0.1) 0%, rgba(242, 41, 91, 0.1) 100%);
    z-index: 0;
}

.rooms-content-right > * {
    position: relative;
    z-index: 1;
}

.rooms-carousel-wrapper {
    position: relative;
    width: calc(100% + 200px);
    max-width: 1400px;
    overflow: visible;
    margin-left: -200px;
    margin-top: 80px;
    z-index: 10;
}

.rooms-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0;
    transform: translateZ(0);
    /* Enable momentum scrolling on iOS */
    overscroll-behavior-x: contain;
    /* Prevent vertical scroll when swiping horizontally */
    touch-action: pan-x;
    /* Optimize scrolling performance */
    contain: layout style paint;
}

.rooms-carousel::-webkit-scrollbar {
    display: none;
}

.room-card-carousel {
    flex: 0 0 calc(50% - 0.75rem);
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
    min-width: 0;
    position: relative;
    z-index: 15;
    /* Prevent card shrinking */
    flex-shrink: 0;
    /* Optimize rendering performance */
    transform: translateZ(0);
    backface-visibility: hidden;
}

.room-card-carousel:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .room-card-carousel:hover {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .room-card-carousel:active {
        transform: scale(0.98);
    }
}

.room-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.room-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.room-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: #222b4c;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.room-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.room-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.room-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

.room-card-building {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666666;
    margin: 0;
}

.room-card-floor {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-card-description {
    font-size: 0.95rem;
    font-weight: 400;
    color: #2d2d2d;
    margin: 0;
    line-height: 1.5;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 20;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: #222b4c;
    border-color: #222b4c;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(34, 43, 76, 0.3);
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

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

/* Rondebosch Section */
.rondebosch-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

.rondebosch-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 4rem;
}

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

.rondebosch-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.rondebosch-image {
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.rondebosch-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tenants Grid */
.section-header .tenants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.tenant-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    overflow: hidden;
    transition: var(--transition);
}

.tenant-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Entertainment Section */
.entertainment-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

.entertainment-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    font-weight: 700;
}

.entertainment-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 0;
}

.entertainment-featured-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.entertainment-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.entertainment-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.collage-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .entertainment-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .entertainment-featured {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }
    
    .entertainment-collage {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
}

@media (max-width: 480px) {
    .entertainment-collage {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.btn-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-link:hover {
    gap: 1rem;
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-light);
}

.pricing-features {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-feature h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-list li {
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 5px;
    box-shadow: var(--shadow);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-light);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-transform: lowercase;
    letter-spacing: -0.02em;
}

.testimonials-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem;
}

.testimonials-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.testimonial-speech-bubble {
    display: none;
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-speech-bubble.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.speech-bubble-content {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 3rem 3.5rem;
    position: relative;
    margin-bottom: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.testimonial-speech-bubble.active .speech-bubble-content {
    border-color: var(--primary-color);
}

.quote-mark-top {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.quote-mark-bottom {
    position: absolute;
    bottom: 1rem;
    right: 2rem;
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.3;
    font-family: Georgia, serif;
    transform: rotate(180deg);
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
    font-weight: 400;
    padding: 1rem 0;
}

.speech-bubble-tail {
    position: relative;
    width: 0;
    height: 0;
    margin-left: 4rem;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid var(--bg-white);
}

.testimonial-author-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-left: 4rem;
    margin-top: 1rem;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 400;
}

.testimonial-nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.testimonial-nav-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-nav-btn:hover svg {
    color: var(--text-white);
}

.testimonial-nav-btn svg {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    transition: color 0.3s ease;
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.testimonial-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(34, 43, 76, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-indicators .indicator.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

.testimonial-indicators .indicator:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Events Section */
.events-section {
    background: var(--bg-light);
}

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

.event-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: var(--transition);
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.event-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    will-change: transform;
    transform: translateZ(0);
}

.event-card:hover .event-image img {
    transform: scale(1.08) translateZ(0);
}

.event-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.event-category {
    display: none;
}

.event-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.event-date {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.event-link {
    display: none;
}

/* Fullscreen Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    margin: auto;
    animation: zoomIn 0.3s ease;
}

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

.image-modal-slide {
    display: none;
    width: 100%;
    height: auto;
}

.image-modal-slide.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.image-modal-slide img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--text-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 10002;
    transition: var(--transition);
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav:disabled:hover {
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
}

.carousel-indicators {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10002;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicator.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.2);
}

.carousel-counter {
    position: absolute;
    top: 20px;
    left: 30px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 10002;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--text-white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: var(--transition);
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.image-modal-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: 8px;
    color: var(--text-white);
    text-align: center;
    z-index: 10002;
}

.image-modal-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.image-modal-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design for Image Modal */
@media (max-width: 768px) {
    .image-modal-close {
        top: 10px;
        right: 15px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .image-modal-info {
        bottom: 10px;
        padding: 0.75rem 1rem;
    }

    .image-modal-info h3 {
        font-size: 1.2rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }

    .carousel-counter {
        top: 10px;
        left: 15px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .carousel-indicators {
        bottom: 70px;
    }
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

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

/* News Section */
.news-section {
    background: var(--bg-white);
}

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

.news-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.news-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.news-link:hover {
    text-decoration: underline;
}

/* Instagram Feed Section */
.instagram-feed-wrapper {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.instagram-header {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.instagram-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.instagram-header a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.instagram-header a:hover {
    color: #d01f4a;
    text-decoration: underline;
}

.instagram-feed-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 400px;
    position: relative;
}

.instagram-feed-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: var(--bg-light);
    border-radius: 12px;
}

.instagram-loading {
    text-align: center;
    color: var(--text-light);
}

.instagram-loading svg {
    margin-bottom: 1rem;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.instagram-loading p {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Instagram Feed Grid (for custom implementation) */
.instagram-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-light);
    cursor: pointer;
    transition: var(--transition);
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-post:hover .instagram-post-overlay {
    opacity: 1;
}

.instagram-post-stats {
    display: flex;
    gap: 2rem;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
}

.instagram-post-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instagram-post-stat svg {
    width: 20px;
    height: 20px;
}

.instagram-feed-footer {
    text-align: center;
    margin-top: 3rem;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--text-white);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.4);
    color: var(--text-white);
    text-decoration: none;
}

.instagram-follow-btn svg {
    flex-shrink: 0;
}

/* SnapWidget or other embed styles */
.instagram-feed-container iframe {
    width: 100%;
    border: none;
    border-radius: 12px;
    min-height: 600px;
}

/* Newsletter Section */
.newsletter-section {
    background: #1a1f3a;
    color: var(--text-white);
    padding: 4rem 0;
}

.newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    line-height: 1.3;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.newsletter-input::placeholder {
    color: #666;
    font-family: 'Inter', sans-serif;
}

.newsletter-input:focus {
    outline: none;
    border-color: #999;
}

.newsletter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #FF6B6B;
    color: var(--text-white);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    width: auto;
    align-self: flex-start;
}

.newsletter-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.newsletter-btn span {
    color: var(--text-white);
}

.arrow-icon {
    flex-shrink: 0;
}

.arrow-icon circle {
    fill: var(--text-white);
}

.arrow-icon path {
    stroke: #FF6B6B;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links h4 {
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

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

/* Responsive Design */
@media (min-width: 1200px) {
    .room-card-carousel {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 968px) {
    .hero-banner {
        padding: 2rem 0;
    }

    .banner-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 2rem;
    }

    .banner-card-right {
        border-left: none;
        border-top: 2px solid rgba(34, 43, 76, 0.1);
        padding-left: 0;
        padding-top: 2rem;
    }

    .banner-features {
        gap: 1rem;
    }

    .banner-button-new {
        width: 100%;
        max-width: 400px;
    }

    .nav-wrapper {
        gap: 0.75rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 1.5rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

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

    .nav-menu li {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav-menu > li > a {
        display: block;
        padding: 0.875rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
        font-size: 0.95rem;
    }

    .dropdown {
        width: 100%;
    }
    
    .dropdown > a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.875rem 1rem;
        min-height: 44px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.25);
        margin: 0;
        padding: 0.5rem 0;
        display: none;
        width: 100%;
        border-radius: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li {
        padding: 0;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1rem;
        padding-left: 2rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        font-size: 0.9rem;
    }

    .btn-apply {
        margin: 0;
        width: auto;
        max-width: none;
        flex-shrink: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .our-rooms-container {
        width: 100%;
        max-width: 100%;
    }

    .our-rooms-content {
        grid-template-columns: 1fr;
    }

    .rooms-content-left {
        padding: 3rem 2rem;
    }

    .rooms-content-right {
        padding: 2rem 1.5rem;
        overflow: hidden;
    }
    
    .rooms-carousel-wrapper {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
        max-width: 100%;
        padding: 0;
    }

    .rooms-carousel {
        gap: 1rem;
        padding: 0.5rem 1rem;
        overflow-x: auto;
        /* Show scroll indicator on mobile */
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    }
    
    .rooms-carousel::-webkit-scrollbar {
        display: block;
        height: 4px;
    }
    
    .rooms-carousel::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .rooms-carousel::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 2px;
    }

    .room-card-carousel {
        flex: 0 0 calc(85% - 0.5rem);
        min-width: 280px;
        max-width: 400px;
    }
    
    .room-image-wrapper {
        height: 250px;
    }
    
    .room-card-content {
        padding: 1.25rem;
    }
    
    .room-card-title {
        font-size: 1.25rem;
    }
    
    .room-card-description {
        font-size: 0.875rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        -webkit-tap-highlight-color: transparent;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .carousel-btn-prev {
        left: 8px;
    }

    .carousel-btn-next {
        right: 8px;
    }

    .location-content,
    .rondebosch-content,
    .entertainment-content {
        grid-template-columns: 1fr;
    }

    .rondebosch-content {
        gap: 3rem;
    }

    .section-header .tenants-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .tenant-logo {
        height: 100px;
    }

    .tenant-logo img {
        max-height: 60px;
    }

    .location-text .section-header {
        text-align: center;
    }

    .location-text .section-icon-wrapper {
        justify-content: center;
    }

    .location-text h2,
    .location-text p {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

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

    .banner-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        gap: 1.5rem;
    }

    .banner-title-new {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .banner-description-new {
        font-size: 1rem;
        line-height: 1.6;
    }

    .banner-features {
        flex-direction: column;
        gap: 0.75rem;
    }

    .banner-feature-item {
        font-size: 0.9rem;
    }

    .banner-button-new {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
        width: 100%;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    .nav-wrapper {
        gap: 0.5rem;
        justify-content: space-between;
    }
    
    .btn-apply {
        padding: 0.45rem 0.75rem;
        font-size: 0.75rem;
        min-height: 32px;
        margin: 0;
    }
    
    .menu-toggle {
        padding: 6px;
        min-width: 40px;
        min-height: 40px;
    }

    .search-filters {
        grid-template-columns: 1fr;
    }

    .rooms-grid,
    .testimonials-grid,
    .events-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .rooms-content-left {
        padding: 2.5rem 1.5rem;
    }

    .rooms-content-right {
        padding: 2.5rem 1.5rem;
    }

    .rooms-filters {
        grid-template-columns: 1fr;
        padding: 1.25rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .filter-select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem 1rem;
        padding-right: 2.5rem;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23222b4c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 12px 8px;
        -webkit-tap-highlight-color: transparent;
    }
    
    .filter-group {
        gap: 0.75rem;
    }
    
    .filter-label {
        font-size: 0.75rem;
    }

    .rooms-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .rooms-stats-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .rooms-content-right {
        padding: 1.5rem 1rem;
        background-size: cover;
        background-position: center;
    }
    
    .rooms-carousel-wrapper {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-top: 15px;
        padding: 0;
    }
    
    .rooms-carousel {
        gap: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .room-card-carousel {
        flex: 0 0 calc(90% - 0.375rem);
        min-width: 260px;
        max-width: 100%;
        border-radius: 12px;
    }

    .room-image-wrapper {
        height: 220px;
    }
    
    .room-card-content {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .room-card-title {
        font-size: 1.125rem;
        line-height: 1.2;
    }
    
    .room-card-building {
        font-size: 0.8rem;
    }
    
    .room-card-floor {
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }
    
    .room-card-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .room-tag {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
        bottom: 0.75rem;
        left: 0.75rem;
    }
    
    .room-card-actions {
        flex-direction: column;
        gap: 0.625rem;
        margin-top: 0.75rem;
    }
    
    .room-more-info-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
        min-height: 42px;
    }
    
    .room-more-info-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .room-apply-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        min-height: 42px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .carousel-btn-prev {
        left: 6px;
    }
    
    .carousel-btn-next {
        right: 6px;
    }

    .section-header .tenants-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .tenant-logo {
        height: 90px;
    }

    .tenant-logo img {
        max-height: 50px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-tap-highlight-color: transparent;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    }
    
    .carousel-btn:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .carousel-btn-prev {
        left: 8px;
    }

    .carousel-btn-next {
        right: 8px;
    }
    
    .room-card-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .room-more-info-btn {
        justify-content: center;
        padding: 0.75rem 1rem;
        min-height: 44px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        background: #f8f9fa;
        -webkit-tap-highlight-color: transparent;
    }
    
    .room-more-info-btn:active {
        background: #e9ecef;
        transform: scale(0.98);
    }

    .room-apply-btn {
        text-align: center;
        width: 100%;
        padding: 0.875rem 1.5rem;
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
    }
    
    .room-apply-btn:active {
        transform: translateY(0) scale(0.98);
    }
    
    .room-price-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
        bottom: 0.75rem;
        left: 0.75rem;
    }
    
    .room-price-badge .price-from {
        font-size: 0.7rem;
    }
    
    .room-price-badge .price-value {
        font-size: 0.85rem;
    }

    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-title {
        font-size: 2.25rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .testimonials-carousel-wrapper {
        padding: 0 1rem;
        gap: 0.5rem;
    }

    .testimonials-carousel {
        min-height: 350px;
    }

    .speech-bubble-content {
        padding: 2rem 2.5rem;
        border-radius: 20px;
    }

    .quote-mark-top {
        top: 1rem;
        left: 1.5rem;
        font-size: 4rem;
    }

    .quote-mark-bottom {
        bottom: 0.5rem;
        right: 1.5rem;
        font-size: 4rem;
    }

    .testimonial-text {
        font-size: 1.0625rem;
        padding: 0.5rem 0;
    }

    .speech-bubble-tail {
        margin-left: 2rem;
        border-left-width: 15px;
        border-right-width: 15px;
        border-top-width: 25px;
    }

    .testimonial-author-section {
        padding-left: 2rem;
        gap: 1rem;
    }

    .testimonial-avatar {
        width: 56px;
        height: 56px;
        font-size: 1.125rem;
    }

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

    .testimonial-role {
        font-size: 0.875rem;
    }

    .testimonial-nav-btn {
        width: 48px;
        height: 48px;
    }

    .testimonial-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .instagram-feed-wrapper {
        margin: 3rem 0;
        padding: 2rem 0;
    }
    
    .instagram-header h3 {
        font-size: 1.75rem;
    }
    
    .instagram-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .instagram-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .instagram-feed-container iframe {
        min-height: 500px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.room-card,
.testimonial-card,
.event-card,
.news-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   ROOMS LISTING PAGE STYLES
   ============================================ */

/* Hero Section */
.rooms-hero-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin-top: 0;
}

@media (max-width: 768px) {
    .rooms-hero-section {
        height: 300px;
        min-height: 300px;
    }
    
    .rooms-hero-title-wrapper {
        gap: 0.25rem;
    }
    
    .rooms-hero-price-note {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

.rooms-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.rooms-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.rooms-hero-section .container {
    position: relative;
    z-index: 1;
}

.rooms-hero-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.rooms-hero-title {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 0;
    line-height: 1;
}

.rooms-hero-title-large {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.rooms-hero-title-small {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    position: relative;
    top: -0.1em;
}

.rooms-hero-price-note {
    font-size: 0.9rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    margin-left: 0.5rem;
    margin-top: 0.25rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    display: inline-block;
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--primary-color);
    padding: 1rem 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.8);
}

/* Rooms Listing Section */
.rooms-listing-section {
    padding: 3rem 0;
    background: #ffffff;
}

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

/* Filters Sidebar */
.rooms-filters-sidebar {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.criteria-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.criteria-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0;
}

.clear-all-btn {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.clear-all-btn:hover {
    background: #1a2138;
    transform: translateY(-1px);
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: var(--transition);
}

.filter-checkbox:hover {
    background: #f5f5f5;
}

.filter-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
}

.filter-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.filter-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    font-size: 0.95rem;
    color: #2d2d2d;
    flex: 1;
}

.filter-count {
    color: #666;
    font-weight: 400;
}

/* Price Range */
.price-range-container {
    padding: 1rem 0;
}

.price-range-display {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d2d2d;
}

.price-slider-wrapper {
    position: relative;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin: 1.5rem 0;
    --min-percent: 0%;
    --max-percent: 100%;
}

.price-slider-wrapper::after {
    content: '';
    position: absolute;
    left: var(--min-percent, 0%);
    width: calc(var(--max-percent, 100%) - var(--min-percent, 0%));
    top: 0;
    height: 6px;
    background: var(--primary-color);
    border-radius: 3px;
    z-index: 1;
}

.price-slider {
    position: absolute;
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    outline: none;
    z-index: 3;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

#priceMaxSlider {
    z-index: 4;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.price-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.price-slider::-webkit-slider-runnable-track {
    height: 6px;
    background: transparent;
}

.price-slider::-moz-range-track {
    height: 6px;
    background: transparent;
}

/* Main Content */
.rooms-main-content {
    flex: 1;
}

.rooms-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.rooms-controls-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-dropdown-wrapper {
    position: relative;
}

.sort-dropdown {
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.95rem;
    background: #ffffff;
    color: #2d2d2d;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23222b4c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.sort-dropdown:hover {
    border-color: var(--primary-color);
}

.sort-dropdown:focus {
    outline: none;
    border-color: var(--primary-color);
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
    background: #f5f5f5;
    padding: 0.25rem;
    border-radius: 6px;
}

.view-btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    color: #666;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover {
    background: #e0e0e0;
    color: var(--primary-color);
}

.view-btn.active {
    background: var(--primary-color);
    color: #ffffff;
}

/* Rooms Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.rooms-grid.list-view {
    grid-template-columns: 1fr;
}

.room-card-listing {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
}

.room-card-listing:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.room-card-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-card-listing:hover .room-card-image img {
    transform: scale(1.05);
}

.room-price-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: #000000;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.room-price-badge .price-from {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-price-badge .price-value {
    font-size: 0.95rem;
    font-weight: 700;
}

.room-card-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.room-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.room-card-title-listing {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

.room-card-building {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666666;
    margin: 0;
}

.room-card-floor {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-card-description {
    font-size: 0.95rem;
    font-weight: 400;
    color: #2d2d2d;
    margin: 0;
    line-height: 1.5;
}

.room-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.5rem;
}

.room-more-info-btn {
    background: transparent;
    color: #2d2d2d;
    border: none;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.room-more-info-btn:hover {
    color: var(--primary-color);
}

.room-more-info-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.room-apply-btn {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.room-apply-btn:hover {
    background: #1a2138;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 43, 76, 0.3);
}

/* Modal Sold Out Badge */
.modal-sold-out-badge {
    display: inline-flex;
    align-items: center;
    background: #f5f5f5;
    color: #d32f2f;
    padding: 0.4rem 0.875rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1.5px solid #d32f2f;
    white-space: nowrap;
}

/* Sold Out Banner */
.room-sold-out-banner {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

/* NEW Banner for Studios@Fountain - Modern Badge Design */
.room-new-banner {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff2d6a 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 4;
    box-shadow: 0 2px 12px rgba(242, 41, 91, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.room-new-banner::before {
    content: '✨';
    margin-right: 0.25rem;
    font-size: 0.85rem;
}

/* Responsive styles for NEW banner */
@media (max-width: 768px) {
    .room-new-banner {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(211, 47, 47, 0.6);
    }
}

.room-card-listing.sold-out {
    position: relative;
    opacity: 0.85;
}

.room-card-listing.sold-out::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    border-radius: 12px;
    pointer-events: none;
}

.room-card-listing.sold-out .room-card-image,
.room-card-listing.sold-out .room-card-info {
    position: relative;
    z-index: 2;
}

/* List View Styles */
.rooms-grid.list-view .room-card-listing {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.5rem;
}

.rooms-grid.list-view .room-card-image {
    height: 100%;
    min-height: 200px;
}

.rooms-grid.list-view .room-card-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .rooms-listing-wrapper {
        grid-template-columns: 1fr;
    }

    .rooms-filters-sidebar {
        position: static;
        max-height: none;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .filter-section {
        margin-bottom: 1.5rem;
    }
    
    .filter-section-title {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .filter-checkbox {
        padding: 0.75rem;
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
    }
    
    .checkbox-custom {
        width: 22px;
        height: 22px;
        min-width: 22px;
        min-height: 22px;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }

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

    .rooms-grid.list-view .room-card-listing {
        grid-template-columns: 1fr;
    }

    .room-card-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .room-more-info-btn {
        justify-content: center;
        padding: 0.75rem;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
    }

    .room-apply-btn {
        text-align: center;
        width: 100%;
    }
}

/* ============================================
   ROOM DETAILS MODAL STYLES
   ============================================ */

.room-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.room-details-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 1100px;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.room-details-modal.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-close-btn:hover {
    background: #ffffff;
    transform: rotate(90deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-close-btn svg {
    color: var(--primary-color);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Image Section */
.modal-image-section {
    background: #f8f9fa;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
}

.modal-main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    background: #e0e0e0;
}

.modal-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: opacity;
    transform: translateZ(0);
    transition: opacity 0.3s ease;
}

.image-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    will-change: transform;
}

.image-nav-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.image-nav-btn svg {
    color: var(--primary-color);
}

.image-prev {
    left: 1rem;
}

.image-next {
    right: 1rem;
}

.modal-image-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.5rem 0;
    justify-content: flex-start;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 100px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
    flex-basis: auto;
}

.thumbnail-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    opacity: 1;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: opacity;
    transform: translateZ(0);
    transition: opacity 0.2s ease;
}

/* Floor Plan Button */
.floor-plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2b5c 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(26, 43, 92, 0.15);
}

.floor-plan-btn:hover {
    background: linear-gradient(135deg, #1a2b5c 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 43, 92, 0.3);
}

.floor-plan-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(26, 43, 92, 0.15);
}

.floor-plan-btn svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.floor-plan-btn-text {
    font-weight: 600;
}

/* Info Section */
.modal-info-section {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
    min-width: 0;
}

.modal-room-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    gap: 0.5rem;
    background: #f5f5f5;
    padding: 0.5rem;
    border-radius: 12px;
}

.pricing-tab {
    flex: 1;
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.pricing-tab:hover {
    color: var(--primary-color);
}

.pricing-tab.active {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(34, 43, 76, 0.2);
}

.pricing-content {
    position: relative;
    min-height: 80px;
}

.pricing-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.pricing-tab-content.active {
    display: block;
}

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

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

.pricing-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
}

.pricing-amount-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.pricing-amount.sold-out {
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    text-decoration-color: #d32f2f;
    color: #999;
    opacity: 0.6;
}

/* Amenities Section */
.modal-amenities {
    margin-top: 1rem;
}

.amenities-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Feature Summary */
.feature-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
}

.amenities-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.amenities-list li svg {
    flex-shrink: 0;
    color: var(--secondary-color);
}

/* Categorized Amenities Structure */
.modal-amenities .amenities-category {
    margin-bottom: 1.5rem;
}

.modal-amenities .amenities-category:last-child {
    margin-bottom: 0;
}

.modal-amenities .amenities-category-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-amenities .amenities-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-amenities .amenities-category-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 500;
}

.modal-amenities .amenities-category-list li svg {
    flex-shrink: 0;
    color: var(--secondary-color);
}

/* Apply Button */
.modal-apply-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.modal-apply-btn:hover {
    background: #d01f4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 41, 91, 0.3);
}

/* Responsive Modal */
@media (max-width: 968px) {
    .modal-content {
        grid-template-columns: 1fr;
        max-height: 85vh;
    }

    .modal-image-section {
        padding: 1.5rem;
    }

    .modal-info-section {
        padding: 2rem 1.5rem;
    }

    .amenities-list {
        grid-template-columns: 1fr;
    }

    .feature-summary {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }
    
    @media (max-width: 600px) {
        .feature-summary {
            grid-template-columns: 1fr;
        }
    }

    .modal-amenities .amenities-category-list {
        gap: 0.4rem;
    }

    .modal-amenities .amenities-category-title {
        font-size: 0.9rem;
    }

    .modal-amenities .amenities-category-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .modal-container {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }

    .modal-content {
        max-height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-close-btn {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
    }

    .modal-image-section {
        padding: 1rem;
    }

    .modal-info-section {
        padding: 1.5rem 1rem;
    }

    .pricing-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pricing-tab {
        min-height: 48px;
        padding: 0.875rem 1rem;
        -webkit-tap-highlight-color: transparent;
    }

    .pricing-amount {
        font-size: 1.75rem;
    }

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

    .feature-summary {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

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

    .feature-value {
        font-size: 0.8rem;
    }

    .image-nav-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
    }

    .modal-apply-btn {
        min-height: 48px;
        padding: 1rem 2rem;
        -webkit-tap-highlight-color: transparent;
    }
}

/* ============================================
   ROOM TYPES DIALOGUE (STUDIOS@FOUNTAIN)
   ============================================ */

.room-types-dialogue {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.room-types-dialogue.active {
    opacity: 1;
    visibility: visible;
}

.dialogue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.dialogue-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.room-types-dialogue.active .dialogue-container {
    transform: scale(1) translateY(0);
}

.dialogue-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dialogue-close-btn:hover {
    background: #ffffff;
    transform: rotate(90deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.dialogue-close-btn svg {
    color: var(--primary-color);
}

.dialogue-content {
    padding: 3rem;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.dialogue-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.dialogue-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0 0 2.5rem 0;
    text-align: center;
}

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

.room-type-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.room-type-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.room-type-header {
    margin-bottom: 1.5rem;
}

.room-type-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.room-type-pricing {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.room-type-price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border-radius: 8px;
    gap: 1rem;
    width: 100%;
}

.price-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-amount .price-from {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount .price-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.price-amount.sold-out {
    text-decoration: line-through;
    color: var(--text-light);
    opacity: 0.6;
}

.price-amount.sold-out .price-from,
.price-amount.sold-out .price-value {
    text-decoration: line-through;
}

.sold-out-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: var(--secondary-color);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
}

/* Room Type Amenities */
.room-type-amenities {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.amenities-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}

/* Feature Summary in Room Type Card */
.room-type-amenities .feature-summary {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
}

.room-type-amenities .feature-icon {
    width: 40px;
    height: 40px;
}

.room-type-amenities .feature-icon svg {
    width: 20px;
    height: 20px;
}

.room-type-amenities .feature-label {
    font-size: 0.8rem;
}

.room-type-amenities .feature-value {
    font-size: 0.75rem;
}

.amenities-category {
    margin-bottom: 1.5rem;
}

.amenities-category:last-child {
    margin-bottom: 0;
}

.amenities-category-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amenities-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.amenities-category-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.amenities-category-list li svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal .modal-container {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 16px;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    z-index: 1;
}

.booking-modal.active .modal-container {
    transform: scale(1) translateY(0);
}

.booking-modal-content {
    padding: 2.5rem;
}

.booking-modal-header {
    margin-bottom: 2rem;
    text-align: center;
}

.booking-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.booking-modal-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

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

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group label .required {
    color: var(--secondary-color);
    margin-left: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 43, 76, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #b0b0b0;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.btn-cancel,
.btn-submit {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cancel {
    background: #f5f5f5;
    color: var(--text-dark);
    border-color: #e0e0e0;
}

.btn-cancel:hover {
    background: #e8e8e8;
    border-color: #b0b0b0;
}

.btn-submit {
    background: var(--primary-color);
    color: #ffffff;
}

.btn-submit:hover {
    background: #1a2138;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 43, 76, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Responsive Booking Modal */
@media (max-width: 768px) {
    .booking-modal .modal-container {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }
    
    .booking-modal-content {
        padding: 2rem 1.5rem;
        max-height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .booking-modal-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem 1rem;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .form-actions {
        flex-direction: column-reverse;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .btn-cancel,
    .btn-submit {
        width: 100%;
        min-height: 48px;
        padding: 1rem 2rem;
        font-size: 1rem;
        -webkit-tap-highlight-color: transparent;
    }
}

/* Responsive Room Types Dialogue */
@media (max-width: 768px) {
    .dialogue-container {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .dialogue-content {
        padding: 2rem 1.5rem;
        max-height: 100vh;
    }

    .dialogue-title {
        font-size: 1.75rem;
    }

    .dialogue-subtitle {
        font-size: 1rem;
    }

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

    .room-type-card {
        padding: 1.25rem;
    }

    .dialogue-close-btn {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    margin-top: 0;
    padding-bottom: 3rem;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.contact-hero-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-hero-title {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-family: Georgia, serif;
}

.contact-breadcrumb-box {
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    display: inline-block;
    margin-top: 1rem;
}

.contact-breadcrumb-box .breadcrumb {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0;
}

.contact-breadcrumb-box .breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.contact-breadcrumb-box .breadcrumb a:hover {
    color: var(--accent-color);
}

.hero-decorative-leaves {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50% 0 50% 0;
    transform: rotate(45deg);
}

.leaf-1 {
    bottom: 50px;
    right: 50px;
    width: 80px;
    height: 80px;
}

.leaf-2 {
    bottom: 100px;
    right: 120px;
    width: 60px;
    height: 60px;
}

.leaf-3 {
    bottom: 150px;
    right: 80px;
    width: 50px;
    height: 50px;
}

.leaf-4 {
    bottom: 180px;
    right: 150px;
    width: 40px;
    height: 40px;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #ffffff;
}

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

/* Left Column */
.contact-content-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-heading-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon-circle {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-main-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2d2d2d;
    margin: 0;
    line-height: 1.2;
}

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

.contact-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Contact Details Block */
.contact-details-block {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
    margin-top: 1rem;
}

.contact-details-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-details-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.contact-details-content {
    position: relative;
    z-index: 1;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    height: 100%;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-text {
    color: #ffffff;
    flex: 1;
}

.contact-detail-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-detail-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0.25rem 0;
    color: rgba(255, 255, 255, 0.95);
}

/* Right Column - Contact Form */
.contact-content-right {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 3rem;
}

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

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #2d2d2d;
    background: #e8e8e8;
    transition: var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media (max-width: 768px) {
    .contact-form input,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 48px;
        padding: 0.875rem 1rem;
    }
    
    .contact-form textarea {
        min-height: 120px;
    }
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: #e0e0e0;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
    font-family: 'Inter', sans-serif;
}

.contact-submit-btn {
    background: var(--primary-color);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
}

.contact-submit-btn:hover {
    background: #1a2138;
}

.contact-submit-btn:active {
    transform: scale(0.98);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    will-change: transform, opacity;
    transform: translateZ(0);
}

.scroll-to-top:hover {
    background: #1a2138;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

.scroll-to-top svg path {
    stroke: #ffffff;
}

/* Responsive Design for Contact Page */
@media (max-width: 968px) {
    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-hero-title {
        font-size: clamp(3rem, 6vw, 5rem);
    }

    .contact-content-right {
        padding: 2rem;
    }

    .contact-details-content {
        padding: 2.5rem 2rem;
    }

    .hero-decorative-leaves {
        width: 200px;
        height: 200px;
    }

    .leaf {
        width: 40px;
        height: 40px;
    }

    .leaf-1 {
        width: 60px;
        height: 60px;
    }

    .leaf-2,
    .leaf-3,
    .leaf-4 {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        min-height: 400px;
    }

    .contact-breadcrumb-box {
        padding: 0.5rem 1rem;
    }

    .contact-heading-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-main-heading {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .contact-content-right {
        padding: 1.5rem;
    }

    .contact-details-content {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .contact-detail-item {
        gap: 1rem;
    }

    .contact-detail-icon {
        width: 40px;
        height: 40px;
    }

    .contact-detail-icon svg {
        width: 18px;
        height: 18px;
    }

    .scroll-to-top {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        bottom: 1.5rem;
        right: 1.5rem;
        -webkit-tap-highlight-color: transparent;
    }
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #fafbfc 0%, #ffffff 100%);
}

.faq-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-intro {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.faq-intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--text-white);
}

.faq-intro-icon svg {
    width: 40px;
    height: 40px;
}

.faq-intro h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.faq-intro p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.faq-intro a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.faq-intro a:hover {
    border-bottom-color: var(--secondary-color);
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-white);
    border: 2px solid #e8eaed;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--secondary-color);
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--secondary-color);
    border-width: 2px;
}

.faq-item.active::before {
    height: 100%;
}

.faq-question {
    width: 100%;
    padding: 2rem 2.5rem;
    background: var(--bg-white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-item.active .faq-question {
    color: var(--secondary-color);
    padding-bottom: 1.5rem;
}

.faq-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-number {
    background: var(--secondary-color);
    color: var(--text-white);
}

.faq-question-text {
    flex: 1;
    line-height: 1.6;
    text-align: left;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-color);
    width: 28px;
    height: 28px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-white);
}

.faq-answer-content {
    padding: 0 2.5rem 2rem 2.5rem;
    padding-left: calc(2.5rem + 48px + 2rem);
}

.faq-answer-content p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* FAQ CTA Section */
.faq-cta {
    margin-top: 5rem;
    padding: 0;
    background: transparent;
    text-align: center;
}

.faq-cta-content {
    background: var(--primary-color);
    padding: 4rem 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.faq-cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 41, 91, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.faq-cta h3 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.faq-cta p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.faq-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: var(--secondary-color);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.faq-cta-button:hover {
    background: #e01a4a;
    transform: translateY(-2px);
    gap: 1rem;
}

.faq-cta-button svg {
    transition: transform 0.3s ease;
}

.faq-cta-button:hover svg {
    transform: translateX(4px);
}

/* Responsive Design for FAQ Page */
@media (max-width: 968px) {
    .faq-section {
        padding: 4rem 0;
    }

    .faq-content-wrapper {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .faq-intro {
        margin-bottom: 3.5rem;
    }

    .faq-intro-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .faq-intro-icon svg {
        width: 35px;
        height: 35px;
    }

    .faq-accordion {
        gap: 1.25rem;
    }

    .faq-question {
        padding: 1.75rem 2rem;
        gap: 1.5rem;
    }

    .faq-answer-content {
        padding: 0 2rem 1.75rem 2rem;
        padding-left: calc(2rem + 48px + 1.5rem);
    }

    .faq-cta-content {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-intro {
        margin-bottom: 3rem;
    }

    .faq-intro-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }

    .faq-intro-icon svg {
        width: 30px;
        height: 30px;
    }

    .faq-intro h2 {
        font-size: clamp(2rem, 6vw, 2.75rem);
        margin-bottom: 1rem;
    }

    .faq-intro p {
        font-size: 1rem;
    }

    .faq-accordion {
        gap: 1rem;
    }

    .faq-item {
        border-radius: 12px;
    }

    .faq-question {
        padding: 1.5rem 1.5rem;
        font-size: 1rem;
        gap: 1.25rem;
    }

    .faq-item.active .faq-question {
        padding-bottom: 1.25rem;
    }

    .faq-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
    }

    .faq-answer-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
        padding-left: calc(1.5rem + 40px + 1.25rem);
    }

    .faq-answer-content p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .faq-cta {
        margin-top: 3.5rem;
    }

    .faq-cta-content {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }

    .faq-cta h3 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .faq-cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .faq-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .faq-question {
        padding: 1.25rem 1.25rem;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
    
    .banner-card {
        padding: 1.5rem 1rem;
    }
    
    .banner-title-new {
        font-size: 1.25rem;
    }
    
    .rooms-hero-section {
        height: 250px;
        min-height: 250px;
    }
    
    .rooms-hero-title-large {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .rooms-hero-title-small {
        font-size: clamp(1.75rem, 7vw, 3rem);
    }
    
    .contact-hero-section {
        min-height: 300px;
    }
    
    .contact-hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .section-header h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .testimonials-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
    
    .newsletter-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .modal-container {
        width: 100%;
        margin: 0;
    }
    
    .dialogue-container {
        width: 100%;
        margin: 0;
    }
    
    .scroll-to-top {
        width: 44px;
        height: 44px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .filter-select {
        font-size: 16px;
        min-height: 48px;
    }
    
    .rooms-filters {
        padding: 1rem;
    }
    
    .filter-group {
        gap: 0.5rem;
    }
    
    .btn-apply {
        padding: 0.4rem 0.65rem;
        font-size: 0.7rem;
        min-height: 30px;
    }
    
    .logo-img {
        height: 32px;
        max-width: 120px;
    }
}

    .faq-number {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .faq-question-text {
        flex: 1 1 100%;
        order: 2;
        margin-top: 0.5rem;
    }

    .faq-icon {
        order: 3;
    }

    .faq-answer-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
        padding-left: 1.25rem;
    }

    .faq-cta-content {
        padding: 2rem 1.25rem;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
    }
}

/* Tooltip Styles for Studios@Fountain Monthly Payment Disclaimer */
.price-tooltip-wrapper {
    position: relative;
    display: inline-block;
    cursor: help;
}

.price-tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-left: 6px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    vertical-align: middle;
    transition: all 0.2s ease;
}

.price-tooltip-icon:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.price-tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background-color: var(--primary-color);
    color: var(--text-white);
    text-align: center;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 380px;
    white-space: normal;
}

.price-tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--primary-color);
}

.price-tooltip-wrapper:hover .price-tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-12px);
}

/* Tooltip for pricing labels */
.pricing-label-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: help;
}

.pricing-label-tooltip .price-tooltip-icon {
    margin-left: 8px;
}

/* Tooltip for price badges */
.room-price-badge .price-tooltip-wrapper {
    display: inline-flex;
    align-items: center;
}

.room-price-badge .price-tooltip-icon {
    width: 16px;
    height: 16px;
    font-size: 11px;
    margin-left: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.room-price-badge .price-tooltip-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

/* Tooltip for banner pricing */
.studios-banner-pricing .price-tooltip-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: help;
}

.studios-banner-pricing .period.price-tooltip-wrapper {
    display: inline-flex;
    align-items: center;
}

.studios-banner-pricing .price-tooltip-icon {
    width: 16px;
    height: 16px;
    font-size: 11px;
    margin-left: 6px;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    transition: all 0.2s ease;
}

.studios-banner-pricing .price-tooltip-icon:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--text-white);
}

.studios-banner-pricing .price-tooltip-text {
    max-width: 400px;
    bottom: auto;
    top: 100%;
    transform: translateX(-50%) translateY(8px);
}

.studios-banner-pricing .price-tooltip-text::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: var(--primary-color);
}

.studios-banner-pricing .price-tooltip-wrapper:hover .price-tooltip-text {
    transform: translateX(-50%) translateY(12px);
}

/* Desktop - wider tooltips */
@media (min-width: 769px) {
    .price-tooltip-text {
        max-width: 420px;
        padding: 12px 16px;
    }
    
    .studios-banner-pricing .price-tooltip-text {
        max-width: 450px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .price-tooltip-text {
        font-size: 12px;
        padding: 8px 12px;
        max-width: 240px;
    }
    
    .price-tooltip-icon {
        width: 16px;
        height: 16px;
        font-size: 11px;
    }
}



