/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2d3436;
    background-color: #fdfdfd;
    background-image: radial-gradient(#e91e6305 1px, transparent 1px);
    background-size: 30px 30px;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

a {
    text-decoration: none;
    color: #e91e63;
}

a:hover {
    color: #c2185b;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.btn:hover {
    background: #5a6268;
}

.btn-primary {
    background: #007bff;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-danger {
    background: #dc3545;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #2d2d35;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: #1a1a20;
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff4081;
    box-shadow: 0 0 0 3px rgba(255, 64, 129, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Alerts */
.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Header */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid #f1f2f6;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    gap: 8px;
    flex-wrap: nowrap;
}

.header-search {
    flex-shrink: 0;
    max-width: 220px;
    position: relative;
}

.header-search form {
    display: flex;
    align-items: center;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    background: #f8f9fa;
    padding: 8px 16px;
    gap: 8px;
    width: 220px;
}

.header-search input {
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    width: 100%;
    color: #2d3436;
}

.header-search input::placeholder {
    color: #b2bec3;
}

.header-search button {
    background: none;
    border: none;
    color: #b2bec3;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    flex-shrink: 0;
}


.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background: #e91e63;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.logo h1 {
    color: #1a0b2e;
    font-size: 26px;
    font-weight: 800;
    white-space: nowrap;
    margin: 0;
}

.header-search form {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border: 1px solid #f1f2f6;
    border-radius: 50px;
    padding: 8px 18px;
    width: 240px;
}

.header-search input {
    border: none;
    background: transparent;
    font-size: 15px;
    outline: none;
    width: 100%;
    color: #2d3436;
}

.header-search button {
    background: none;
    border: none;
    color: #b0b0b0;
    cursor: pointer;
    padding: 0;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 1;
    flex-wrap: nowrap;
    overflow: hidden;
}

.main-nav a {
    padding: 8px 12px;
    color: #2d3436;
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
}

.main-nav a:hover {
    color: #e91e63;
    background: #fce4ec;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #ff4081 0%, #e91e63 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
    background: #2d2d35;
    color: white;
}

.btn-secondary:hover {
    background: #3d3d45;
}

.btn-danger {
    background: #d32f2f;
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #1a0b2e;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    padding: 80px 20px 40px;
}

.mobile-menu.active {
    right: 0;
    display: block;
}

@media (max-width: 992px) {

    .main-nav,
    .header-search {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

.mobile-menu a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    color: #333;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a0b2e 0%, #311b92 100%);
    color: white;
    padding: 80px 0 140px;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(233, 30, 99, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    color: #fee140;
    margin-bottom: 30px;
    border: 1px solid rgba(254, 225, 64, 0.2);
    font-weight: 600;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(to bottom, #fff 0%, #f1f1f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 19px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.btn-explore {
    background: #e91e63;
    padding: 14px 35px;
}

.btn-whatsapp-hero {
    background: #25d366;
    padding: 14px 35px;
    color: white !important;
}

.btn-whatsapp-hero:hover {
    background: #20b858;
    transform: translateY(-2px);
}

.hero-search-wrapper {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
    z-index: 100;
}

.hero-search-bar {
    background: #ffffff;
    padding: 12px;
    border-radius: 100px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-search-bar select {
    flex: 1;
    padding: 15px 25px;
    border: none;
    background: transparent;
    color: #2d3436;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    border-right: 1px solid #f1f2f6;
}

.hero-search-bar select:last-of-type {
    border-right: none;
}

.hero-search-bar .btn-search {
    background: linear-gradient(135deg, #ff4081 0%, #e91e63 100%);
    color: white;
    padding: 15px 50px;
    border: none;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    transition: all 0.3s;
}

/* Browse Categories Section */
.browse-categories {
    padding: 60px 0 40px;
    background: #fff;
    text-align: center;
}

.browse-categories h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin-bottom: 40px;
    color: #1a0b2e;
    font-weight: 800;
}

.category-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.category-home-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.category-home-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.1);
    border-color: rgba(233, 30, 99, 0.2);
}

.category-home-card i {
    font-size: 40px;
    background: linear-gradient(135deg, #ff4081 0%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: block;
}

.category-home-card h3 {
    font-size: 20px;
    color: #1a0b2e;
    font-weight: 700;
}

.search-form input,
.search-form select {
    padding: 12px 25px;
    border: none;
    border-radius: 0;
    font-size: 15px;
    background: transparent;
    color: #1a0b2e;
    border-right: 1px solid #eee;
}

.search-form select:last-of-type {
    border-right: none;
}

.search-form input {
    flex: 1;
}

.search-form button {
    padding: 12px 40px;
    background: #e91e63;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.search-form button:hover {
    background: #c2185b;
    transform: scale(1.05);
}

/* Featured Listings */
.featured-listings {
    padding: 50px 0;
}

.featured-listings h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
    color: #1a0b2e;
    font-weight: 800;
    text-transform: capitalize;
}

.featured-listings h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #e91e63;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Listings Grid */
.listings-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.listing-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    display: flex;
    position: relative;
    border: 1px solid #f1f2f6;
    height: 250px;
    margin-bottom: 30px;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #e91e63;
}

.listing-card .image-container {
    width: 280px;
    min-width: 280px;
    height: 250px;
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
}

/* Stylish Placeholder for missing images */
.listing-card .image-container::before {
    content: "\f03e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #dee2e6;
    z-index: 1;
}

.listing-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.6s ease;
}

.listing-card:hover img {
    transform: scale(1.08);
}

.listing-content {
    flex: 1;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    height: 250px;
}

.listing-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #1a0b2e;
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.listing-badge.featured {
    background: linear-gradient(135deg, #ff4081 0%, #e91e63 100%);
}

.listing-content h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
    color: #1a0b2e;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.listing-content .description {
    color: #636e72;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f2f6;
    padding-top: 20px;
}

.listing-info-tags {
    display: flex;
    gap: 20px;
    color: #636e72;
    font-size: 13px;
    font-weight: 500;
}

.listing-info-tags span {
    display: flex;
    align-items: center;
}

.listing-info-tags span i {
    color: #e91e63;
    margin-right: 8px;
    font-size: 14px;
}

.listing-actions-group {
    display: flex;
    gap: 10px;
}

.btn-call,
.btn-whatsapp {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: 1px solid #f1f2f6;
}

.btn-call {
    color: #d32f2f;
}

.btn-whatsapp {
    color: #25d366;
}

.btn-call span,
.btn-whatsapp span {
    display: none;
}

.btn.btn-primary {
    background: #e91e63;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.btn.btn-primary:hover {
    background: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

/* Mobile Responsiveness for Listing Cards */
@media (max-width: 768px) {
    .listing-card {
        flex-direction: row;
        height: 180px;
        min-height: 180px;
        border-radius: 20px;
        margin-bottom: 20px;
        gap: 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
        border: 1px solid #f1f2f6;
    }

    .listing-card .image-container {
        width: 130px;
        min-width: 130px;
        height: 100%;
        flex-shrink: 0;
        border-radius: 20px 0 0 20px;
    }

    .listing-content {
        padding: 12px 15px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }

    .listing-content h3 {
        font-size: 15px;
        margin-bottom: 2px;
        font-weight: 800;
        color: #1a0b2e;
        line-height: 1.2;
    }

    .listing-content .description {
        font-size: 11px;
        margin-bottom: 4px;
        -webkit-line-clamp: 2;
        line-height: 1.3;
        color: #636e72;
    }

    .listing-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding-top: 6px;
        border-top: 1px solid #f8f9fa;
    }

    .listing-info-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 10px;
        color: #7f8c8d;
        width: 100%;
    }

    .listing-info-tags span {
        display: flex;
        align-items: center;
        gap: 4px;
        white-space: nowrap;
    }

    .listing-info-tags i {
        color: #e91e63;
        font-size: 9px;
    }

    .listing-actions-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
    }

    .btn-call, .btn-whatsapp {
        width: 100%;
        height: 36px;
        border-radius: 50px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        background: transparent;
        border: 1px solid #f1f2f6;
        padding: 0 5px;
        letter-spacing: 0.2px;
    }

    .btn-call {
        color: #e67e22;
        border-color: #e67e22;
    }

    .btn-whatsapp {
        color: #27ae60;
        border-color: #27ae60;
    }

    .btn-call span,
    .btn-whatsapp span {
        display: inline-block;
    }

    .btn-call i,
    .btn-whatsapp i {
        font-size: 11px;
    }

    .btn.btn-primary {
        display: none;
    }
}


/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin: 50px 0;
    gap: 12px;
}

.pagination a {
    padding: 12px 20px;
    background: #16161a;
    border: 1px solid #2d2d35;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s;
}

.pagination a.active,
.pagination a:hover {
    background: #ff4081;
    color: white;
    border-color: #ff4081;
    transform: translateY(-2px);
}

.listing-management-actions {
    display: flex;
    gap: 8px;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-active {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.status-badge.status-inactive {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.2);
}

.status-badge.status-sold {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

/* Listing Detail */
.listing-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0;
}

.listing-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.listing-images .main-image {
    grid-column: span 2;
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.listing-images .thumb-image {
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s;
}

.listing-images .thumb-image:hover {
    transform: scale(1.05);
}

.listing-info {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f2f6;
}

.listing-price {
    font-size: 36px;
    font-weight: 800;
    color: #ff4081;
    margin: 25px 0;
}

.listing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #f1f2f6;
}

.listing-meta span {
    color: #666;
    font-size: 14px;
}

.seller-info {
    margin: 40px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #f1f2f6;
}

.seller-details {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.seller-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.listing-attributes .attributes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.listing-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-section {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin: 60px 0;
    border: 1px solid #f1f2f6;
}

/* Forms */
.form-container {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.listing-form input[type="file"] {
    padding: 10px;
    border: 2px dashed #ddd;
    border-radius: 5px;
    cursor: pointer;
}

.listing-form input[type="file"]:hover {
    border-color: #007bff;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.current-image {
    max-width: 200px;
    height: auto;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.gallery-preview img {
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* Messages */
.messages-list {
    margin-top: 30px;
}

.message-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.message-card.unread {
    border-left: 4px solid #007bff;
}

.message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.message-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.message-body {
    margin: 10px 0;
    color: #333;
}

.reply-form {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Profile */
.profile-container {
    max-width: 1000px;
    margin: 40px auto;
}

.profile-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-top: 30px;
}

.profile-sidebar {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.profile-info h2 {
    color: #333;
    margin-bottom: 5px;
}

.profile-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.profile-actions {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.profile-actions h3 {
    margin-bottom: 15px;
}

/* Favorites */
.empty-state {
    text-align: center;
    padding: 80px 40px;
    background: #16161a;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2d2d35;
}

.empty-state h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 28px;
}

.empty-state p {
    color: #b0b0b0;
    margin-bottom: 30px;
    font-size: 18px;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.category-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.3s ease;
    color: inherit;
    border: 1px solid #f1f2f6;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: #e91e63;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.category-icon {
    font-size: 56px;
    color: #ff4081;
    margin-bottom: 20px;
    background: rgba(255, 64, 129, 0.1);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.category-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 22px;
}

.category-card p {
    color: #ff4081;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.category-card small {
    color: #909090;
    margin-top: 10px;
}

/* Footer */
.main-footer {
    background: #0a0a0b;
    color: #b0b0b0;
    margin-top: 80px;
    border-top: 1px solid #2d2d35;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    padding: 60px 0;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #555;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }

    .hero h1 {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-bottom: 40px;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    .hero-search-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-top: 30px;
    }

    .hero-search-bar {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
        gap: 15px;
        width: 100%;
    }

    .hero-search-bar select {
        width: 100%;
        border-right: none !important;
        border-bottom: 1px solid #f1f2f6;
        padding: 12px;
        font-size: 14px;
    }

    .hero-search-bar .btn-search {
        width: 100%;
        border-radius: 12px;
        padding: 16px;
        margin: 0;
    }

    .container {
        padding: 0 20px;
    }
}

/* Auth Pages */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: radial-gradient(circle at center, #1a1a24 0%, #0a0a0b 100%);
}

.auth-box {
    background: #16161a;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 450px;
    border: 1px solid #2d2d35;
}

.auth-box h1 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 35px;
    font-weight: 800;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
}

.auth-links a {
    color: #007bff;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
}

.page-header h1 {
    color: #ffffff;
    font-weight: 800;
}

.page-content h1,
.page-content h2,
.page-content h3 {
    color: #ffffff;
    margin-bottom: 25px;
}

.page-content p {
    color: #b0b0b0;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature {
    text-align: center;
    padding: 30px;
    background: #16161a;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2d2d35;
}

.feature h3 {
    color: #007bff;
    margin-bottom: 15px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.contact-info h3,
.contact-form-container h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-form {
    background: #16161a;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #2d2d35;
}

.faq-container {
    margin: 40px 0;
}

.faq-item {
    background: #16161a;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2d2d35;
    overflow: hidden;
}

.faq-item h3 {
    padding: 20px;
    cursor: pointer;
    color: #ffffff;
    margin: 0;
}

.faq-item h3:hover {
    background: #1a1a24;
}

.faq-content {
    display: none;
    padding: 0 20px 20px;
    color: #b0b0b0;
}

.faq-contact {
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    background: #16161a;
    border-radius: 15px;
    border: 1px solid #2d2d35;
}

/* --- NEW HOMEPAGE SECTIONS --- */

/* Our Services Section */
.our-services {
    padding: 50px 0;
    background: #fdfdfd;
    text-align: center;
}

/* Newly Added Profiles Section */
.newly-added-section {
    padding: 50px 0;
}

/* Section Titles */
.hp-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.hp-section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1a0b2e;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hp-section-title p {
    font-size: 18px;
    color: #636e72;
    max-width: 600px;
    margin: 0 auto;
}

.hp-section-title .title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #ff4081, #e91e63);
    margin: 25px auto 0;
    border-radius: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(233, 30, 99, 0.1);
    border-color: rgba(233, 30, 99, 0.15);
}

.service-icon-wrapper {
    width: 90px;
    height: 90px;
    background: #fff0f5;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #e91e63;
    font-size: 36px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, #ff4081 0%, #e91e63 100%);
    color: #ffffff;
    transform: rotate(15deg);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
}

.service-card h3 {
    font-size: 19px;
    color: #1a0b2e;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: #636e72;
    font-size: 16px;
    line-height: 1.8;
}

/* Browse by Location Section */
.browse-location {
    padding: 50px 0;
    background: #fff;
    text-align: center;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.location-column {
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s;
    text-align: left;
}

.location-column:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.location-column h3 {
    font-size: 18px;
    color: #1a0b2e;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.location-column h3 i {
    color: #e91e63;
    font-size: 20px;
}

.location-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.location-links li a {
    color: #636e72;
    font-size: 15px;
    transition: all 0.3s;
    display: block;
    text-decoration: none;
}

.location-links li a:hover {
    color: #e91e63;
    transform: translateX(8px);
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
    background: #f9f9fb;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.4s;
    text-align: left;
}

.testimonial-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.testimonial-card i.fa-quote-left {
    font-size: 40px;
    color: #f1f2f6;
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 0;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #2d3436;
    font-style: italic;
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #f1f2f6;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4081 0%, #e91e63 100%);
    border-radius: 50%;
}

.testimonial-user strong {
    color: #1a0b2e;
    font-size: 15px;
    font-weight: 600;
}

.testimonial-stars i {
    color: #f1c40f;
    font-size: 14px;
}

/* FAQ Section */
.hp-faq-section {
    padding: 50px 0;
    background: #fff;
    text-align: center;
}

.hp-faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.hp-faq-item {
    background: #ffffff;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s;
}

.hp-faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hp-faq-question {
    padding: 22px 30px;
    font-size: 17px;
    font-weight: 600;
    color: #1a0b2e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hp-faq-question i {
    transition: transform 0.3s;
    color: #e91e63;
}

.hp-faq-item.active .hp-faq-question i {
    transform: rotate(180deg);
}

.hp-faq-answer {
    padding: 0 35px 25px;
    display: none;
    color: #636e72;
    line-height: 1.8;
}

.hp-faq-item.active .hp-faq-answer {
    display: block;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 998;
    transition: all 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4081 0%, #e91e63 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
    z-index: 999;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.4);
}

/* Profile Detail Page Refinement */
.breadcrumb-nav {
    background: transparent;
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: none;
}

.breadcrumb-nav .container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #95a5a6;
    letter-spacing: 0.5px;
}

.breadcrumb-nav a {
    color: #e91e63;
    font-weight: 500;
}

.breadcrumb-nav i {
    font-size: 10px;
    color: #b0b0b0;
}

.profile-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 50px;
    margin-bottom: 80px;
    align-items: start;
}

.profile-main-image {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.profile-main-content h1 {
    font-size: 38px;
    color: #1a0b2e;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.profile-main-content {
    background: #fff;
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    height: auto;
}

.sidebar-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f2f6;
}

.sidebar-card h2 {
    font-size: 22px;
    color: #1a0b2e;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.btn-call-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    width: 100%;
    padding: 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
}

.btn-call-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.3);
    color: white;
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f8f9fa;
}

.detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    color: #7f8c8d;
    font-weight: 600;
    font-size: 15px;
}

.detail-value {
    color: #1a0b2e;
    font-weight: 700;
    font-size: 15px;
    text-align: right;
}

.detail-value i {
    color: #e91e63;
    margin-right: 8px;
}

.profile-main-image:hover {
    transform: scale(1.01);
    transition: all 0.5s ease;
}

.gallery-thumb {
    width: 100%;
    border-radius: 16px;
    height: 250px;
    object-fit: cover;
    border: 1px solid #f1f2f6;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.gallery-thumb:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #e91e63;
}

.profile-description-box {
    background: #fff;
    padding: 30px 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    margin-top: 20px;
    border-top: 1px solid #f1f2f6;
}

.btn-whatsapp-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    width: 100%;
    padding: 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 17px;
    transition: all 0.3s;
    margin-top: 15px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-profile:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
    color: white;
}

/* Profile Badges & Pills */
.profile-badge-container {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.profile-badge {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-verified {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.badge-featured {
    background: #fff8e1;
    color: #f57f17;
    border: 1px solid #ffecb3;
}

.badge-premium {
    background: #fce4ec;
    color: #c2185b;
    border: 1px solid #f8bbd0;
}

.services-offered-section {
    margin-top: 40px;
}

.services-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.service-pill {
    background: #e91e63;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.2);
}

/* Reviews System */
.reviews-section {
    margin-top: 60px;
}

.review-form-box {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f1f2f6;
    margin-top: 30px;
}

.review-form-box h3 {
    margin-bottom: 25px;
    font-size: 24px;
}

.rating-stars {
    color: #fee140;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.sidebar-more-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-more-links a {
    color: #e91e63;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
}

.sidebar-more-links a:hover {
    padding-left: 5px;
}

/* Category Page Styles */
.category-hero {
    background: linear-gradient(135deg, #1a0b2e 0%, #301058 100%);
    padding: 80px 0 100px;
    color: white;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.category-hero .container {
    position: relative;
    z-index: 2;
}

.category-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(233, 30, 99, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
}

.category-hero .breadcrumb {
    font-size: 14px;
    margin-bottom: 25px;
    opacity: 0.8;
}

.category-hero .breadcrumb a {
    color: white;
    text-decoration: none;
}

.category-hero .breadcrumb i {
    font-size: 10px;
    margin: 0 10px;
}

.category-hero h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.category-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.filter-section {
    margin-top: -45px;
    position: relative;
    z-index: 20;
    margin-bottom: 60px;
}

.filter-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.filter-group {
    flex: 1;
}

.filter-group label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #a0a0a0;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
}

.filter-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #f1f2f6;
    border-radius: 14px;
    background: #fdfdfd;
    font-weight: 600;
    color: #1a0b2e;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.btn-filter {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.2);
}

.btn-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(233, 30, 99, 0.3);
}

.btn-reset {
    background: #f8f9fa;
    color: #1a0b2e;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    border: 1px solid #f1f2f6;
    transition: all 0.3s;
}

.btn-reset:hover {
    background: #eee;
}

@media (max-width: 768px) {
    .category-hero {
        padding: 60px 0 80px;
    }

    .category-hero h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .category-hero p {
        font-size: 15px;
    }

    .filter-section {
        margin-top: -30px;
        margin-bottom: 40px;
    }

    .filter-card {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        align-items: stretch;
    }

    .btn-filter,
    .btn-reset {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

/* SEO Footer Columns */
.listing-seo-footer {
    margin: 60px 0 0;
    padding: 60px 0;
    border-top: 1px solid #f1f2f6;
    background: #fafafa;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.seo-column {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f2f6;
    height: 100%;
}

.seo-column h3 {
    font-size: 18px;
    color: #1a0b2e;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    border-bottom: 2px solid #e91e63;
    display: inline-block;
    padding-bottom: 5px;
}

.seo-links {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seo-links li a {
    color: #636e72;
    font-size: 14px;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
    line-height: 1.4;
}

.seo-links li a:hover {
    color: #e91e63;
    padding-left: 5px;
}

/* Responsive adjustments for SEO Section */
@media (max-width: 992px) {
    .seo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .listing-seo-footer {
        margin-top: 40px;
        padding: 40px 0;
    }

    .seo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .seo-column {
        padding: 20px;
        border-radius: 12px;
    }

    .seo-column h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .seo-links li a {
        padding: 8px 0;
        border-bottom: 1px solid #f8f9fa;
    }

    .seo-links li:last-child a {
        border-bottom: none;
    }
}

/* Modernized Listing Detail Styles */
.profile-main-content {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.profile-header-new {
    margin-bottom: 40px;
}

.profile-main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.profile-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.profile-title-row h1 {
    font-size: 32px;
    color: #1a0b2e;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}

.profile-badge-container {
    display: flex;
    gap: 12px;
}

.profile-badge-container span {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-verified {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.badge-featured {
    background: #fff8e1;
    color: #ffa000;
    border: 1px solid rgba(255, 160, 0, 0.1);
}

/* Quick Info Bar */
.quick-info-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fafafa;
    border: 1px solid #f1f2f6;
    border-radius: 20px;
    padding: 25px;
    margin-top: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-right: 1px solid #eee;
}

.info-item:last-child {
    border-right: none;
}

.info-item i {
    font-size: 20px;
    color: #e91e63;
}

.info-item span {
    font-size: 15px;
    font-weight: 700;
    color: #1a0b2e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-item span {
    color: #e91e63;
    font-size: 18px;
}

/* Sections */
.section-header {
    margin-bottom: 25px;
    position: relative;
}

.section-header h2 {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: #1a0b2e;
    margin-bottom: 10px;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: #e91e63;
    border-radius: 2px;
}

.description-text {
    font-size: 18px;
    line-height: 1.8;
    color: #636e72;
}

/* Gallery */
.gallery-section {
    margin-top: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-thumb {
    transform: scale(1.1);
}

/* Sidebar Refinement */
.sidebar-card {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f2f6;
    margin-bottom: 30px;
}

.sidebar-card h3 {
    font-size: 18px;
    color: #1a0b2e;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.sidebar-price {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: #fafafa;
    border-radius: 15px;
}

.price-amount {
    font-size: 28px;
    font-weight: 800;
    color: #e91e63;
    display: block;
}

.price-label {
    font-size: 13px;
    color: #636e72;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
    margin-bottom: 12px;
}

.btn-call-sidebar {
    background: #1a0b2e;
    color: white;
}

.btn-whatsapp-sidebar {
    background: #25d366;
    color: white;
}

.sidebar-info-list .info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    color: #636e72;
    font-size: 14px;
}

.info-row .value {
    color: #1a0b2e;
    font-weight: 700;
    font-size: 14px;
}

.location-links a {
    display: block;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
    color: #1a0b2e;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.location-links a:hover {
    background: #e91e63;
    color: white;
}

/* Responsive adjustments for Detail Page */
@media (max-width: 992px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }

    .profile-main-image {
        height: 450px;
    }

    .quick-info-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .info-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .profile-main-content {
        padding: 20px;
        border-radius: 20px;
    }

    .profile-title-row h1 {
        font-size: 28px;
    }

    .quick-info-bar {
        grid-template-columns: 1fr;
    }

    .info-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }
}

/* Dark Premium Footer */
.main-footer-dark {
    background: #1a0b2e;
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.logo-footer h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.branding p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 280px;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #e91e63;
}

.separator {
    color: rgba(255, 255, 255, 0.2);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.city-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.cities-title {
    color: #4834d4 !important;
    /* Blueish title as in screenshot */
    text-transform: uppercase;
}

.footer-bottom-new {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.platform-label {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-new {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .city-list {
        grid-template-columns: 1fr;
    }
}