body {
    font-family: 'Poppins', sans-serif;
    padding-top: 90px; /* Offset for the fixed header */
    background-color: #f8f9fa;
}

/* Glassmorphism Header */
.triplooops-nav {
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white */
    backdrop-filter: blur(12px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -1px;
    color: #333;
}

.nav-link {
    color: #444 !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: #ff4d4d !important; /* Matches the 'Home' color in your image */
}

.contact-section i {
    color: #000;
    font-size: 1.1rem;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .nav-link {
        margin: 10px 0;
    }
    .contact-section {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #ddd;
    }
}
/* Glassmorphism Footer */
.triplooops-footer {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ff4d4d;
}

/* Social Icons */
.social-icon {
    width: 35px;
    height: 35px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    background: #ff4d4d;
    color: white;
}

/* Newsletter Subscription */
.newsletter-form {
    background: #fff;
    border-radius: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.btn-subscribe {
    background: #ff4d4d;
    color: white;
    border-radius: 25px;
    font-weight: 500;
}

/* Large Background Text */
.footer-bg-text {
    font-size: 6rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.03); /* Extremely faint like the image */
    margin: 40px 0;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-bg-text { font-size: 3rem; }
}

/* Contact Page Specifics */
.social-icon-btn {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon-btn:hover {
    background: #ff4d4d;
    color: #fff;
}

.icon-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.glass-form-container {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.custom-input {
    background: #f8f9fa !important;
    border: none !important;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
}

.btn-submit {
    background-color: #ff4d4d;
    color: white;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #e04343;
    transform: translateY(-2px);
}

.info-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.3s;
}

.info-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #ff4d4d;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.3rem;
}
/* Review Page Styles */
.glass-review-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: transform 0.3s ease;
}

.glass-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.stars {
    font-size: 0.85rem;
}

.review-header h1 {
    letter-spacing: -1px;
}
/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 15px;
}

.popup-content {
    width: 100%;
    max-width: 850px;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    animation: slideUp 0.5s ease-out;
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.image-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.popup-input {
    background: #f1f3f5 !important;
    border: none !important;
    padding: 12px 15px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    z-index: 10;
    cursor: pointer;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .popup-content { max-width: 100%; }
}
.btn-quick-connect {
    background-color: #ff4d4d; /* Brand Red */
    color: white;
    border: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
}

.btn-quick-connect:hover {
    background-color: #e04343;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 77, 0.4);
}

/* Ensure the contact section doesn't get too crowded on small screens */
@media (max-width: 576px) {
    .contact-section .btn-quick-connect {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}
/* Hero Banner Background */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    min-height: 500px;
    margin-top: -90px; /* Merges with the transparent glass header */
}

/* Glassmorphism Search Bar */
.search-bar-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.search-bar-container .form-control:focus {
    box-shadow: none;
    background: transparent;
}

.btn-search {
    background-color: #ff4d4d;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.btn-search:hover {
    background-color: #e04343;
    transform: scale(1.05);
}

/* Category Section */
.category-scroll {
    gap: 30px;
    padding-bottom: 10px;
}

.category-item {
    text-align: center;
    color: #717171;
    text-decoration: none;
    min-width: 80px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: 0.3s;
    opacity: 0.7;
}

.category-item i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.category-item:hover, .category-item.active {
    color: #000;
    opacity: 1;
    border-bottom: 2px solid #000;
}

.category-item.active {
    border-bottom-color: #ff4d4d;
}

/* Hide scrollbar for category icons but allow scrolling */
.category-scroll::-webkit-scrollbar { display: none; }


/* Property Card Container */
.property-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Smooth premium transition */
    border: 1px solid var(--premium-glass-border);
    cursor: pointer;
    position: relative;
}

/* The "Raise" Effect on Hover */
.property-card:hover {
    transform: translateY(-12px); /* Raises the card */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

/* Image Section */
.property-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-slides img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.property-slides img.active {
    opacity: 1;
}

/* Dots & Actions Over Image */
.slide-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}

.dot.active { background: #fff; width: 8px; height: 8px; }

.image-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
}

.action-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--premium-dark);
}

/* Content Details */
.amenities span {
    font-size: 0.8rem;
    color: #666;
}

.price {
    font-size: 1.15rem;
    color: var(--premium-dark);
}
/* FAQ Accordion Styling */
.glass-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--premium-glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.glass-accordion .accordion-button {
    background: transparent;
    color: var(--premium-dark);
    padding: 20px;
}

.glass-accordion .accordion-button:not(.collapsed) {
    color: var(--premium-gold);
    box-shadow: none;
}

/* Premium CTA Section */
.glass-cta {
    background: linear-gradient(135deg, var(--premium-dark), #333);
    border: 1px solid var(--premium-glass-border);
    position: relative;
    overflow: hidden;
}

.glass-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.btn-light:hover {
    background-color: var(--premium-gold);
    color: white !important;
    border-color: var(--premium-gold);
}
/* --- CTA Visibility Fix --- */
.cta-section {
    position: relative;
    z-index: 10; /* Ensures it stays above any background layers */
    clear: both;   /* Prevents floating elements from overlapping */
}

.premium-cta-box {
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%); /* Midnight Charcoal */
    border: 2px solid rgba(197, 160, 89, 0.3); /* Rose Gold Glow */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Premium Buttons for CTA */
.btn-premium-light {
    background-color: #C5A059; /* Rose Gold */
    color: #ffffff;
    border: none;
    transition: 0.3s;
}

.btn-premium-light:hover {
    background-color: #b38f4d;
    transform: translateY(-3px);
    color: #fff;
}

.btn-premium-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #C5A059; /* Rose Gold */
    transition: 0.3s;
}

.btn-premium-outline:hover {
    background: rgba(197, 160, 89, 0.1);
    color: #C5A059;
}

/* Background Decoration to make it "visible" and premium */
.premium-cta-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(197, 160, 89, 0.1); /* Faint Gold Shine */
    filter: blur(80px);
    border-radius: 50%;
}