@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --color-primary: #0f172a; /* Midnight Blue */
    --color-primary-light: #1e293b;
    --color-accent: #d4af37; /* Luxury Gold */
    --color-accent-hover: #b5952f;
    --color-bg: #fdfbf7; /* Cream/Warm White */
    --color-text: #334155;
    --color-text-light: #64748b;
    --color-white: #ffffff;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --nav-height: 80px;
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --border-radius-lg: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
}

/* Custom Selection */
::selection {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-primary-light); 
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent); 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-hover); 
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.25;
    letter-spacing: 0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container Utility */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-outline-white {
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent; /* Transparent at top */
}

.navbar.scrolled {
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    height: 70px;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1px;
}

.logo span {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-accent);
}

/* Underline effect */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgba(212, 175, 55, 0.7); /* Accent color with reduced opacity */
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001; /* Above mobile menu */
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition);
}

/* Footer */
footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: var(--color-white);
    margin-bottom: 16px;
    font-size: 24px;
}

.footer-brand span {
    color: var(--color-accent);
}

.footer-brand p {
    color: var(--color-text-light);
    font-size: 15px;
    max-width: 300px;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--color-accent);
}

.footer-links h4 {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 24px;
    font-family: var(--font-body);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--color-text-light);
    font-size: 15px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    font-size: 14px;
}

/* Main Content Padding (to account for fixed navbar) */
main {
    min-height: 100vh;
}

/* Utility classes */
.text-center { text-align: center; }
.section-padding { padding: 100px 0; }
.bg-light { background-color: var(--color-white); }
.section-title {
    font-size: 42px;
    margin-bottom: 16px;
    text-align: center;
}
.section-subtitle {
    font-family: var(--font-body);
    color: var(--color-text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero-bg-photo {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: opacity 2s ease;
}

.hero-animated-zoom {
    animation: zoomInOut 25s infinite alternate ease-in-out;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-subtitle {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-text {
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Intro Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-subtitle-left {
    display: block;
    font-family: var(--font-body);
    color: var(--color-accent);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title-left {
    font-size: 42px;
    margin-bottom: 24px;
}

.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 32px; }

.link-animate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.link-animate i {
    transition: transform 0.3s ease;
}

.link-animate:hover i {
    transform: translateX(5px);
}

.intro-images {
    position: relative;
    height: 500px;
}

.img-box {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

@keyframes floatUp {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@keyframes floatDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(15px); }
    100% { transform: translateY(0); }
}

.img-1 {
    width: 70%;
    height: 80%;
    top: 0;
    left: 0;
    background-color: #ddd;
    background-image: url('../assets/images/intro1.png');
    animation: floatUp 6s infinite ease-in-out;
}

.img-2 {
    width: 50%;
    height: 60%;
    bottom: 0;
    right: 0;
    border: 10px solid var(--color-bg);
    background-color: #ccc;
    background-image: url('../assets/images/intro2.png');
    animation: floatDown 7s infinite ease-in-out;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.amenity-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    text-align: center;
    border-radius: var(--border-radius-lg);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: rgba(212, 175, 55, 0.2);
}

.amenity-icon {
    font-size: 40px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.amenity-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.amenity-card p {
    color: var(--color-text-light);
    font-size: 15px;
}

/* CTA Section */
.cta-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 100px 0;
}

.cta-section h2 {
    color: var(--color-white);
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background-color: var(--color-primary);
    color: var(--color-white);
    background-image: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('../assets/images/pattern.png');
}

.page-title {
    font-size: 54px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.page-subtitle {
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Booking Layout */
.booking-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.rooms-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .rooms-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rooms-list {
        grid-template-columns: 1fr;
    }
}

.room-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.room-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    border-color: rgba(212, 175, 55, 0.15);
}

.room-card.active-room {
    border-color: var(--color-accent);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.25);
}

.room-card:hover .room-img {
    transform: scale(1.08);
}

.room-img {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.room-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.room-details {
    width: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.select-room-btn {
    margin-top: auto;
}

.room-header {
    margin-bottom: 10px;
}

.room-header h3 {
    font-size: 22px;
}

.room-features {
    margin: 15px 0 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.room-features li {
    font-size: 14px;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
}

.room-features i {
    color: #eab308;
    margin-right: 8px;
}

/* Booking Form Sub*/
.booking-widget {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.booking-widget h3 {
    margin-bottom: 24px;
    font-size: 22px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 15px;
    background-color: #f8fafc;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group.half {
    width: 50%;
}

.btn-full {
    width: 100%;
}

.total-price-box {
    background: var(--color-bg);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    text-align: right;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
    color: #cbd5e1;
    transition: var(--transition);
}

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

.payment-mock hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #e2e8f0;
}

.price-highlight {
    color: var(--color-accent);
    font-size: 24px;
    margin-top: 10px;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay span {
    color: var(--color-white);
    font-size: 20px;
    font-family: var(--font-heading);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

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

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

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 3px solid var(--color-white);
}

.lightbox-caption {
    color: var(--color-white);
    text-align: center;
    margin-top: 15px;
    font-size: 20px;
    font-family: var(--font-heading);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: var(--color-white);
    cursor: pointer;
    z-index: 3001;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--color-accent);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info-box {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: var(--color-accent);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-item p {
    color: var(--color-text-light);
}

.contact-form-box {
    background: var(--color-white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-top: 60px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.chat-btn:hover {
    transform: scale(1.1);
}

.chat-box {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.chat-header {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    padding: 20px;
    height: 250px;
    background: var(--color-bg);
    overflow-y: auto;
}

.chat-msg {
    background: #e2e8f0;
    padding: 10px 15px;
    border-radius: 15px;
    border-bottom-left-radius: 5px;
    font-size: 14px;
    margin-bottom: 15px;
    display: inline-block;
}

.chat-input {
    padding: 15px;
    border-top: 1px solid #e2e8f0;
    display: flex;
}

.chat-input input {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px;
}

.chat-input button {
    background: none;
    border: none;
    color: var(--color-accent);
    cursor: pointer;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .intro-grid {
        grid-template-columns: 1fr;
    }
    .intro-images {
        height: 400px;
        margin-top: 40px;
    }
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--color-primary);
        flex-direction: column;
        justify-content: center;
        transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        font-size: 18px;
    }
    
    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .form-group.half {
        width: 100%;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    color: #FFF;
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background: #0f172a;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Premium Entrance & Scroll Animations */
.hero-subtitle, .hero-title, .hero-text, .hero-buttons {
    animation: slideUpEntrance 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
}

.hero-subtitle { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.3s; }
.hero-text { animation-delay: 0.5s; }
.hero-buttons { animation-delay: 0.7s; }

.page-title {
    animation: slideUpEntrance 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
    animation-delay: 0.1s;
}
.page-subtitle {
    animation: slideUpEntrance 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
    animation-delay: 0.3s;
}

@keyframes slideUpEntrance {
    0% { transform: translateY(40px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items */
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.25s; }
.reveal.delay-3 { transition-delay: 0.4s; }

/* Subtle glow for buttons */
.btn-primary {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

