/* For Dashboard */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --text: #333;
    --text-light: #7f8c8d;
    --border: #e1e1e1;
    --success: #2ecc71;
    --warning: #f39c12;
    --light-bg: #f8f9fa;
}

body {
    color: var(--text);
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    /* display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0; */
    position: relative;

}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--secondary);
    font-size: 28px;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

/* Navigation */
nav {
    background-color: #ffffff;
    padding: 10px 0;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0px;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s, background 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--secondary);
    background-color: var(--light);
}

/* Dropdown styles */
nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    display: none;
    flex-direction: column;
    min-width: 180px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

nav ul li ul li a {
    padding: 10px 15px;
}

/* Show dropdown on hover */
nav ul li:hover > ul {
    display: flex;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

/* Enhanced Property Header Card */
        .property-header-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            padding: 30px;
            margin-bottom: 30px;
            margin-top: 30px;
            position: relative;
            overflow: hidden;
        }
        
        .property-header-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
        }

        .btn {
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .btn-outline {
            border: 1px solid var(--secondary);
            color: var(--secondary);
            background: transparent;
        }

        .btn-primary {
            background: var(--secondary);
            color: white;
            margin-top: 5px;
            border-radius: 5%;
            justify-content: center;
        }

        .btn-success {
            background: var(--success);
            color: white;
        }

        .btn-warning {
            background: var(--warning);
            color: white;
        }

        .btn-danger {
            background: var(--accent);
            color: white;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Header Actions */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .action-btn {
            position: relative;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            gap: 8px;
            /* border-radius: 50%; */
            border-radius: 6px;
            transition: background-color 0.3s ease;
            /* display: flex; */
            align-items: center;
            justify-content: center;
        }
        /* .action-btn {
            display: flex;
            align-items: center;
            padding: 10px 10px;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        } */

        .action-btn:hover {
            background-color: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .action-btn-primary {
            background: var(--secondary);
            color: white;
        }
        
        .action-btn-outline {
            background: transparent;
            border: 1px solid var(--secondary);
            color: var(--secondary);
        }
        
        .action-btn:hover {

        }

.badge-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Our Story */
.our-story {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-content {
    flex: 1;
}

.story-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}

.story-content p {
    margin-bottom: 20px;
    font-size: 17px;
}

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Partners Section */
.partners-section {
    background: var(--light);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.partners-title {
    text-align: center;
    margin-bottom: 50px;
}

.partners-title h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.partners-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

.partners-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.partner-logo {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    margin: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.partners-track:hover {
    animation-play-state: paused;
}

/* Responsive Design for these sections */
@media (max-width: 992px) {
    .our-story {
        flex-direction: column;
    }
    
    .story-image {
        order: -1;
    }
    
    .partner-logo {
        width: 180px;
        height: 110px;
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    .partners-title h2 {
        font-size: 28px;
    }
    
    .partner-logo {
        width: 150px;
        height: 90px;
        margin: 0 15px;
    }
}

.notification-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f1f1;
    transition: background-color 0.3s ease;
}

.notification-item:hover {
    background-color: #f8f9fa;
}

.notification-item.unread {
    background-color: #f0f7ff;
}

.notification-time {
    font-size: 12px;
    color: #6c757d;
}

.wishlist-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
}

.wishlist-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.profile-dropdown {
    min-width: 200px;
}

.user-profile-header {
    padding: 15px;
    border-bottom: 1px solid #f1f1f1;
}
 .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 16px;
    color: var(--primary);
}

.user-info span {
    font-size: 14px;
    color: var(--text-light);
}

.animate-ring {
    animation: ring 2s infinite;
}

@keyframes ring {
    0% { transform: rotate(0); }
    5% { transform: rotate(15deg); }
    10% { transform: rotate(-15deg); }
    15% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    25% { transform: rotate(0); }
    100% { transform: rotate(0); }
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.search-box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.search-box input, .search-box select {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.search-box button {
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.search-box button:hover {
    background: #c0392b;
}

/* Search Page Hero */
.search-hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.search-hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.search-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}
/* Admin Sidebar Scroll Fix */
#sidebar {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#sidebar .sidebar-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}
#sidebar .sidebar-content::-webkit-scrollbar {
    width: 6px;
}
#sidebar .sidebar-content::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}
#sidebar .sidebar-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.3);
}

.sidebar-link.active,
.sidebar-link.submenu-link.active {
    background-color: rgba(0, 123, 255, 0.1); /* light blue */
    border-radius: 5px;
}

/* Main Content Layout */
.search-content,
.property-content,
.profile-content {
    display: flex;
    gap: 30px;
    margin: 40px 0 60px;
}

/* Sidebar Common Styles */
.filters-sidebar,
.property-sidebar,
.profile-sidebar {
    flex: 0 0 30%;
    max-width: 30%;
}

.filters-card,
.sidebar-card,
.profile-card,
.nav-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.filters-card h3,
.sidebar-card h3,
.profile-card h3,
.nav-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

/* Results Section */
.results-section,
.property-form,
.profile-details {
    flex: 0 0 70%;
    max-width: 70%;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}
.label {
    margin-top: 10px;
}

.filter-group input, .filter-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 16px;
    transition: border 0.3s;
}

.filter-group input:focus, .filter-group select:focus {
    border-color: var(--secondary);
    outline: none;
}

.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-range input {
    flex: 1;
}

.filter-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

.filter-actions .btn {
    width: 100%;
    text-align: center;
}

.advanced-filters {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.toggle-advanced {
    background: none;
    border: none;
    color: var(--secondary);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    padding: 10px 0;
}

/* Search Results Header */
.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.results-count {
    color: var(--text-light);
}

.view-options {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options select {
    padding: 8px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: white;
}

.view-toggle {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.view-toggle button {
    padding: 8px 15px;
    background: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.view-toggle button.active {
    background: var(--secondary);
    color: white;
}

/* Section Title */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}
/* Similar Properties */
.similar-properties {
    margin-bottom: 60px;
}



/* Fix black focus border in hero search */
.hero .search-box input:focus,
.hero .search-box select:focus {
    outline: none !important;
    border-color: #acc6d7;         /* your custom color */
    box-shadow: 0 0 5px rgba(116, 192, 230, 0.5) !important;

}

/* Properties Grid */
.properties {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}
 .properties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }

  .property-card-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }

        .property-card-info {
            padding: 20px;
        }

        .property-card-price {
            font-size: 20px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
        }
        .property-card-address {
            color: var(--text-light);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .property-card-features {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid var(--border);
            padding-top: 15px;
            margin-top: 15px;
        }

        .property-card-feature {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .property-card-feature i {
            color: var(--secondary);
            margin-bottom: 5px;
        }

        .property-card-feature span {
            font-size: 14px;
            color: var(--text-light);
        }
.property-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.property-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.property-img-container {
    position: relative;
}

.property-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.property-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

/* Wishlist Button */
.wishlist-btn, .favorite-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
    text-decoration: none;
}

.wishlist-btn:hover, .favorite-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wishlist-btn:hover .favorite-icon, .favorite-btn:hover .favorite-icon {
    color: #ff4757;
}

.wishlist-btn.active, .favorite-btn.active {
    background: #ff4757;
}

.wishlist-btn i, .favorite-btn i {
    font-size: 18px;
    transition: all 0.3s ease;
    color: var(--accent);
}

.wishlist-btn.active i, .favorite-btn.active i {
    color: white;
}

/* Animation for adding to wishlist */
@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.wishlist-btn.animate, .favorite-btn.animate {
    animation: heartBeat 0.6s ease;
}

.property-info {
    padding: 20px;
}

.property-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.property-price-view {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.property-address {
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}


.property-features {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature i {
    color: var(--secondary);
    margin-bottom: 5px;
}

.feature span {
    font-size: 14px;
    color: var(--text-light);
}

/* Map View */
.map-view {
    display: none;
    height: 500px;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Services Section */
.services {
    background: var(--light);
    padding: 60px 0;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    background: var(--secondary);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
}

.testimonial-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 300px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--primary);
}

.author-info p {
    color: var(--text-light);
    font-size: 14px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    gap: 10px;
}

.pagination button {
    padding: 8px 15px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination button.active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.pagination button:hover:not(.active) {
    background: #f5f5f5;
}

/* Sidebar Specific Styles */
.tips-list {
    list-style: none;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.tips-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tip-icon {
    background: var(--light);
    color: var(--secondary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.progress-steps {
    list-style: none;
}

.progress-steps li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step-number {
    background: var(--light);
    color: var(--text);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-number.active {
    background: var(--secondary);
    color: white;
}

.step-number.completed {
    background: var(--success);
    color: white;
}

.step-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.step-info p {
    font-size: 14px;
    color: var(--text-light);
}

/* Profile Specific Styles */
.profile-card {
    text-align: center;
}

.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--light);
}

.profile-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
}

.profile-role {
    color: var(--text-light);
    margin-bottom: 20px;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.nav-card {
    padding: 0;
    overflow: hidden;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
}

.nav-item:last-child {
    border-bottom: none;
}

.nav-item:hover {
    background: var(--light);
}

.nav-item.active {
    background: var(--secondary);
    color: white;
}

.nav-item.active i {
    color: white;
}

.nav-item i {
    width: 20px;
    text-align: center;
    color: var(--secondary);
}

/* Form Styles */
.form-card,
.details-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.form-card h3,
.details-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--primary);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

 
        .action-btn-primary:hover {
            background: #2980b9;
        }
        
        .action-btn-outline:hover {
            background: rgba(52, 152, 219, 0.1);
        }

/* 
        .form-group {
            margin-bottom: 20px;
        } */

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }


 /* Form Styles */
        .tour-form, .enquiry-form {
            display: flex;
            flex-direction: column;
            gap: 0px;
        }


.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}

.form-group label.required::after {
    content: " *";
    color: var(--accent);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5) !important;
    border-radius: 4px;
    font-size: 16px;
    transition: border 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5) !important;

}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
}

.form-actions .btn {
    min-width: 150px;
    justify-content: center;
}

/* Image Upload */
.image-upload {
    border: 2px dashed var(--border);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s;
    cursor: pointer;
}

.image-upload:hover {
    border-color: var(--secondary);
    background: rgba(52, 152, 219, 0.05);
}

.upload-icon {
    font-size: 48px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.upload-text h4 {
    margin-bottom: 10px;
    color: var(--primary);
}

.upload-text p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.image-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.preview-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.preview-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(231, 76, 60, 0.8);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.feature-checkbox {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: var(--light-bg);
    border-radius: 6px;
    transition: all 0.2s;
}

.feature-checkbox:hover {
    background: #e9ecef;
}

.feature-checkbox input {
    margin-right: 0.75rem;
}

/* Pricing Options */
.pricing-options {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.pricing-option {
    flex: 1;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-option.selected {
    border-color: var(--secondary);
    background: rgba(52, 152, 219, 0.05);
}

.pricing-option h4 {
    margin-bottom: 10px;
    color: var(--primary);
}

.pricing-option p {
    font-size: 14px;
    color: var(--text-light);
}

/* Notification Settings */
.notification-settings {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.notification-info p {
    font-size: 14px;
    color: var(--text-light);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--secondary);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.security-alert {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.security-alert h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #e65100;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 14px;
}
/* Contact Content */
        .contact-content {
            display: flex;
            gap: 40px;
            margin: 60px 0;
        }
/* About Hero */
        .about-hero {
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0 80px;
            text-align: center;
        }

        .about-hero h2 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .about-hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto;
        }


/* FAQ Section */
        .faq-section {
            background: white;
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .section-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            font-size: 18px;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid var(--border);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            background: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: var(--light);
        }

        .faq-question h4 {
            font-size: 18px;
            color: var(--primary);
        }

        .faq-icon {
            color: var(--secondary);
            transition: transform 0.3s;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer p {
            padding: 0 0 20px;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* Map Section */
        .map-section {
            padding: 60px 0;
            background: #f9f9f9;
        }

        .map-container {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 400px;
        }
        .contact-info {
            flex: 0 0 40%;
            max-width: 40%;
        }

        .info-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 25px;
        }

        .info-card h3 {
            font-size: 22px;
            margin-bottom: 25px;
            color: var(--primary);
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border);
        }

        .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        .contact-method:last-child {
            margin-bottom: 0;
        }

        .contact-icon {
            background: var(--light);
            color: var(--secondary);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 20px;
        }

        .contact-details h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--primary);
        }

        .contact-details p {
            color: var(--text-light);
            margin-bottom: 5px;
        }

        .contact-details a {
            color: var(--secondary);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-details a:hover {
            color: var(--primary);
        }

        .office-hours {
            list-style: none;
        }

        .office-hours li {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
        }

        .office-hours li:last-child {
            border-bottom: none;
        }

        .day {
            font-weight: 500;
        }

        .time {
            color: var(--text-light);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light);
            color: var(--primary);
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--secondary);
            color: white;
        }

         .contact-form {
            flex: 0 0 60%;
            max-width: 60%;
        }

        .form-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .form-card h3 {
            font-size: 22px;
            margin-bottom: 25px;
            color: var(--primary);
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border);
        }
        /* Partners Section */
        .partners-section {
            background: var(--light);
            padding: 80px 0;
            overflow: hidden;
            position: relative;
        }

        .partners-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .partners-title h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .partners-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            font-size: 18px;
        }

        .partners-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .partners-track {
            display: flex;
            width: max-content;
            animation: scroll 30s linear infinite;
        }

        .partner-logo {
            flex-shrink: 0;
            width: 200px;
            height: 120px;
            margin: 0 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 80px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Pause animation on hover */
        .partners-track:hover {
            animation-play-state: paused;
        }

        @media (max-width: 768px) {
            .partners-title h2 {
                font-size: 28px;
            }
            
            .partner-logo {
                width: 150px;
                height: 90px;
                margin: 0 15px;
            }
        }

        /* Responsive Design for these sections */
    @media (max-width: 992px) {
        .our-story {
            flex-direction: column;
        }
        
        .story-image {
            order: -1;
        }
        

    }

        /* Our Story */
.our-story {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-content {
    flex: 1;
}

.story-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}

.story-content p {
    margin-bottom: 20px;
    font-size: 17px;
}

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Newsletter Styles */
.newsletter-form {
    margin-top: 15px;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.input-wrapper {
    position: relative;
    flex: 1;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
    font-size: 16px;
    z-index: 2;
}

.newsletter-input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.newsletter-input::placeholder {
    color: #95a5a6;
}

.newsletter-btn {
    padding: 14px 24px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.newsletter-btn:active {
    transform: translateY(0);
}

.newsletter-message {
    margin-top: 12px;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.newsletter-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.newsletter-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}
/* Mobile Responsive */
@media (max-width: 992px) {
    .search-content,
    .property-content,
    .profile-content {
        flex-direction: column;
    }
    .contact-content {
                flex-direction: column;
            }
    
    .filters-sidebar,
    .property-sidebar,
    .profile-sidebar,
    .results-section,
    .property-form,
    .profile-details {
        flex: 0 0 100%;
        max-width: 100%;
    }
     .contact-info, .contact-form {
                flex: 0 0 100%;
                max-width: 100%;
            }
    
    .filters-sidebar,
    .property-sidebar,
    .profile-sidebar {
        order: 2;
    }
    
    .results-section,
    .property-form,
    .profile-details {
        order: 1;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .header-actions {
        gap: 10px;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h2 {
        font-size: 27px;
    }

    .hero p {
        font-size: 16px;
    }

    .search-box {
        flex-direction: column;
    }

    .properties {
        grid-template-columns: 1fr;
    }

    .search-hero h2 {
        font-size: 28px;
    }

    .search-hero p {
        font-size: 16px;
    }

    .search-results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .view-options {
        width: 100%;
        justify-content: space-between;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .pricing-options {
        flex-direction: column;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }
}

 /* Property Gallery */
        .property-gallery {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 10px;
            margin: 30px 0;
            height: 700px;
            overflow-y: auto;

        }

        .main-image {
            background: #ddd;
            border-radius: 8px;
            overflow: hidden;
            height: 100%;
            position: relative;
        }

        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .thumbnail-grid {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: repeat(3, 1fr);
            gap: 10px;
            height: 100%;
        }

        .thumbnail {
            background: #ddd;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .thumbnail:hover img {
            transform: scale(1.05);
        }

        .thumbnail.active {
            border: 2px solid var(--secondary);
        }

        /* Property Details */
        .property-details {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            color: var(--secondary);
            font-size: 20px;
        }

        .feature-value {
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 5px;
        }

        .feature-label {
            color: var(--text-light);
            font-size: 14px;
        }

        .property-description {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            margin-top: 50px;
        }

        .property-description h2 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .property-description p {
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .amenities {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .amenities h2 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .amenity {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .amenity i {
            color: var(--secondary);
        }

          /* Accordion Styles */
        .accordion {
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            margin-bottom: 30px;
        }

        .accordion-item {
            border-bottom: 1px solid var(--border);
        }

        .accordion-item:last-child {
            border-bottom: none;
        }

        .accordion-header {
            background: var(--light);
        }

        
        .property-tags {
            display: flex;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .price-label {
            font-size: 14px;
            opacity: 0.9;
        }
        
        
        .property-tag {
            background: var(--light);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .property-tag i {
            color: var(--secondary);
            font-size: 12px;
        }
        

        .accordion-button {
            width: 100%;
            padding: 15px 20px;
            background: none;
            border: none;
            text-align: left;
            font-size: 18px;
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

                /* Responsive Design */
        @media (max-width: 992px) {
            .property-gallery {
                grid-template-columns: 1fr;
                height: auto;
            }
            
            .thumbnail-grid {
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: 1fr;
                height: 150px;
            }
            
            .property-details {
                grid-template-columns: 1fr;
            }
            
            .col-lg-3 {
                flex: 0 0 50%;
                max-width: 50%;
            }
            
            .video-container {
                height: 300px;
            }
        }

        .accordion-button:hover {
            background: rgba(52, 152, 219, 0.1);
        }

        .accordion-button:after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            transition: transform 0.3s;
        }

        .accordion-button.collapsed:after {
            transform: rotate(-90deg);
        }

        .accordion-collapse {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .accordion-collapse.show {
            max-height: 500px;
        }

        .accordion-body {
            padding: 25px;
            margin-bottom: 0px;
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px;
        }

        .row-gap-3 {
            gap: 15px 0;
        }
        
        .col-lg-3, .col-md-6, .col-12 {
            padding: 0 10px;
        }

        .col-lg-3 {
            flex: 0 0 25%;
            max-width: 25%;
        }

        .col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }

        .col-12 {
            flex: 0 0 100%;
            max-width: 100%;
        }
         .buy-property-items {
            background: white;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 15px;
            transition: all 0.3s;
            height: 100%;
        }

        .buy-property-items:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .buy-property-items p {
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text);
        }

        .buy-property-items i {
            color: var(--secondary);
            font-size: 18px;
        }
         .text-muted {
            color: var(--text-light) !important;
        }

        /* Video Section */
        .video-container {
            position: relative;
            width: 100%;
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            background: #000;
            margin-bottom: 20px;
        }

        .video-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            cursor: pointer;
            transition: all 0.3s;
        }

        .video-placeholder:hover {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
        }

        .video-placeholder i {
            font-size: 60px;
            margin-bottom: 20px;
        }

        .video-placeholder h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .video-placeholder p {
            font-size: 16px;
            opacity: 0.9;
        }

        .video-input-section {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .video-input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid var(--border);
            border-radius: 4px;
            font-size: 16px;
        }

        .video-btn {
            padding: 10px 20px;
            background: var(--secondary);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .video-btn:hover {
            background: #2980b9;
        }
        /* Tabs */
        .tabs {
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .tab-headers {
            display: flex;
            border-bottom: 1px solid var(--border);
        }

        .tab-header {
            flex: 1;
            padding: 15px 20px;
            text-align: center;
            background: var(--light);
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
            color: var(--text-light);
        }

        .tab-header.active {
            background: white;
            color: var(--primary);
            border-bottom: 2px solid var(--secondary);
        }

        .tab-header:hover {
            background: #f5f5f5;
        }

        .tab-content {
            display: none;
            padding: 25px;
        }

        .tab-content.active {
            display: block;
        }
   /* Comments & Reviews Section */
        .comments-section {
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
            margin-bottom: 60px;
        }
        
        .comment-rating {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .comment-rating .stars {
            color: #ffc107;
            font-size: 14px;
        }

        .comment-date {
            font-size: 14px;
            color: var(--text-light);
        }

        .comment-text {
            line-height: 1.6;
            color: var(--text);
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 20px;
        }

        .modal-overlay.active {
            display: flex;
        }

        .comment-modal {
            background: white;
            border-radius: 8px;
            width: 100%;
            max-width: 600px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-header {
            padding: 20px 25px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 15px;
        }

        .modal-header h3 {
            font-size: 20px;
            color: var(--primary);
        }

        .close-modal {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-light);
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: var(--accent);
        }

        .modal-body {
            padding: 25px;
        }

        .rating-input {
            margin-bottom: 20px;
        }

        .rating-input label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
            color: var(--text);
        }

        .star-rating {
            display: flex;
            gap: 5px;
            direction: rtl;
        }

        .star-rating input {
            display: none;
        }

        .star-rating label {
            font-size: 28px;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }

        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffc107;
        }
        
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin: 15px;
        }

        .modal-actions {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            margin-top: 20px;
        }

        .comments-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .comments-header h2 {
            font-size: 24px;
            color: var(--primary);
        }

        .comments-stats {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .rating-summary {
            text-align: center;
            padding: 15px;
            background: var(--light);
            border-radius: 8px;
        }

        .average-rating {
            font-size: 36px;
            font-weight: 700;
            color: var(--secondary);
            line-height: 1;
        }

        .stars {
            color: #ffc107;
            margin: 5px 0;
        }

        .total-reviews {
            color: var(--text-light);
            font-size: 14px;
        }

        .add-comment-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--secondary);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .add-comment-btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }

        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .comment {
            padding-bottom: 25px;
            border-bottom: 1px solid var(--border);
        }

        .comment:last-child {
            border-bottom: none;
        }

        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .comment-user {
            display: flex;
            align-items: center;
            gap: 10px;
        }

                @media (max-width: 768px) {
           

           
            .amenities-grid {
                grid-template-columns: 1fr;
            }
            
            .properties-grid {
                grid-template-columns: 1fr;
            }
            

            
            .main-image {
                height: 300px;
            }
            
            .comments-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .property-title-section {
                flex-direction: column;
            }

             /* .property-title-section {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                margin-bottom: 20px;
                flex-wrap: wrap;
                gap: 15px;
            } */

            .property-title {
            flex: 1;
            min-width: 300px;
            }
            
        
        .property-title h1 {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 8px;
            line-height: 1.2;
        }
            .property-price-section {
                width: 100%;
            }
            /* .property-price-section {
                background: linear-gradient(135deg, var(--secondary), #2980b9);
                color: white;
                padding: 20px;
                border-radius: 10px;
                text-align: center;
                min-width: 200px;
                box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
            } */
            
            .property-actions {
                justify-content: center;
            }

            .property-actions {
                display: flex;
                gap: 15px;
                margin-top: 25px;
                flex-wrap: wrap;
            }
            
            
            .accordion-button {
                padding: 12px 15px;
                font-size: 16px;
            }
            
            .accordion-body {
                padding: 20px;
            }
            
            .video-container {
                height: 250px;
            }
        }

         @media (max-width: 480px) {
            .auth-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .auth-buttons .btn {
                width: 100%;
                text-align: center;
            }
            
            .video-container {
                height: 200px;
            }
            
            .video-placeholder i {
                font-size: 40px;
            }
            
            .video-placeholder h3 {
                font-size: 20px;
            }
        }

.notification-container {
    border-radius: 12px;
    overflow: hidden;
}

.notification-header {
    background: transparent;
}

.avatar-wrapper {
    position: relative;
}

.avatar {
    width: 48px;
    height: 48px;
    font-size: 0.875rem;
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.notication-item {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.notication-item:last-child {
    border-bottom: none;
}

.notication-item:hover {
    background-color: #f8f9fa;
    text-decoration: none;
}

.notication-item:active {
    background-color: #e9ecef;
}

.notification-actions .btn {
    border-radius: 6px;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
}

.empty-state {
    padding: 2rem 1rem;
}

/* Pagination Styles */
.pagination {
    margin-bottom: 0;
}

.page-link {
    border: 1px solid #e9ecef;
    color: #6c757d;
    padding: 0.5rem 0.75rem;
}

.page-item.active .page-link {
    background-color: #4a90e2;
    border-color: #4a90e2;
}

.page-link:hover {
    color: #4a90e2;
    background-color: #f8f9fa;
    border-color: #e9ecef;
}

/* Responsive Design */
@media (max-width: 768px) {
    .notification-header .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .notication-item .row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .notification-actions {
        justify-content: center;
    }
    
    .avatar {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }
}

/* Animation for new notifications */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 144, 226, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0);
    }
}

.notication-item:first-child .avatar-wrapper .avatar {
    animation: pulse 2s infinite;
}

.notification-dropdown {
    position: relative;
}

.nav-notification-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    color: #6c757d;
    transition: all 0.3s ease;
    position: relative;
}

.nav-notification-btn:hover {
    background-color: #f8f9fa;
    color: #4a90e2;
}

.nav-notification-btn i {
    font-size: 1.2rem;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.notification-menu {
    min-width: 380px;
    border-radius: 12px;
    overflow: hidden;
}

.notification-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.notification-list {
    background: white;
}

.notification-item {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.notification-item:hover {
    background-color: #f8f9fa;
    text-decoration: none;
}

.notification-item.unread {
    background-color: #f0f7ff;
    border-left: 3px solid #4a90e2;
}

.notification-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.unread-indicator {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid white;
}

.notification-link {
    transition: all 0.2s ease;
}

.notification-link:active {
    background-color: #e9ecef;
}

.empty-notification i {
    opacity: 0.5;
}

.mark-all-read {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

/* Scrollbar Styling */
.notification-list::-webkit-scrollbar {
    width: 6px;
}

.notification-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.notification-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.notification-list::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Animation for new notifications */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-item {
    animation: slideIn 0.3s ease;
}

/* Pulse animation for bell when new notifications */
@keyframes bellRing {
    0% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
    70% { transform: rotate(2deg); }
    80% { transform: rotate(-2deg); }
    90% { transform: rotate(1deg); }
    100% { transform: rotate(0); }
}

.nav-notification-btn.has-unread i {
    animation: bellRing 2s ease-in-out;
}

/* Responsive Design */
@media (max-width: 576px) {
    .notification-menu {
        min-width: 320px;
        margin-right: -50px;
    }
    
    .notification-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.75rem;
    }
}
.mobile-nav {
    display: none;
    background: #ffffff;
    border-top: 1px solid #e9ecef;
    padding: 1rem 0;
}

.mobile-nav nav ul {
    flex-direction: column;
    gap: 0;
}

.mobile-nav nav ul li a {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav .dropdown-menu {
    position: static !important;
    transform: none !important;
    border: none;
    box-shadow: none;
    margin-left: 1rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .header-container {
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
    
    nav.d-lg-block {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .notification-menu {
        width: 320px !important;
        margin-right: -100px;
    }
    
    .header-actions {
        gap: 1rem;
    }
    
    .action-btn, .nav-notification-btn {
        padding: 0.4rem;
    }
}

@media (max-width: 375px) {
    .notification-menu {
        width: 280px !important;
        margin-right: -120px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
}
.hero .search-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.hero .search-box input,
.hero .search-box select,
.hero .search-box button {
    height: 43px;
    font-size: 16px;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.hero .search-box input {
    flex: 1;
    min-width: 200px;
}

.hero .search-box select {
    min-width: 150px;
}

.hero .search-box button {
    background: var(--secondary);
    color: white;
    border: none;
    cursor: pointer;
    min-width: 120px;
    transition: background 0.3s;
}

.hero .search-box button:hover {
    background: var(--primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero .search-box {
        flex-direction: column;
        width: 100%;
        overflow: visible !important;

    }
    .select2-container {
        width: 100% !important;
        
    }
    .select2-container .select2-selection--single {
    height: 42px !important;
    width:  100% !important;
    display: flex !important;
    align-items: center !important;
    border-radius: 6px !important;
    line-height: 0.4 !important;
    padding-right: 10px;
    padding-right: 88px !important;
    }

    .select2-selection__rendered {
    white-space: normal !important;   /* allow text to wrap */
    text-overflow: unset !important;  /* remove ... */
    overflow: visible !important;     /* show full text */
    line-height: 1.2 !important;      /* adjust spacing */
    padding-right: 10px !important;
}

    .select2-dropdown {
    z-index: 9999 !important; /* ensures dropdown is visible */
    }
    /* Ensure search input and results show fully */
    .select2-search__field {
    width: 100% !important;
    }


    .hero .search-box input,
    .hero .search-box select,
    .hero .search-box button {
        width: 100%;
        min-width: auto;
        height: 45px;
        font-size: 16px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .hero .search-box input,
    .hero .search-box select,
    .hero .search-box button {
        height: 48px;
        font-size: 16px;
        padding: 10px 14px;
    }
}
#property-results {
    display: contents;
}

/* How It Works Section */
.how-it-works {
    padding: 50px 0;
    background: #f8f9fa;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-top: 25px;
}

.works-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.works-container::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #3498db 20%, 
        #2ecc71 50%, 
        #3498db 80%, 
        transparent 100%);
    z-index: 1;
}

.work-step {
    position: relative;
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
    flex: 1;
    margin: 0 20px;
    border: 1px solid #e9ecef;
}

.work-step:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.work-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    animation: pulse 2s infinite;
}

.step-icon i {
    font-size: 2.5rem;
    color: white;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step-content p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

.step-arrow {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: #3498db;
    font-size: 2rem;
    z-index: 3;
}

.work-step:last-child .step-arrow {
    display: none;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.work-step:nth-child(1) {
    animation: float 4s ease-in-out infinite;
}

.work-step:nth-child(2) {
    animation: float 4s ease-in-out infinite 1s;
}

.work-step:nth-child(3) {
    animation: float 4s ease-in-out infinite 2s;
}

/* Responsive Design */
@media (max-width: 992px) {
    .works-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .works-container::before {
        display: none;
    }
    
    .work-step {
        margin: 0;
        width: 100%;
        max-width: 400px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .work-step {
        padding: 30px 20px;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
    }
    
    .step-icon i {
        font-size: 2rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .work-step {
        padding: 25px 15px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .step-icon i {
        font-size: 1.8rem;
    }
}

/* Hover effects for links */
.work-step {
    cursor: pointer;
}

.work-step:first-child:hover {
    background: linear-gradient(135deg, white, #e3f2fd);
}

.work-step:nth-child(2):hover {
    background: linear-gradient(135deg, white, #e8f5e8);
}

.work-step:last-child:hover {
    background: linear-gradient(135deg, white, #fff3e0);
}










/* ===== Modern Toast Design ===== */
.toast-container {
    pointer-events: none;
}

#wishlist-toast {
    min-width: 340px;
    max-width: 400px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: glassSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: auto;
    position: relative;
}

.toast-glass {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.toast-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.toast-icon {
    font-size: 1.3rem;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.toast-body {
    flex: 1;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.toast-close {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.toast-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.3) 0%, 
        rgba(118, 75, 162, 0.2) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.6;
}

/* Color Variants */
#wishlist-toast.success {
    background: rgba(72, 187, 120, 0.1);
    border: 1px solid rgba(72, 187, 120, 0.3);
}

#wishlist-toast.success .toast-glow {
    background: linear-gradient(135deg, 
        rgba(72, 187, 120, 0.4) 0%, 
        rgba(56, 161, 105, 0.3) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
}

#wishlist-toast.error {
    background: rgba(245, 101, 101, 0.1);
    border: 1px solid rgba(245, 101, 101, 0.3);
}

#wishlist-toast.error .toast-glow {
    background: linear-gradient(135deg, 
        rgba(245, 101, 101, 0.4) 0%, 
        rgba(229, 62, 62, 0.3) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
}

#wishlist-toast.warning {
    background: rgba(237, 137, 54, 0.1);
    border: 1px solid rgba(237, 137, 54, 0.3);
}

#wishlist-toast.warning .toast-glow {
    background: linear-gradient(135deg, 
        rgba(237, 137, 54, 0.4) 0%, 
        rgba(221, 107, 32, 0.3) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
}

/* Animations */
@keyframes glassSlideIn {
    0% {
        transform: translateX(100%) scale(0.8);
        opacity: 0;
    }
    70% {
        transform: translateX(-10px) scale(1.02);
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

/* Hover Effects */
#wishlist-toast:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Responsive */
@media (max-width: 480px) {
    #wishlist-toast {
        min-width: 300px;
        max-width: 90vw;
        border-radius: 18px;
    }
    
    .toast-glass {
        padding: 1rem 1.25rem;
        gap: 0.875rem;
    }
    
    .toast-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .toast-icon {
        font-size: 1.2rem;
    }
}

/* Auto-dismiss animation */
#wishlist-toast.auto-dismiss::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.4) 100%);
    border-radius: 0 0 20px 20px;
    animation: dismissProgress 5s linear forwards;
}

@keyframes dismissProgress {
    from { width: 100%; }
    to { width: 0%; }
}

/* More Properties Button Styles - Compact Version */

        .view-more-container {
            text-align: center;
            margin: 3rem 0;
        }
        
        .view-more-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            text-decoration: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .view-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
            background: linear-gradient(135deg, #2980b9, #3498db);
        }
        
        .view-more-btn:active {
            transform: translateY(-1px);
        }
        
        .view-more-btn i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .view-more-btn:hover i {
            transform: translateX(4px);
        }
        
        /* Ripple effect */
        .view-more-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }
        
        .view-more-btn:focus:not(:active)::after {
            animation: ripple 1s ease-out;
        }
        
        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 0.5;
            }
            100% {
                transform: scale(20, 20);
                opacity: 0;
            }
        }
        
        /* Alternative button style */
        .view-more-btn-alt {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }
        
        .view-more-btn-alt:hover {
            background: linear-gradient(135deg, #c0392b, #e74c3c);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
        }
        
        /* Outline button style */
        .view-more-btn-outline {
            background: transparent;
            color: #3498db;
            border: 2px solid #3498db;
            box-shadow: none;
        }
        
        .view-more-btn-outline:hover {
            background: #3498db;
            color: white;
            box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
        }
        .featured-ribbon {
            position: absolute;
            top: 17px;
            right: -62px;
            background: linear-gradient(135deg, #ff5a5f, #ff7e5f);
            color: #fff;
            padding: 6px 60px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            transform: rotate(45deg);
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            z-index: 5;
        }
    
/* Add this to your page <style> or main CSS file */
/* Ensure AJAX-loaded pagination is centered */
