/* Core Design System */
:root {
    --primary-color: #A00D4B;
    --primary-hover: #800a3c;
    --bg-color: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #eeeeee;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.4);
    --radius: 8px;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Age Popup */
.age-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-popup {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(160, 13, 75, 0.3);
}

.age-popup .h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.age-popup p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Search Section */
.search-section {
    padding: 40px 0;
    background: #fdf2f6;
    text-align: center;
}

.search-bar-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-select {
    width: 100%;
    padding: 18px 25px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    font-size: 1.1rem;
    appearance: none;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23A00D4B' 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") no-repeat right 20px center;
    outline: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(160, 13, 75, 0.1);
}

/* Intro Section */
.intro-section {
    padding: 60px 0;
    text-align: center;
}

.intro-section h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

.intro-text p, .split-content p {
    margin-bottom: 20px;
}


/* Profiles Grid */
.profiles-section {
    padding-bottom: 60px;
}

.long-profile-card {
    display: flex;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 40px;
    /* overflow: hidden; */
    position: relative;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.long-profile-card:hover {
    box-shadow: var(--shadow-hover);
}

.profile-img-container {
    width: 25%;
    min-width: 250px;
    height: 250px;
    overflow: hidden;
    position: relative; 
}

.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
    object-position: 0 -50px;
}

.profile-content {
    width: 75%;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
}

.profile-title {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.profile-title a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-title a:hover {
    color: var(--secondary-color);
}

.profile-desc {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.profile-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    padding: 10px 0;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.detail-item svg {
    width: 20px;
    color: var(--primary-color);
}

.profile-actions {
    margin-top: auto;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.action-btn {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.btn-call {
    background: #e74c3c;
}

.btn-whatsapp {
    background: #25d366;
}

.btn-whatsapp {
    background: #25d366;
}

.btn-telegram {
    background: #0088cc;
}

/* Attractive Tag */
.attractive-tag {
    position: absolute;
    top: -15px;
    right: -10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff4d91 100%);
    color: white;
    padding: 7px 18px;
    font-weight: 800;
    font-size: 0.75rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(160, 13, 75, 0.4);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Content Area */
.content-area {
    padding: 60px 0;
    background: #f9f9f9;
}

.content-area h2,
.content-area h3 {
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.content-area p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Mini Profile Cards */
.mini-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.mini-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 300px;
}

.mini-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.mini-card-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.mini-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-card:hover .mini-card-img img {
    transform: scale(1.15);
}

.mini-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 20px 10px;
    /* White shade coming from bottom */
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 60%, transparent 100%);
    backdrop-filter: blur(4px);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    transform: translateY(10px);
}

.mini-card:hover .mini-card-info {
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 70%, transparent 100%);
    transform: translateY(0);
    padding-top: 20px;
}

.mini-card h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.mini-card p {
    font-size: 0.8rem;
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

/* Related Cities */
.related-cities {
    padding: 60px 0;
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.city-pill {
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.city-pill:hover {
    background: var(--primary-color);
    color: white;
}

/* FAQ & Tags */
.faq-tags-section {
    padding: 60px 0;
    background: #fdf2f6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.tags-container {
    text-align: center;
}

.tag-link {
    display: inline-block;
    margin: 6px;
    padding: 10px 22px;
    background: white;
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    box-shadow: 0 3px 6px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tag-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.tag-link:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(160, 13, 75, 0.25);
}

.tag-link:hover::before {
    width: 100%;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col .h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: white;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.rta-logo {
    max-width: 150px;
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}
/* Split Feature Section */
.split-feature {
    padding: 80px 0;
    display: flex;
    /* align-items: center; */
    gap: 50px;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    max-height: 650px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-position: top;
    object-fit: cover;
}

/* Data Tables */
.tables-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
}

.data-table-container {
    background: white;
    /* padding: 30px; */
    border-radius: var(--radius);
    margin-bottom: 2%;
    overflow:auto;
    width:100%;
    /* box-shadow: var(--shadow); */
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #800a3c;
}

.data-table th, .data-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Premium Mini Card Redesign */
.premium-mini-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: all 0.4s ease;
    border: 1px solid rgba(160, 13, 75, 0.2);
}

.premium-mini-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(160, 13, 75, 0.3);
    border-color: var(--primary-color);
}

.card-img-wrapper {
    height: 320px;
    position: relative;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-mini-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.card-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff4d91;
    font-weight: 800;
}

/* Enhanced Tags */
.enhanced-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 40px 0;
}

.premium-tag {
    background: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.premium-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.tag-item {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    background: white;
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    box-shadow: 0 3px 6px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .profile-img-container {
        width: 100%;
        height: 350px;
    }

    .long-profile-card {
        flex-direction: column;
    }

    .profile-content {
        width: 100%;
    }

    .split-feature {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }

    .tables-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .intro-section h1 {
        font-size: 1.8rem;
    }

    .profile-details {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .attractive-tag{
        top: -15px; 
        right: 0;
    }
}