:root {
    --pink: #ec4899;
    --pink-dark: #db2777;
    --purple: #9333ea;
    --purple-dark: #7e22ce;
    --navy: #0f172a;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --card-bg: rgba(255, 255, 255, 0.9);
    --border-color: rgba(236, 72, 153, 0.3);
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(circle at top, rgba(236, 72, 153, 0.1), rgba(147, 51, 234, 0.05));
    min-height: 100vh;
    color: var(--text-dark);
}

.page-wrapper {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%);
    padding-bottom: 1rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(15px);
}

.gradient-text {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gradient-pink-purple {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: white;
}

.btn-gradient-pink-purple:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(236, 72, 153, 0.25);
    color: white;
}

.btn-outline-pink {
    border: 2px solid var(--pink);
    color: var(--pink);
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-outline-pink:hover {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 12px 25px rgba(236, 72, 153, 0.25);
}

header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
}

.mobile-nav-toggle {
    display: none;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.6rem 0.9rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle.active {
    background: linear-gradient(135deg, #db2777, #7e22ce);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 996;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.nav-bar {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.95), rgba(147, 51, 234, 0.95));
    padding: 0.75rem 0;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    position: sticky;
    top: 80px;
    z-index: 1055;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1368px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.2rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-menu>li>a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.nav-menu>li.has-dropdown>a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    min-width: 240px;
    border-radius: 1rem;
    border: 2px solid var(--pink);
    box-shadow: 0 20px 45px rgba(236, 72, 153, 0.2);
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.3s ease;
    max-height: 420px;
    overflow-y: auto;
    z-index: 1060;
}

.nav-menu>li:hover>.nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

@media (max-width: 767px) {
    .nav-dropdown a {
        color: var(--card-bg);
    }
    
    .nav-menu>li.has-dropdown>a::after {
        position: absolute;
        right: 18px;
    }
}

.nav-dropdown a:hover {
    background: linear-gradient(90deg, #fce7f3 0%, #f3e8ff 100%);
    color: var(--pink);
    padding-left: 1.5rem;
}

.hero-section {
    padding: 1.5rem 0 0;
}

.city-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    overflow: visible;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.city-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(147, 51, 234, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.city-hero .hero-content { position: relative; z-index: 1; text-align: -webkit-center; }

.city-hero .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: #f9a8d4;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.city-hero h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.city-hero h1 .text-gradient-hero {
    background: linear-gradient(135deg, #ec4899, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.city-hero .hero-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.7;
}

.hero-search-wrap {
    max-width: 560px;
}
.hero-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.hero-search-input:focus {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(236, 72, 153, 0.6) !important;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.2);
}

.hero-card {
    padding: 2rem;
}

.hero-card h1 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb .link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb .link:hover {
    color: var(--pink);
}

.city-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-card {
    background: white;
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(236, 72, 153, 0.2);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.stat-card span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

.stat-card h3 {
    font-size: 1.75rem;
    margin: 0.4rem 0 0;
}

.search-box {
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1049;
    overflow: visible;
}

.search-container {
    position: relative;
    z-index: 1050;
}

.search-box .form-control {
    border-radius: 999px;
    padding-left: 4rem;
    border: 2px solid rgba(236, 72, 153, 0.3);
}

.search-box .form-control:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 0.25rem rgba(236, 72, 153, 0.2);
}

.search-box .bi-search {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pink);
    font-size: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 2px solid rgba(236, 72, 153, 0.4);
    background: rgba(236, 72, 153, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(236, 72, 153, 0.15);
}

.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 20px 30px rgba(15, 23, 42, 0.1);
    margin-top: 0.75rem;
    z-index: 1050;
    display: none;
    max-height: 280px;
    overflow-y: auto;
    text-align: left;
}

.suggestion-item {
    padding: 0.85rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.suggestion-item:hover {
    background: rgba(236, 72, 153, 0.08);
}

.suggestion-item b {
    color: #ec4899;
    font-weight: 600;
}

.view-toggle {
    display: inline-flex;
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 999px;
    overflow: hidden;
    align-items: center;
}

.view-toggle span {
    padding: 0.45rem 1.0rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--pink);
    transition: all 0.2s ease;
}

.view-toggle span.active {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
}

.listbox {
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 1.6;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    border: 2px solid #ec4899;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.listbox:hover {
    border-color: #9333ea;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
    transform: translateY(-2px);
}

.listbox a.first {
    text-decoration: none;
    color: #2563eb;
    font-weight: 600;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.listbox a.first:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.listbox .list-description {
    color: #374151;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.listbox .list-location {
    color: #2563eb;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.listbox .list-location:hover {
    color: #1d4ed8;
}

.list-view-container {
    background: linear-gradient(to bottom, #fdf2f8, #fce7f3);
    padding: 1.5rem;
    border-radius: 1rem;
}

.date-header-card {
    background: rgba(252, 231, 243, 0.6);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(236, 72, 153, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.1);
}

.date-header-card:first-child {
    margin-top: 0;
}

.date-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #dc2626;
}

.date-icon i {
    color: #dc2626;
}

.date-header-content {
    flex: 1;
}

.date-header-content h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.date-header-content p {
    margin: 0.15rem 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.galleryview {
    display: block;
}

#galleryView {
    display: block;
}

#galleryView[style*="block"] {
    display: block !important;
}

#galleryView .escort-card {
    border: 2px solid #ec4899 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    /* height: 91% !important; */
    display: flex !important;
    flex-direction: column !important;
}

#galleryView .escort-card:hover {
    border-color: #9333ea !important;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
}

#galleryView .escort-card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

#galleryView .escort-card-name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#galleryView .escort-card-name a {
    color: #374151;
    transition: color 0.2s ease;
}

#galleryView .escort-card-name a:hover {
    color: #ec4899;
}

#galleryView .escort-card-location {
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

#galleryView .escort-card-location i {
    color: #ec4899;
    font-size: 0.75rem;
}

.galleryview .escort-card {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 2px solid var(--pink);
    background: white;
    box-shadow: 0 18px 35px rgba(236, 72, 153, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galleryview .escort-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(236, 72, 153, 0.25);
}

.area-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.escort-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.escort-card-image {
    position: relative;
    height: 375px;
    overflow: hidden;
    flex-shrink: 0;
}

.escort-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.escort-card-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.badge-verified {
    background: #2563eb;
    color: white;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.escort-card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.escort-card-name {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.escort-card-location {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

a.escort-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 278px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (max-width: 575px) {
    a.escort-card-link {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
}

a.escort-card-link:hover {
    transform: translateY(-2px);
}

a.escort-card-link:hover .escort-card-name {
    color: #ec4899;
}

.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination .page-link {
    color: var(--pink);
    border-color: rgba(236, 72, 153, 0.3);
}

.pagination .page-link:hover {
    background: rgba(236, 72, 153, 0.1);
    border-color: var(--pink);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    border-color: var(--pink);
    color: white;
}

.escort-card-button {
    margin-top: 1rem;
    width: 100%;
    border-radius: 999px;
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

.area-section {
    margin-top: 1rem;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.area-card {
    border-radius: 1.25rem;
    border: 2px solid rgba(236, 72, 153, 0.2);
    padding: 0.75rem;
    background: white;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.1), transparent);
    transition: left 0.5s ease;
}

.area-card:hover::before {
    left: 100%;
}

.area-card:hover {
    border-color: var(--pink);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2);
}

.area-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.area-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.area-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
    flex: 1;
    margin-left: 1rem;
}

.area-card-arrow {
    color: var(--pink);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.area-card:hover .area-card-arrow {
    transform: translate(4px, -4px);
}

.area-card-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(236, 72, 153, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.services-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-chip {
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
    background: rgba(236, 72, 153, 0.08);
    transition: all 0.2s ease;
}

.service-chip:hover {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    border-color: transparent;
}

footer {
    background: #0b1120;
    color: rgba(255, 255, 255, 0.85);
}

footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

footer a:hover {
    color: var(--pink);
}

@media (min-width: 768px) {
    .nav-bar {
        display: block !important;
        position: sticky !important;
        top: 80px !important; /* 80px header + 62px search bar */
        max-height: none !important;
        overflow: visible !important;
        padding: 0.75rem 0 !important;
    }

    .mobile-nav-overlay {
        display: none !important;
        pointer-events: none !important;
    }

    .mobile-nav-toggle {
        display: none;
    }
}

@media (max-width: 767px) {
    .mobile-nav-toggle {
    display: flex;
    align-items: center;
        justify-content: center;
    }

    .mobile-nav-overlay {
    display: none;
}

    .mobile-nav-overlay.active {
    display: block;
}

    .nav-bar {
        position: fixed;
        top: 7px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0;
        z-index: 997;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(20px);
    }

    .nav-bar.active {
        max-height: 90vh;
        padding: 1rem 0;
        overflow-y: auto;
    }

    .nav-container {
        padding: 77px 1rem 0px 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }

    .nav-menu>li {
        width: 100%;
    }

    .nav-menu>li>a {
        width: 100%;
        /* justify-content: space-between; */
        border-radius: 0.5rem;
        padding: 1rem 1.25rem;
    }

    .nav-dropdown {
        position: static;
        width: 100%;
        margin-top: 0rem;
        opacity: 0;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 0.75rem;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(15px);
        padding: 0;
    }

    .nav-menu>li.has-dropdown.active>.nav-dropdown {
        max-height: 400px;
        padding: 0.75rem 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 575px) {
    .hero-card,
    .search-box {
        padding: 1.5rem;
    }

    .nav-menu>li>a {
        width: 100%;
        /* justify-content: space-between; */
    }
}

.bi-arrow-right {
    color: var(--pink);
}

@media (min-width: 350px) and (max-width: 575px) {
    .set-width-mobile {
        width: 75% !important;
        margin: 12px auto !important;
    }
}

@media (max-width: 767px) {
    .has-dropdown.active .nav-dropdown {
        opacity: 1;
        max-height: 500px;
    }
}

@media (max-width: 767px) {
    .nav-dropdown a {
        padding: 0.85rem 1.5rem;
        border-left: none;
        color: white;
        background: transparent;
        display: flex;
        align-items: center;
        font-weight: 500;
        transition: all 0.3s ease;
    }
}

.page-title-card {
    background: white;
    border-radius: 1rem;
    padding: 0.5rem 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 2px solid #ec4899;
    margin-bottom: 10px;
}

.date-filter-container {
    position: relative;
    display: flex;
    align-items: center;
}

.date-filter-container .form-select {
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    min-width: 200px;
    font-size: 0.875rem;
    color: #374151;
}

.date-filter-container .form-select:focus {
    border-color: #ec4899;
    box-shadow: 0 0 0 0.25rem rgba(236, 72, 153, 0.2);
}

.seo-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.page-title-card h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ec4899 0%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-title-card span {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ec4899 0%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.button-style {
    height: 42px !important;
    border-radius: 50px !important;
    padding: 0 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px !important;
    background: linear-gradient(135deg, #ec4899, #9333ea) !important;
}

.city-sections-wrapper { padding: 2rem 0 1rem; }
.city-section-block { margin-bottom: 2rem; }
.city-section-inner {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem 2.5rem;
    border: 2px solid #ec4899 !important;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}
.city-section-inner > h2:first-child { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.75rem; padding-bottom: 0.75rem; border-bottom: 3px solid transparent; border-image: linear-gradient(135deg, var(--pink), var(--purple)) 1; }
.city-section-inner h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.35rem; }
.city-section-inner p { color: #4b5563; line-height: 1.75; margin-bottom: 0.75rem; }
.city-section-inner a:not(.cat-card-btn):not(.nb-card) { color: var(--pink); text-decoration: none; }
.city-section-inner a:not(.cat-card-btn):not(.nb-card):hover { color: var(--purple); text-decoration: underline; }
.nb-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.25rem; }
.nb-card { display: flex; align-items: flex-start; gap: 0.85rem; background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 100%); border: 1px solid rgba(236, 72, 153, 0.12); border-radius: 0.85rem; padding: 1.15rem 1.25rem; text-decoration: none !important; transition: all 0.3s ease; }
.nb-card:hover { border-color: var(--pink); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(236, 72, 153, 0.12); }
.nb-card-icon { width: 38px; height: 38px; min-width: 38px; border-radius: 0.6rem; background: linear-gradient(135deg, var(--pink), var(--purple)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.95rem; }
.nb-card-body h4 { font-weight: 700; color: var(--text-dark); margin: 0 0 0.25rem; }
.nb-card-body p { color: #6b7280; line-height: 1.55; margin: 0; }
.cat-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 1.5rem; }
.cat-card-item { background: linear-gradient(145deg, #fdf2f8 0%, #faf5ff 50%, #fff 100%); border: 1px solid rgba(236, 72, 153, 0.12); border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column; transition: all 0.3s ease; }
.cat-card-item:hover { border-color: var(--pink); box-shadow: 0 10px 28px rgba(236, 72, 153, 0.1); transform: translateY(-3px); }
.cat-card-item h3 { font-weight: 700; color: var(--text-dark); margin: 0 0 0.5rem; }
.cat-card-item p { color: #6b7280; font-size: 0.88rem; line-height: 1.65; margin: 0; flex: 1; }
.cat-card-btn { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; padding: 0.55rem 1.25rem; background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff !important; font-weight: 600; font-size: 0.85rem; border-radius: 50px; text-decoration: none !important; align-self: flex-start; }
.faq-list { margin-top: 1rem; }
.faq-item { border: 1px solid #f3f4f6; border-radius: 0.75rem; margin-bottom: 0.75rem; overflow: visible; }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; background: #f9fafb; cursor: pointer; font-weight: 600; font-size: 0.93rem; color: var(--text-dark); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 1.25rem; }
.faq-item.open .faq-answer { max-height: 600px; padding: 1rem 1.25rem; }
.faq-toggle { width: 26px; height: 26px; min-width: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--purple)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.7rem; }
.cta-section { position: relative; background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%); padding: 3.5rem 0; margin-top: 1rem; overflow: visible; }
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-content h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.cta-content .cta-desc { color: rgba(255, 255, 255, 0.75); font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; }
.cta-content h2 .cta-highlight { background: linear-gradient(135deg, #ec4899, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.cta-btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.85rem 2.25rem; background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff !important; font-weight: 700; font-size: 1rem; border-radius: 50px; text-decoration: none !important; border: 2px solid rgba(255,255,255,0.15); transition: all 0.3s ease; box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3); }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(236, 72, 153, 0.4); }
@media (max-width: 767px) { .cat-cards-grid { grid-template-columns: 1fr; } .nb-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .nb-cards-grid { grid-template-columns: 1fr; } .city-section-inner { padding: 1.5rem 1.25rem; } }
