/* 
  Bd- Girls Main Stylesheet
  Modern, Glassmorphism, 100% Responsive & Mobile Friendly Design
*/

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&display=swap');

:root {
    --primary-gradient: linear-gradient(135deg, #ff0844 0%, #ffb199 100%);
    --accent-gradient: linear-gradient(45deg, #e91e63, #ff4081);
    --btn-gradient: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    --btn-hover: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
    --dark-bg: #0f172a;
    --card-bg: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 35px rgba(255, 65, 108, 0.25);
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hind Siliguri', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8fafc;
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header & Navbar */
.navbar-custom {
    background: linear-gradient(135deg, #1f1c2c 0%, #928dab 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar-brand-custom {
    color: #ffffff !important;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-brand-custom i {
    color: #ff416c;
    font-size: 1.8rem;
    animation: pulseHeart 1.5s infinite;
}

@keyframes pulseHeart {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Page Container & Grid Layout */
.main-content {
    flex: 1;
    padding: 30px 15px 60px;
    max-width: 650px;
    margin: 0 auto;
    width: 100%;
}

.page-title-banner {
    text-align: center;
    margin-bottom: 25px;
}

.page-title-banner h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

/* Profile Card Styling (Serial by Serial) */
.profile-cards-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.profile-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    text-align: center;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 65, 108, 0.3);
}

/* Square Profile Image */
.profile-img-container {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border: 4px solid #fff;
}

.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.profile-card:hover .profile-img-container img {
    transform: scale(1.05);
}

.online-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #10b981;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.online-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    animation: blinkDot 1.2s infinite;
}

@keyframes blinkDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Card Content & Text */
.profile-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 10px;
}

/* Call Button Styling */
.btn-call-now {
    width: 100%;
    max-width: 280px;
    background: var(--btn-gradient);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 14px 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(255, 65, 108, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-call-now:hover, .btn-call-now:focus {
    background: var(--btn-hover);
    transform: scale(1.02);
    box-shadow: 0 12px 25px rgba(255, 65, 108, 0.5);
    color: #ffffff;
}

.btn-call-now i {
    font-size: 1.3rem;
    animation: ringBell 2s infinite;
}

@keyframes ringBell {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50% { transform: rotate(15deg); }
    20%, 40% { transform: rotate(-15deg); }
    60% { transform: rotate(0deg); }
}

/* Busy Custom Popup Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.busy-modal-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 25px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.modal-overlay.active .busy-modal-box {
    transform: scale(1) translateY(0);
}

.busy-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 65, 108, 0.1);
    color: #ff416c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% { box-shadow: 0 0 0 0 rgba(255, 65, 108, 0.4); }
    70% { box-shadow: 0 0 0 18px rgba(255, 65, 108, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 65, 108, 0); }
}

.busy-modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.busy-modal-message {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-modal-close {
    background: var(--btn-gradient);
    color: #fff;
    border: none;
    padding: 12px 36px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(255, 65, 108, 0.3);
}

.btn-modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 65, 108, 0.4);
}

/* Empty State */
.no-profiles-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 50px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.no-profiles-box i {
    font-size: 3.5rem;
    color: #cbd5e1;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: #1e293b;
    color: #94a3b8;
    text-align: center;
    padding: 20px 15px;
    font-size: 0.9rem;
    margin-top: auto;
}

/* Responsive Utilities */
@media (max-width: 576px) {
    .navbar-brand-custom {
        font-size: 1.35rem;
    }
    .profile-card {
        padding: 18px 14px;
    }
    .profile-card-title {
        font-size: 1.05rem;
    }
    .btn-call-now {
        font-size: 1rem;
        padding: 12px 20px;
    }
}
