
/* ===== AMENITIES SECTION ===== */
.amenity-card {
    background: var(--bg-primary);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.amenity-card:hover::before {
    transform: scaleX(1);
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
}

.amenity-icon i {
    font-size: 2.5rem;
    color: var(--text-primary);
}

.amenity-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.amenity-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== LOCATION SECTION ===== */
.location-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.location-map-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.location-map-container:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.location-map-container iframe {
    display: block;
    width: 100%;
}

.nearby-places h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.nearby-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.nearby-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-gold);
}

.nearby-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--accent-gold) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.nearby-item:hover .nearby-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
}

.nearby-icon i {
    font-size: 1.75rem;
    color: var(--text-primary);
}

.nearby-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.nearby-info p {
    font-size: 0.9rem;
    margin: 0;
}

.location-contact {
    border-left: 4px solid var(--primary-gold);
}

.location-contact h5 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-primary);
}

.location-contact p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.location-contact i {
    margin-right: 8px;
    color: var(--primary-gold);
}

/* ===== ABOUT PAGE (MOSAIC & SERVICES) ===== */

.mosaic-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    padding: 100px 5% 40px;
    background: var(--bg-secondary);
}

.mosaic-main-img {
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.mosaic-main-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mosaic-side-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mosaic-side-img {
    height: calc(250px - 7.5px);
    overflow: hidden;
    border-radius: 12px;
}

.mosaic-img-box img,
.mosaic-img-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mosaic-img-box:hover img,
.mosaic-img-box:hover video {
    transform: scale(1.05);
}

.mosaic-text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* Optional: Add overlay for better text readability if needed */
.mosaic-main-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    pointer-events: none;
    border-radius: 12px;
}

.service-highlights { padding: 60px 0; }

.highlight-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.highlight-img { height: 250px; overflow: hidden; }
.highlight-img img { width: 100%; height: 100%; object-fit: cover; }
.highlight-content { padding: 2rem; }

.amenities-section { background: white; padding: 80px 0; }

.amenity-category-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenity-category-title i { color: var(--primary-gold); }

.amenity-grid-lite {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.amenity-item-lite {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border: 1px solid transparent;
    transition: 0.3s;
}

.amenity-item-lite:hover {
    background: white;
    border-color: var(--primary-gold);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.amenity-item-lite i { color: var(--primary-gold); font-size: 1.1rem; }

@media (max-width: 991px) {
    .mosaic-hero { grid-template-columns: 1fr; padding-top: 80px; }
    .mosaic-main-img { height: 350px; }
    .mosaic-side-grid { display: grid; grid-template-columns: 1fr 1fr; }
    .mosaic-side-img { height: 200px; }
}

@media (max-width: 576px) {
    .mosaic-side-grid { grid-template-columns: 1fr; }
}

/* ===== STABLE PREMIUM GALLERY GRID ===== */
.gallery-container { padding: 60px 0; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 576px) {
    .gallery-grid { grid-template-columns: 1fr; gap: 20px; }
}

.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 4/5;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:nth-child(2n) {
    aspect-ratio: 1/1; /* Subtle staggered effect without masonry glitches */
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    opacity: 0.9;
}

.gallery-card:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.gallery-card .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card h5 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0;
    transform: translateY(20px);
    transition: 0.4s ease 0.1s;
}

.gallery-card:hover h5 {
    transform: translateY(0);
}

/* Lightbox Refinements */
.modal-content.lightbox-content {
    background: transparent;
    border: none;
}

.lightbox-img {
    max-height: 85vh;
    width: auto;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.modal-header.border-0 .btn-close {
    filter: invert(1);
    opacity: 1;
    font-size: 1.5rem;
}

/* ===== SHARED PAGE HERO ===== */
.hero-page {
    height: 45vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 100px; /* Space for fixed navbar */
}

.hero-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-page .container {
    position: relative;
    z-index: 2;
}

/* ===== CONTACT VISUALS & GLASSMORPHISM ===== */
.contact-hero-immersive {
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-hero-immersive::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.glass-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 134, 11, 0.1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: 0.3s;
    border: 1px solid var(--border-light);
}

.contact-info-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md);
}

.contact-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    font-size: 1.5rem;
    transition: 0.3s;
}

.contact-info-card:hover .contact-icon-circle {
    background: var(--primary-gold);
    color: white;
}

/* ===== GLOBAL REFINEMENTS & ANIMATIONS ===== */
html { scroll-behavior: smooth; }

@media (max-width: 991px) {
    .hero-page { height: 40vh; min-height: 350px; }
    .section-padding { padding: 4rem 0; }
}

@media (max-width: 768px) {
    .hero-page { height: 35vh; min-height: 300px; }
    .hero-title { font-size: 2.5rem !important; }
    .btn { min-height: 44px; min-width: 44px; }
    .nav-link { padding: 0.75rem 1rem !important; }
    .form-control, .form-select { min-height: 44px; }
}


/*  pop up  whatsapp  */
/* WhatsApp Popup Button Styles */
.popup_whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
    animation: popup_whatsapp_pulse 2s infinite;
}

.popup_whatsapp_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.popup_whatsapp_button i {
    font-size: 32px;
    transition: transform 0.3s ease;
}

.popup_whatsapp_button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
}

.popup_whatsapp_button:hover i {
    transform: scale(1.1);
}

/* Tooltip text */
.popup_whatsapp::before {
    content: "Chat with us";
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.popup_whatsapp::after {
    content: "";
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.popup_whatsapp:hover::before,
.popup_whatsapp:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Pulse animation */
@keyframes popup_whatsapp_pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* For mobile devices */
@media (max-width: 768px) {
    .popup_whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .popup_whatsapp_button {
        width: 50px;
        height: 50px;
    }
    
    .popup_whatsapp_button i {
        font-size: 28px;
    }
    
    .popup_whatsapp::before {
        display: none;
    }
}