/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #0d0d0d;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header styles WITH GLOW EFFECT */
header {
    background-color: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

/* HEADER GLOW EFFECT ON SCROLL */
header.scrolled {
    box-shadow: 0 0 30px rgba(255, 107, 157, 0.3), 
                0 5px 20px rgba(255, 107, 157, 0.2);
    border-bottom: 2px solid rgba(255, 107, 157, 0.5);
}

header.scrolled::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ff6b9d 20%, 
        #ff8fab 50%, 
        #ff6b9d 80%, 
        transparent 100%);
    animation: headerGlow 2s ease-in-out infinite alternate;
}

@keyframes headerGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #fff;
    letter-spacing: 1px;
}

.logo span {
    color: #ff6b9d;
    font-weight: 400;
}

.header-right {
    display: flex;
    align-items: center;
}

.favorites-nav-btn {
    margin-right: 15px;
}

.nav-favorites-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-favorites-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

.social-icons a {
    margin-left: 18px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 22px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #ff6b9d;
    transform: translateY(-2px);
}

.whatsapp:hover {
    color: #25D366 !important;
}

.telegram:hover {
    color: #0088cc !important;
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Models section */
.models-section {
    padding: 80px 0 100px;
    background-color: #0d0d0d;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 80%;
    height: 4px;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 800px;
    margin: 0 auto;
    margin-top: 25px;
    line-height: 1.7;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* MODEL CARDS - IMPROVED LIKE SCREENSHOT */
.model-card-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, #1e1e1e, #181818);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.model-card-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 
                0 0 20px rgba(255, 107, 157, 0.1);
    border-color: rgba(255, 107, 157, 0.3);
}

.model-card {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    color: inherit;
    text-decoration: none;
}

.model-image {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.model-card:hover .model-image img {
    transform: scale(1.08);
}

/* AVAILABILITY INDICATORS - IMPROVED */
.availability-indicator {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
}

.status-available {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(34, 197, 94, 0.95);
    color: #fff;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.status-available::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.status-unavailable {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(245, 158, 11, 0.95);
    color: #fff;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.status-unavailable::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: pulse-yellow 2s infinite;
}

/* VERIFIED BADGE - MOVED TO RIGHT SIDE */
.profile-verify-small {
    position: absolute;
    bottom: 124px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-verify-small i {
    font-size: 11px;
}

/* MODEL INFO OVERLAY - UNIFIED BLOCK */
.model-info-fixed {
    position: absolute;
    bottom: -15px;
    pointer-events: none;
    z-index: 8;
    width: 100%;
}

.model-info-block {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.model-name {
    margin-bottom: 8px;
}

.model-name h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

/* SERVICE TYPE - NOW PART OF UNIFIED BLOCK */
.service-type {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    opacity: 0.8;
}

/* PRICE DISPLAY - NOW PART OF UNIFIED BLOCK */
.model-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 20px;
    color: #fff;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.price-duration {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* UNAVAILABLE CARDS STYLING - UNIFIED BLOCK */
.model-card-wrapper:not(.available) {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border: 1px solid rgba(255, 255, 255, 0.01);
}





.model-card-wrapper:not(.available):hover .model-image img {
    transform: scale(1.03);
}

.model-card-wrapper:not(.available) .model-info-block {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
}




/* LOAD MORE BUTTON - IMPROVED */
.load-more-container {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: #fff;
    border: none;
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.load-more-btn:hover::before {
    left: 100%;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #ff8fab, #ff6b9d);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.load-more-count {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-top: 5px;
    opacity: 0.9;
}

/* LOADING INDICATOR - IMPROVED */
.loading-indicator {
    text-align: center;
    padding: 40px 0;
    margin: 40px 0;
}

.spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 107, 157, 0.2);
    border-radius: 50%;
    border-top-color: #ff6b9d;
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Footer */
footer {
    background: linear-gradient(145deg, #151515, #0d0d0d);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.footer-column h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-column p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ff6b9d;
    padding-left: 8px;
}

.footer-social {
    display: flex;
    margin-top: 25px;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: linear-gradient(145deg, #1a1a1a, #151515);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    font-size: 18px;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}

.copyright {
    text-align: center;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .model-card-wrapper {
        height: 440px;
    }
}

@media (max-width: 991px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .mobile-menu-toggle {
        display: block;
        margin-right: 15px;
    }
    
    .model-card-wrapper {
        height: 400px;
    }
    
    .favorites-text {
        display: none;
    }
    
    .nav-favorites-link {
        padding: 10px 12px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .models-section {
        padding: 60px 0;
    }
    
    .models-grid {
        gap: 14px;
    }
    
    .model-card-wrapper {
        height: 360px;
    }
    
    .model-info-fixed {
        min-height: 100px;
    }
    
    .model-name h3 {
        font-size: 22px;
    }
    
    .price-amount {
        font-size: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .models-grid {
        gap: 12px;
    }
    
    .model-card-wrapper {
        height: 340px;
    }
    
    .model-info-fixed {
        min-height: 84px;
    }
    
    .model-name h3 {
        font-size: 18px;
    }
    
    .price-amount {
        font-size: 16px;
    }
    
    .availability-indicator {
        top: 10px;
        left: 10px;
    }
    
    .status-available,
    .status-unavailable {
        font-size: 10px;
        padding: 8px 12px;
    }
    
    .profile-verify-small {
        font-size: 9px;
        padding: 6px 8px;
        bottom: 94px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .models-grid {
        gap: 10px;
    }
    
    .model-card-wrapper {
        height: 320px;
    }
    
    .model-info-fixed {
        min-height: 84px;
    }
    
    .model-name h3 {
        font-size: 16px;
    }
    
    .price-amount {
        font-size: 14px;
    }
}


@media screen and (max-width: 762px) {
    .model-info-block {
        padding: 10px;
    }
}
