/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --accent-gold: #d4af37;
    --accent-gold-light: #e6c34d;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --border-dark: #444444;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Gallery Modal Styles */
.gallery-modal-content {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    margin: 2% auto;
    padding: 30px;
    border: 2px solid #d4af37;
    border-radius: 15px;
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-main-image {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #1a1a1a;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.gallery-thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.gallery-thumbnail.active {
    border-color: #d4af37;
    opacity: 1;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.gallery-nav-btn {
    background: rgba(212, 175, 55, 0.9);
    color: #1a1a1a;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-nav-btn:hover {
    background: #f4d03f;
    transform: translateY(-2px);
}

.gallery-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.gallery-counter {
    color: #d4af37;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-modal-content {
        margin: 5% auto;
        padding: 20px;
        width: 95%;
    }
    
    .gallery-main-image {
        height: 300px;
    }
    
    .gallery-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .gallery-navigation {
        flex-direction: column;
        gap: 15px;
    }
}
/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-dark);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--accent-gold);
    font-weight: 300;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-dark);
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* ===== ENHANCED MODELS SECTION ===== */
.models-section {
    padding: 100px 0;
    background: var(--secondary-dark);
}

/* Enhanced Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: #2d2d2d;
    border: 1px solid #444444;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(20px);
}

.filter-btn.loaded {
    opacity: 1;
    transform: translateY(0);
}

.filter-btn.active,
.filter-btn:hover {
    background: #d4af37;
    color: #1a1a1a;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Enhanced Models Grid */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Enhanced Model Cards */
.model-card {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 69, 19, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.model-card.loaded {
    opacity: 1;
    transform: translateY(0);
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.5);
}

/* Enhanced Model Image */
.model-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.model-card:hover .model-image img {
    transform: scale(1.05);
}

/* Premium Badge */
.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #1a1a1a;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    z-index: 3;
    backdrop-filter: blur(10px);
}

/* City Badge */
.city-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(26, 26, 26, 0.8);
    color: #d4af37;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 3;
}

/* Enhanced Overlay */
.model-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.model-card:hover .model-overlay {
    opacity: 1;
}

.overlay-buttons {
    display: flex;
    gap: 12px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.model-card:hover .overlay-buttons {
    transform: translateY(0);
}

/* Enhanced Buttons */
.btn-view, .btn-book {
    padding: 14px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.btn-view {
    background: rgba(212, 175, 55, 0.9);
    color: #1a1a1a;
}

.btn-book {
    background: rgba(139, 69, 19, 0.9);
    color: white;
}

.btn-view:hover, .btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-view:hover {
    background: #d4af37;
}

.btn-book:hover {
    background: #8B4513;
}

/* Enhanced Model Info */
.model-info {
    padding: 30px;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
}

.model-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.model-name {
    margin: 0;
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.model-age-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 69, 19, 0.2);
    padding: 8px 14px;
    border-radius: 15px;
    border: 1px solid rgba(139, 69, 19, 0.4);
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 500;
}

.model-nationality {
    color: #b0b0b0;
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.model-description {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    border-left: 3px solid #d4af37;
    padding-left: 15px;
}

/* Enhanced Rates Grid */
.model-rates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.rate-item {
    background: rgba(139, 69, 19, 0.1);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
}

.rate-item:hover {
    background: rgba(139, 69, 19, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.rate-duration {
    font-size: 0.85rem;
    color: #d4af37;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rate-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
}

/* Status Bar */
.status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 69, 19, 0.2);
}

.availability {
    display: flex;
    align-items: center;
    gap: 10px;
}

.availability-dot {
    width: 10px;
    height: 10px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.availability-text {
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 500;
}

.rating-stars {
    color: #d4af37;
    font-size: 0.8rem;
}

/* ===== ENHANCED SLIDER STYLES ===== */
.model-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.slider-container {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Enhanced Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #d4af37;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: #d4af37;
    transform: scale(1.1);
}

/* Enhanced Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 26, 26, 0.7);
    color: #d4af37;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.slider-arrow:hover {
    background: rgba(212, 175, 55, 0.9);
    color: #1a1a1a;
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 15px;
}

.next-arrow {
    right: 15px;
}

/* Single Image Fallback */
.single-image-enhanced {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.single-image-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.single-image-enhanced img:hover {
    transform: scale(1.05);
}

/* No Image Placeholder */
.no-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #2d2d2d, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    flex-direction: column;
    gap: 15px;
}

.no-image-placeholder i {
    font-size: 3rem;
    color: #d4af37;
    opacity: 0.5;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 0;
    background: var(--primary-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-dark);
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== MEMBERSHIP SECTION ===== */
.membership-section {
    padding: 100px 0;
    background: var(--secondary-dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    font-weight: 300;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.step p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: var(--primary-dark);
}

.social-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.social-item {
    text-align: center;
    position: relative;
}

.bouncing-text {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
    font-weight: 300;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.social-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.social-icon:hover {
    transform: scale(1.1);
    border-color: var(--accent-gold);
}

.social-icon.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.social-icon.telegram {
    background: linear-gradient(45deg, #0088cc, #00aced);
}

.social-icon.email {
    background: linear-gradient(45deg, #EA4335, #D14836);
}

.social-icon i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.social-icon span {
    color: white;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ===== BOOKING MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--primary-dark);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent-gold);
}

/* Rate Display */
.rate-display {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--secondary-dark);
    border-radius: 4px;
}

.rate-display h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 300;
}

.rate-options {
    display: grid;
    gap: 1rem;
}

.rate-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--primary-dark);
    border-radius: 4px;
    border: 1px solid var(--border-dark);
}

.duration {
    font-weight: 300;
}

.price {
    color: var(--accent-gold);
    font-weight: 500;
}

/* Booking Form */
.booking-form {
    margin: 2rem 0;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-weight: 300;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px;
    background: var(--secondary-dark);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
    border-radius: 4px;
    font-size: 1rem;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* Social Booking Buttons */
.social-booking-buttons {
    margin-top: 2rem;
}

.social-booking-buttons h4 {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-weight: 300;
    text-align: center;
}

.social-buttons {
    display: grid;
    gap: 1rem;
}

.social-btn {
    padding: 15px;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.telegram-btn {
    background: linear-gradient(45deg, #0088cc, #00aced);
}

.email-btn {
    background: linear-gradient(45deg, #EA4335, #D14836);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-dark);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 300;
}

.footer-section p,
.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-dark);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ===== ENHANCED STATES ===== */

/* No Models State */
.no-models {
    grid-column: 1/-1;
    text-align: center;
    padding: 4rem;
    color: #888;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.no-models.loaded {
    opacity: 1;
    transform: translateY(0);
}

.no-models i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
    opacity: 0.7;
}

.no-models h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.no-models p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* No Results State */
.no-results {
    grid-column: 1/-1;
    text-align: center;
    padding: 4rem;
    color: #888;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.no-results.loaded {
    opacity: 1;
    transform: translateY(0);
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
    opacity: 0.7;
}

.no-results h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations */
.model-card {
    animation: fadeInUp 0.6s ease forwards;
}

.filter-btn {
    animation: slideInRight 0.6s ease forwards;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .models-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .model-card {
        border-radius: 15px;
    }
    
    .model-image {
        height: 350px;
    }
    
    .model-slider {
        height: 350px;
    }
    
    .single-image-enhanced {
        height: 350px;
    }
    
    .no-image-placeholder {
        height: 350px;
    }
    
    .overlay-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-view, .btn-book {
        width: 100%;
        text-align: center;
    }
    
    .model-rates {
        grid-template-columns: 1fr;
    }
    
    .model-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .model-age-badge {
        align-self: flex-start;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-dark);
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .models-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .model-image {
        height: 300px;
    }
    
    .model-slider {
        height: 300px;
    }
    
    .single-image-enhanced {
        height: 300px;
    }
    
    .no-image-placeholder {
        height: 300px;
    }
    
    .model-info {
        padding: 20px;
    }
    
    .premium-badge, .city-badge {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-gold {
    color: #d4af37;
}

.text-brown {
    color: #8B4513;
}

.bg-gradient-dark {
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
}

.border-gold {
    border-color: #d4af37;
}

.shadow-gold {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

/* Enhanced Hover Effects */
.model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.model-card:hover::before {
    transform: scaleX(1);
}

/* Glass Morphism Effects */
.glass-effect {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}