/* CSS Reset and Variables */
:root {
    --bg-primary: #000000; /* Màu nền đen tuyền */
    --bg-secondary: rgba(20, 20, 20, 0.8); /* Xám rất đậm để làm đổ bóng */
    --text-primary: #ffc0cb; /* Hồng pastel */
    --text-secondary: #f48fb1; /* Hồng pastel tối hơn một chút */
    --accent-color: #ffb6c1; /* Hồng nhạt */
    --accent-gradient: linear-gradient(135deg, #ffc0cb, #f48fb1); /* Gradient hồng pastel */
    --border-color: rgba(255, 192, 203, 0.15); /* Viền màu hồng trong suốt */
    --glass-bg: rgba(0, 0, 0, 0.7); /* Kính nền đen mờ */
    --glass-border: rgba(255, 192, 203, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    /* Soft ambient gradient background với màu hồng */
    background-image: 
        radial-gradient(at 0% 0%, rgba(255, 192, 203, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(244, 143, 177, 0.15) 0px, transparent 50%);
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: 3rem;
}

.mobile-menu-toggle {
    display: none;
}

/* Logo */
.logo a {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.logo-sg-flag {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    vertical-align: middle;
    display: inline-block;
    -webkit-text-fill-color: initial;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    border: 1.5px solid rgba(255, 192, 203, 0.3);
    flex-shrink: 0;
}

/* Main Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--text-primary);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

/* Actions Section */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.lang-btn:hover {
    background: rgba(255, 192, 203, 0.1);
}

.lang-btn svg {
    transition: transform 0.3s ease;
}

.lang-selector:hover .lang-btn svg,
.lang-selector.active .lang-btn svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    min-width: 120px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(255, 192, 203, 0.1);
    backdrop-filter: blur(10px);
}

.lang-selector:hover .lang-dropdown,
.lang-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.lang-dropdown a:hover {
    background: rgba(255, 192, 203, 0.1);
    color: var(--text-primary);
}

/* Buttons */
.btn {
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-login {
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    background: transparent;
}

.btn-login:hover {
    background: rgba(255, 192, 203, 0.1);
    border-color: rgba(255, 192, 203, 0.3);
}

.btn-register {
    background: var(--accent-gradient);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 192, 203, 0.2);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 192, 203, 0.4);
}

/* --- Search Filters & Hero --- */
.search-filters, .hero-section {
    padding-top: 125px; /* Nhường chỗ cho header */
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* --- Hero Content Layout --- */
.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3.5rem auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    text-shadow: 0 4px 15px rgba(255, 192, 203, 0.1);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Custom Filter Bar Layout */
.filter-controls.glass-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: rgba(12, 12, 12, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 0.8rem 1.2rem;
    width: fit-content;
    margin: 0 auto;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.filter-select {
    background: #141414;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.6rem 2.5rem 0.6rem 1rem !important;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    max-width: 100%;
    box-sizing: border-box;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    appearance: none;
    -webkit-appearance: none;
    -moz-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='%23ffb6c1' 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 1rem center;
    background-size: 1.2em;
}

.filter-select option, .filter-input option {
    background: #ffffff !important;
    color: #000000 !important;
    font-weight: 500;
    padding: 0.8rem 0.5rem;
}

.filter-select:hover, .filter-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(255, 192, 203, 0.2);
}

.btn-plus-toggle {
    background: #141414;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.55rem 0.9rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-plus-toggle:hover {
    background: #252525;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-search-bar {
    background: var(--accent-gradient);
    color: #000000;
    border: 1px solid rgba(255, 192, 203, 0.4);
    border-radius: 8px;
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 192, 203, 0.3);
}

.btn-search-bar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 192, 203, 0.5);
    filter: brightness(1.1);
}

.btn-search-bar svg {
    stroke: #000000;
}

.filter-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.filter-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.filter-input {
    background-color: rgba(255, 192, 203, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.filter-input:focus {
    border-color: var(--accent-color);
    background-color: rgba(255, 192, 203, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 192, 203, 0.2);
}

.filter-input::placeholder {
    color: rgba(255, 192, 203, 0.3);
}

/* Fix select options appearance on dark theme (Applied globally above) */

.btn-search {
    background: var(--accent-gradient);
    color: #000;
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 192, 203, 0.2);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 192, 203, 0.4);
}

/* --- Services Section --- */
.services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 1rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 192, 203, 0.3);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Card Styling */
.glass-panel-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.glass-panel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 192, 203, 0.15);
    border-color: rgba(255, 192, 203, 0.4);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #1a1a1a;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.glass-panel-card:hover .card-image {
    transform: scale(1.05);
}

/* Badges */
.badge {
    position: absolute;
    top: 12px;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.badge-verified {
    left: 12px;
    background: rgba(34, 197, 94, 0.85); /* Green */
    color: white;
}

.badge-vip {
    right: 12px;
    background: rgba(234, 179, 8, 0.85); /* Yellow/Gold */
    color: black;
}

/* Card Body */
.card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    flex-grow: 1;
}

.profile-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.profile-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.badge-origin {
    background: var(--accent-gradient);
    color: #000;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
}

/* Stats Grid */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.stat-col {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stat-label {
    font-size: 0.65rem;
    color: #9ca3af;
    font-weight: 700;
    text-transform: uppercase;
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Tags */
.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag-outline {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border: 1px solid rgba(255, 192, 203, 0.3);
    border-radius: 4px;
    color: var(--text-secondary);
}

/* Price Box */
.price-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 192, 203, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
    margin-top: auto;
}

.price-main {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-sub {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 0.2rem;
}

/* View Profile Button */
.btn-view-profile {
    display: block;
    text-align: center;
    background: var(--accent-gradient);
    color: #000;
    font-weight: 700;
    padding: 0.8rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.btn-view-profile:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 15px rgba(255, 192, 203, 0.3);
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.7rem 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 192, 203, 0.05);
    font-size: 0.7rem;
    color: #9ca3af;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.divider {
    margin: 0 0.3rem;
    opacity: 0.4;
}

/* Load More Button */
.load-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn-load-more {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 30px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-load-more:hover {
    background: var(--accent-gradient);
    color: #000;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 192, 203, 0.4);
}

/* --- FAQ Section --- */
.faq-section {
    max-width: 900px;
    margin: 5rem auto 3rem auto;
    padding: 0 1.5rem;
}

.faq-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.faq-subtitle {
    font-size: 1rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 192, 203, 0.03);
    border: 1px solid rgba(255, 192, 203, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 192, 203, 0.3);
    box-shadow: 0 4px 15px rgba(255, 192, 203, 0.05);
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-num {
    background: var(--accent-gradient);
    color: #000;
    font-weight: 800;
    font-size: 0.85rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    flex-grow: 1;
    line-height: 1.4;
}

.faq-icon {
    color: var(--accent-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem 0 4.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-body {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* --- Footer Styles --- */
.site-footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
    color: var(--text-secondary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-heading {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 4px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.contact-icon {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--text-primary);
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

.btn-social {
    display: inline-block;
    text-align: center;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #25d366;
    color: #000;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-telegram {
    background: rgba(0, 136, 204, 0.15);
    color: #0088cc;
    border: 1px solid rgba(0, 136, 204, 0.3);
}

.btn-telegram:hover {
    background: #0088cc;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 192, 203, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
}

.bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.bottom-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.bottom-links a:hover {
    color: var(--text-primary);
}

.copyright {
    font-size: 0.8rem;
    color: #6b7280;
}

/* --- Contact Page Styles --- */
.contact-page {
    padding-top: 140px;
    padding-bottom: 4rem;
}

.contact-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
    padding: 0 1.5rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #ffc0cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
}

.direct-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.direct-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.direct-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 192, 203, 0.4);
    box-shadow: 0 10px 25px rgba(255, 192, 203, 0.15);
}

.direct-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.telegram-bg {
    background: rgba(0, 136, 204, 0.15);
    color: #0088cc;
    border: 1px solid rgba(0, 136, 204, 0.3);
}

.whatsapp-bg {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.email-bg {
    background: rgba(255, 192, 203, 0.15);
    color: var(--accent-color);
    border: 1px solid rgba(255, 192, 203, 0.3);
}

.direct-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.direct-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form-wrapper {
    padding: 2.5rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

textarea.filter-input {
    resize: vertical;
}

/* --- Booking Page Styles --- */
.booking-page {
    padding-top: 140px;
    padding-bottom: 4rem;
}

.booking-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding: 0 1.5rem;
}

.booking-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #ffc0cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.booking-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.booking-form-wrapper {
    padding: 2.5rem;
    border-radius: 16px;
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 650px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8) sepia(1) saturate(5) hue-rotate(290deg);
    cursor: pointer;
}

.btn-submit-booking {
    margin-top: 1rem;
    font-size: 1.05rem;
    padding: 0.95rem;
    border-radius: 10px;
    letter-spacing: 1px;
}

/* ==========================================
   Responsive Styles for Mobile & Tablets
   ========================================== */

@media (max-width: 992px) {
    .header-container {
        padding: 0 1.5rem;
    }

    .main-nav ul {
        gap: 1.5rem;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Header Hamburger Responsive */
    .header-container {
        height: 75px;
        padding: 0 1.25rem;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
        padding: 0;
    }

    .mobile-menu-toggle .bar {
        width: 100%;
        height: 2px;
        background-color: var(--text-primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    visibility: hidden;
    pointer-events: none;
    }
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .header-menu {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid var(--glass-border);
        flex-direction: column;
        align-items: center;
        padding: 2rem 1.5rem;
        gap: 1.8rem;
        margin-left: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
    visibility: hidden;
    pointer-events: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    }

    .header-menu.active {
        max-height: 600px;
        visibility: visible;
    pointer-events: auto;
        opacity: 1;
    }

    .logo a {
        font-size: 1.5rem;
    }

    .main-nav {
        order: 3;
        width: 100%;
        overflow-x: hidden;
        padding-bottom: 0.4rem;
        display: flex;
        justify-content: center;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        white-space: normal;
        width: 100%;
    }

    .header-actions {
        order: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    
    .header-actions .btn {
        width: 100%;
        text-align: center;
        margin-left: 0 !important;
    }
    
    .header-actions span {
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .lang-selector {
        width: 100%;
    }
    
    .lang-btn {
        width: 100%;
        justify-content: center;
    }
    
    .lang-dropdown {
        left: 0;
        right: 0;
        width: 100%;
        text-align: center;
    }

    .btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
    }

    /* Padding adjustments for fixed header */
    .search-filters,
    .contact-page,
    .booking-page {
        padding-top: 130px;
    }

    /* Hero / Titles */
    .hero-title,
    .contact-title,
    .booking-title {
        font-size: 2.2rem;
    }

    .contact-desc,
    .booking-desc,
    .faq-subtitle {
        font-size: 0.95rem;
    }

    .section-title,
    .faq-main-title {
        font-size: 1.75rem;
    }

    /* Filters Form */
    .glass-panel {
        padding: 1.25rem;
    }

    .filter-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Cards Grid */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Contact Page */
    .direct-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper,
    .booking-form-wrapper {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* FAQ Section */
    .faq-section {
        padding: 0 1rem;
        margin-top: 3rem;
    }

    .faq-header {
        padding: 1rem;
        gap: 0.8rem;
    }

    .faq-question {
        font-size: 0.9rem;
    }

    .faq-body {
        padding: 0 1rem 0 3.2rem;
        font-size: 0.88rem;
    }

    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        justify-content: space-between;
    }

    .lang-btn span {
        display: none;
    }

    .hero-title,
    .contact-title,
    .booking-title {
        font-size: 1.8rem;
    }

    .card-footer {
        font-size: 0.65rem;
        padding: 0.6rem 0.3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }

    .social-buttons {
        align-items: center;
    }

    .btn-social {
        width: 100%;
        max-width: 200px;
    }
}

/* --- Profile Detail Page Styles --- */
.profile-detail-page {
    padding-top: 130px;
    padding-bottom: 4rem;
}

.profile-detail-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.profile-top-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 850px) {
    .profile-top-grid {
        grid-template-columns: 1fr;
    }
}

.profile-main-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
}

.profile-main-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.profile-badges-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 10;
}

.profile-badges-overlay .badge {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin: 0;
}

.profile-info-content {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.profile-header-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.profile-title-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.profile-id-tag {
    background: rgba(255, 192, 203, 0.1);
    color: var(--accent-color);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.profile-sub-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.profile-attributes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.attribute-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-radius: 12px;
}

.attr-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.attr-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.attr-price-val {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.profile-actions-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 0.8rem;
    width: 100%;
}

.profile-actions-bar .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    margin: 0;
}

.btn-book-now {
    background: var(--accent-gradient);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 192, 203, 0.25);
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 192, 203, 0.4);
}

/* Profile Blocks (About, Services, Gallery, Videos) */
.profile-block {
    padding: 2rem;
    border-radius: 16px;
}

.profile-block-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 192, 203, 0.1);
    padding-bottom: 0.6rem;
}

.profile-bio-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.services-offered-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.service-tag-item {
    background: rgba(255, 192, 203, 0.08);
    border: 1px solid rgba(255, 192, 203, 0.25);
    color: var(--text-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.2rem;
}

.gallery-item {
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.2rem;
}

.video-card-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.video-preview-thumb {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
}

.video-preview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.video-preview-thumb:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.15);
}

.video-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* --- Reviews & Rating Section --- */
.review-form-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 192, 203, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.review-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.star-rating-select {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.rating-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.stars-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.2rem;
}

.stars-input input[type="radio"] {
    display: none;
}

.stars-input label {
    font-size: 1.5rem;
    color: #4b5563;
    cursor: pointer;
    transition: color 0.2s ease;
}

.stars-input label:hover,
.stars-input label:hover ~ label,
.stars-input input[type="radio"]:checked ~ label {
    color: #f59e0b;
}

.btn-submit-review {
    width: auto;
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 192, 203, 0.08);
    border-radius: 12px;
    padding: 1.2rem;
}

.review-header-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.review-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.review-date {
    font-size: 0.8rem;
    color: #6b7280;
    margin-left: auto;
}

.review-comment-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- Auth Modal Overlay --- */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.auth-modal-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: rgba(18, 18, 18, 0.95);
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 192, 203, 0.15);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-modal-overlay.active .auth-modal-card {
    transform: scale(1);
}

.auth-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.auth-modal-close:hover {
    color: var(--accent-color);
}

.auth-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.auth-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.8rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.auth-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.forgot-pass-link {
    color: var(--accent-color);
    transition: opacity 0.2s ease;
}

.forgot-pass-link:hover {
    opacity: 0.8;
}

.btn-auth-submit {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    margin-top: 0.5rem;
    border-radius: 10px;
}

.auth-switch-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.auth-switch-text a {
    color: var(--accent-color);
    font-weight: 700;
    margin-left: 0.3rem;
}

/* --- Admin Responsive Form Grid --- */
.admin-create-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    width: 100%;
}

@media (max-width: 768px) {
    .admin-form-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Unified Upload Buttons --- */
.btn-upload-unified {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 10px;
    background: var(--accent-gradient);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 192, 203, 0.2);
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-upload-unified:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 192, 203, 0.35);
}

/* --- Media Lightbox Modal --- */
.media-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.93);
    backdrop-filter: blur(14px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.media-lightbox-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-media-element {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(255, 192, 203, 0.25), 0 0 50px rgba(0, 0, 0, 0.9);
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 14px;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.lightbox-close-btn {
    position: fixed;
    top: 25px;
    right: 30px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 2.2rem;
    line-height: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100000;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close-btn:hover {
    background: var(--accent-color);
    color: #000;
    transform: scale(1.1);
}

.lightbox-nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1.8rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100000;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev-btn { left: 30px; }
.lightbox-next-btn { right: 30px; }

.lightbox-nav-btn:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.gallery-item, .video-card-item, .profile-main-image-wrapper {
    cursor: pointer;
}

.gallery-item img:hover, .video-card-item:hover, .profile-main-image-wrapper img:hover {
    transform: scale(1.025);
    transition: transform 0.3s ease;
}

/* --- Admin Tabs --- */
.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid rgba(255, 192, 203, 0.1);
    padding-bottom: 1rem;
    flex-wrap: wrap;
}

.admin-tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 192, 203, 0.1);
    color: var(--text-secondary);
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.admin-tab-btn.active {
    background: var(--accent-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 192, 203, 0.3);
}

.admin-tab-content {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.admin-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0;
    visibility: hidden;
    pointer-events: none; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Age Warning Modal */
.age-warning-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}
.age-warning-modal {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid var(--accent-color);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(255, 192, 203, 0.2);
}
.age-warning-modal h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.age-warning-modal p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.8rem;
}
.age-warning-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}
.btn-leave {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-leave:hover {
    background: rgba(255, 255, 255, 0.2);
}
.btn-enter {
    background: var(--accent-color);
    color: #000;
    border: 1px solid var(--accent-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 192, 203, 0.4);
}
.btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 192, 203, 0.6);
}
@media (max-width: 480px) {
    .age-warning-buttons { flex-direction: column; }
    .btn-leave, .btn-enter { width: 100%; }
}

/* ==========================================================================
   Comprehensive Mobile & Touch Optimization (Smartphones & Tablets)
   ========================================================================== */
@media (max-width: 768px) {
    /* Header & Logo */
    .header-container {
        padding: 0 1rem;
        height: 70px;
    }
    
    .logo a {
        font-size: 1.35rem;
        gap: 0.3rem;
    }
    
    .logo-sg-flag {
        width: 22px;
        height: 22px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .search-filters, .hero-section {
        padding-top: 95px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    /* Filter Controls Bar Mobile Flex Column Layout (Fix Overflow) */
    .filter-controls.glass-panel {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 0.6rem;
        padding: 0.8rem;
        border-radius: 12px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .filter-select {
        width: 100%;
        max-width: 100%;
        font-size: 0.88rem;
        padding: 0.65rem 2.5rem 0.65rem 0.8rem !important; /* Maintain space for arrow on mobile */
        box-sizing: border-box;
    }

    .btn-plus-toggle {
        width: 100%;
        text-align: center;
        padding: 0.6rem;
        font-size: 1.1rem;
    }

    .btn-search-bar {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    /* Mobile Cards Grid: 2 columns on mobile screens for app-like browsing */
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .glass-panel-card {
        border-radius: 12px;
    }

    .card-body {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .profile-name {
        font-size: 0.95rem;
        line-height: 1.2;
    }

    .profile-location {
        font-size: 0.75rem;
    }

    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem;
        font-size: 0.7rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .stat-value {
        font-size: 0.8rem;
    }

    .price-box {
        padding: 0.5rem;
        border-radius: 6px;
    }

    .price-main {
        font-size: 0.9rem;
    }

    .price-sub {
        font-size: 0.7rem;
    }

    .card-footer {
        font-size: 0.65rem;
        padding: 0.5rem 0.3rem;
    }

    /* Profile Detail Mobile View */
    .profile-detail-page {
        padding-top: 95px;
        padding-bottom: 2rem;
    }

    .profile-top-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .profile-main-image-wrapper {
        max-height: 420px;
    }

    .profile-title-name {
        font-size: 1.6rem;
    }

    .profile-attributes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .attribute-card {
        padding: 0.75rem;
        border-radius: 10px;
    }

    .profile-actions-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        gap: 0.65rem;
    }

    .profile-actions-bar .btn-book-now {
        grid-column: 1 / 3;
    }

    .profile-actions-bar .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 0.85rem;
        font-size: 0.9rem; /* Slightly smaller to fit two side-by-side */
    }

    /* Media Lightbox Touch Optimization */
    .lightbox-close-btn {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 1.8rem;
    }

    .lightbox-prev-btn { left: 10px; width: 44px; height: 44px; font-size: 1.5rem; }
    .lightbox-next-btn { right: 10px; width: 44px; height: 44px; font-size: 1.5rem; }

    /* Touch Lightbox media size */
    .lightbox-media-element {
        max-width: 95vw;
        max-height: 75vh;
    }
}

@media (max-width: 380px) {
    /* Very small phones */
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-controls.glass-panel {
        grid-template-columns: 1fr;
    }
}
