/* Girl Profile Styles */
.girl-profile {
    padding-top: 80px;
    background: linear-gradient(to bottom, #000, #1a0020);
}

/* Hero Section */
.profile-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: right 0 top -40px;
    filter: brightness(0.8);
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.hero-content {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    padding: 0 2rem;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.availability-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.availability-badge.available {
    background: rgba(0, 255, 0, 0.2);
    border: 1px solid rgba(0, 255, 0, 0.4);
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.availability-badge.unavailable {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.4);
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
}

/* Profile Content */
.profile-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Main Content */
.profile-main {
    display: grid;
    gap: 2rem;
}

.profile-main section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-main h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--primary-color);
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-item i {
    color: var(--gold-color);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 3px var(--primary-color));
}

.detail-item span {
    color: var(--text-muted);
}

.detail-item strong {
    color: var(--text-light);
}

/* Services Section */
.rates-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.rate-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.rate-item:hover {
    background: rgba(255, 0, 255, 0.1);
    transform: translateY(-5px);
}

.rate-item .time {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.rate-item .price {
    display: block;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0.5rem;
    text-shadow: 0 0 5px var(--primary-color);
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-category h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 0, 255, 0.1);
    transform: translateX(5px);
}

.service-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 3px var(--primary-color));
}

.service-name {
    flex: 1;
    color: var(--text-light);
}

.service-price {
    color: var(--primary-color);
    font-weight: bold;
}

.service-notes {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Schedule Section */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.schedule-day {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
}

.schedule-day.available {
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.day-name {
    display: block;
    color: var(--text-light);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.time-range {
    color: var(--primary-color);
}

.not-available {
    color: var(--text-muted);
    font-style: italic;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Sidebar */
.profile-sidebar {
    display: grid;
    gap: 1.5rem;
    align-content: start;
}

.contact-card,
.location-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card h3,
.location-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px var(--primary-color);
}

.contact-card p,
.location-card p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.contact-card i,
.location-card i {
    color: var(--primary-color);
    filter: drop-shadow(0 0 3px var(--primary-color));
}

.availability-info {
    margin: 1rem 0;
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
}

.availability-info .available {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.availability-info .unavailable {
    color: #ff0000;
    text-shadow: 0 0 5px #ff0000;
}

.video-chat-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 8px;
    margin-top: 1rem;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: rgba(255, 0, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .profile-content {
        grid-template-columns: 1fr;
    }
    
    .profile-sidebar {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
	
	.hero-image img {
	object-position: top;

}
	.girl-profile {
    padding-top: 50px;
	}
    
    .profile-content {
        padding: 1rem;
    }
    
    .profile-main section {
        padding: 1.5rem;
    }
    
    .details-grid,
    .service-list {
        grid-template-columns: 1fr;
    }
    
    .rates-overview {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .availability-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .rates-overview {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Additional Helper Classes */
.gradient-text {
    background: linear-gradient(
        to right,
        #E4CC7F,
        var(--primary-color),
        #E4CC7F,
        var(--secondary-color)
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientSlide 8s ease infinite;
}