* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a0e27;
    --secondary: #1a1f3a;
    --accent: #00d4ff;
    --accent-2: #7b2ff7;
    --gold: #ffd700;
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: opacity 0.3s;
}

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

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

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

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

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

.btn-book {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--text);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text);
    margin: 4px 0;
    transition: 0.3s;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    filter: brightness(0.7);
}

.hero-slide.active {
    opacity: 1;
    animation: zoomIn 10s ease-out;
}

@keyframes zoomIn {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(123, 47, 247, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-amenities {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px;
    margin-top: 2.5rem;
}

.amenity-badge {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s;
}

.amenity-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.amenity-badge-icon {
    font-size: 1.5rem;
}

.amenity-badge-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    animation: fadeInUp 1.2s ease-out;
}

.hero-location {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    animation: fadeInUp 1.4s ease-out;
}

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

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--text);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
    animation: fadeInUp 1.6s ease-out;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.6);
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    gap: 15px;
}

.slider-btn {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.quick-info {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.info-item {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s;
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.info-icon {
    font-size: 3.5rem;
}

.info-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
}

.about {
    padding: 6rem 0;
    background: var(--primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text .lead {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.reviews-showcase {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.review-badge {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.review-badge:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.review-badge .rating {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-badge .platform {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.special-offer {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1f3a, #0a0e27);
    position: relative;
    overflow: hidden;
}

.special-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
    animation: pulse 3s infinite;
}

.offer-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #ffed4e);
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.offer-title {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

.offer-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.offer-item {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    gap: 1.5rem;
    text-align: left;
    transition: all 0.3s;
}

.offer-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.offer-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.offer-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--gold);
}

.offer-text p {
    color: var(--text-muted);
    line-height: 1.8;
}

.btn-offer {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #ffed4e);
    color: var(--primary);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.btn-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.5);
}

.amenities {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

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

.amenity-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s;
}

.amenity-card:hover::before {
    left: 100%;
}

.amenity-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

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

.amenity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.amenity-card p {
    color: var(--text-muted);
}

.gallery {
    padding: 6rem 0;
    background: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    height: 320px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(123, 47, 247, 0.3));
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.video-tour {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.video-container {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.location {
    padding: 6rem 0;
    background: var(--primary);
}

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

.location-info h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.location-features li {
    padding: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.location-features li:hover {
    transform: translateX(10px);
    border-color: var(--accent);
}

.btn-secondary {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    color: var(--text);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(123, 47, 247, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(123, 47, 247, 0.5);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.booking {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.booking-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.platform-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3.5rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.platform-card:hover::before {
    left: 100%;
}

.platform-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
}

.platform-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.platform-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.platform-rating {
    font-size: 1.3rem;
    margin: 1.5rem 0;
    color: var(--gold);
}

.btn-platform {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--text);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    margin-top: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.platform-card:hover .btn-platform {
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.contact {
    padding: 6rem 0;
    background: var(--primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3.5rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
}

.contact-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-card a {
    color: var(--accent);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-card a:hover {
    color: var(--accent-2);
}

.footer {
    background: linear-gradient(135deg, var(--secondary), #050812);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #ffed4e);
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-top: 1rem;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
    padding-left: 5px;
}

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

.developer-credit {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.developer-credit a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.developer-credit a:hover {
    color: var(--accent-2);
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.call-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.6);
}

.offer-banner {
    position: fixed;
    top: 50%;
    left: -280px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
    background: linear-gradient(135deg, var(--gold), #ffed4e);
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 10px 10px 0 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    z-index: 998;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideIn 1s ease-out 2s forwards, glow 2s infinite;
}

.offer-banner:hover {
    left: -270px;
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

.offer-banner-icon {
    font-size: 1.2rem;
}

@keyframes slideIn {
    to {
        left: -10px;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 215, 0, 0.7);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-location {
        font-size: 1rem;
    }
    
    .hero-amenities {
        margin-top: 1.5rem;
        gap: 0.5rem;
    }
    
    .amenity-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .amenity-badge-icon {
        font-size: 1.2rem;
    }
    
    .amenity-badge-text {
        font-size: 0.85rem;
    }
    
    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .reviews-showcase {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .review-badge {
        flex: 1;
        min-width: 100px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-item {
        padding: 1.5rem;
    }
    
    .amenities-grid,
    .gallery-grid,
    .booking-platforms {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .offer-details {
        grid-template-columns: 1fr;
    }
    
    .offer-title {
        font-size: 2rem;
    }
    
    .video-container iframe {
        height: 300px;
    }
    
    .slider-controls {
        bottom: 20px;
        right: 20px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .whatsapp-float,
    .call-float {
        width: 50px;
        height: 50px;
        right: 20px;
    }
    
    .whatsapp-float {
        bottom: 85px;
    }
    
    .call-float {
        bottom: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .btn-primary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .nav-brand {
        font-size: 1.5rem;
    }
    
    .hero-amenities {
        gap: 0.4rem;
    }
    
    .amenity-badge {
        padding: 0.4rem 0.8rem;
    }
    
    .amenity-badge-text {
        font-size: 0.75rem;
    }
    
    .info-icon {
        font-size: 2.5rem;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .offer-banner {
        font-size: 0.75rem;
        padding: 0.6rem 1.2rem;
    }
}
