/* Custom CSS for Escort Website */

:root {
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-300: #f9a8d4;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --pink-700: #be185d;
    --pink-900: #831843;
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7e22ce;
    --purple-800: #6b21a8;
    --purple-900: #581c87;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --yellow-500: #eab308;
    --green-500: #22c55e;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --gray-100: #f3f4f6;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Utility Classes */
.text-gradient-pink-purple {
    background: linear-gradient(to right, var(--pink-600), var(--purple-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-to-br {
    background: linear-gradient(to bottom right, var(--pink-100), var(--purple-50), var(--pink-50));
}

.bg-gradient-to-b {
    background: linear-gradient(to bottom, white, var(--pink-50));
}

.hover-pink {
    transition: color 0.3s ease;
}

.hover-pink:hover {
    color: var(--pink-600) !important;
}

.hover-pink-footer {
    transition: color 0.3s ease;
}

.hover-pink-footer:hover {
    color: var(--pink-400) !important;
}

/* Button Styles */
.btn-outline-pink {
    border: 1px solid var(--pink-300);
    color: var(--pink-600);
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    background-color: var(--pink-50);
    border-color: var(--pink-300);
    color: var(--pink-600);
}

.btn-gradient-pink-purple {
    background: linear-gradient(to right, var(--pink-600), var(--purple-600));
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient-pink-purple:hover {
    background: linear-gradient(to right, var(--pink-700), var(--purple-700));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(219, 39, 119, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: auto;
    padding: 3rem 0;
}

@media (min-width: 992px) {
    .hero-section {
        padding: 0rem 0;
    }
}

/* Pulse Animation */
.pulse-animation {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    50% {
        opacity: 0.5;
    }
}

/* Blur Effect */
.blur-effect {
    filter: blur(40px);
}

.blur-3xl {
    filter: blur(64px);
}

/* City Cards */
.city-card {
    background: linear-gradient(to bottom right, var(--pink-50), var(--purple-50));
    border: 1px solid var(--pink-100);
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.city-card:hover {
    background: linear-gradient(to bottom right, var(--pink-100), var(--purple-100));
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Escort Card */
.escort-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--pink-100);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.escort-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.escort-card-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    flex-shrink: 0;
    width: 100%;
    background: linear-gradient(to bottom right, var(--pink-100), var(--purple-100));
}

.escort-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.escort-card:hover .escort-card-image img {
    transform: scale(1.1);
}

.escort-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.escort-card:hover .escort-card-overlay {
    opacity: 1;
}

.escort-card-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
}

.escort-card-favorite {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.escort-card-favorite:hover {
    background: white;
    transform: scale(1.1);
}

.escort-card-favorite.active {
    color: var(--pink-500);
}

.escort-card-price {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    color: var(--pink-600);
    font-weight: 500;
    z-index: 10;
}

.escort-card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /* min-height: 140px; */
}

.escort-card-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.escort-card-age {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.escort-card-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(251, 191, 36, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    color: var(--amber-700);
    font-size: 0.875rem;
}

.escort-card-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.escort-card-button {
    width: 100%;
    margin-top: 1rem;
    background: linear-gradient(to right, var(--pink-600), var(--purple-600));
    color: white;
    border: none;
    padding: 0.625rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(8px);
}

.escort-card:hover .escort-card-button {
    opacity: 1;
    transform: translateY(0);
}

.escort-card-button:hover {
    background: linear-gradient(to right, var(--pink-700), var(--purple-700));
}

/* Badge Styles */
.badge-vip {
    background: linear-gradient(to right, var(--amber-400), var(--yellow-500));
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-verified {
    background: linear-gradient(to right, var(--blue-500), var(--blue-600));
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-online {
    background: var(--green-500);
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-online::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    margin-right: 0.25rem;
    animation: pulse 2s infinite;
}

/* Star Rating */
.star-btn {
    transition: transform 0.2s ease;
}

.star-btn:hover {
    transform: scale(1.1);
}

.star-btn.active i,
.star-btn:hover i {
    color: var(--amber-400) !important;
    fill: var(--amber-400);
}

/* Carousel */
#vipCarousel {
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-left: 0;
    padding-right: 0;
}

#vipCarousel::-webkit-scrollbar {
    display: none;
}

.vip-carousel-card-wrapper {
    min-width: 280px;
    max-width: 280px;
    width: 280px;
    flex-shrink: 0;
    height: 550px;
    display: flex;
    flex-direction: column;
}

/* Mobile adjustments for VIP Carousel */
@media (max-width: 768px) {
    #vipCarousel {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        gap: 1rem;
    }
    
    .vip-carousel-card-wrapper {
        min-width: 280px;
        max-width: 280px;
        width: 280px;
    }
    
    .vip-carousel-image-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    #vipCarousel {
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 0.75rem;
    }
    
    .vip-carousel-card-wrapper {
        min-width: 260px;
        max-width: 260px;
        width: 260px;
    }
    
    .vip-carousel-image-container {
        height: 350px;
    }
}

.vip-carousel-image-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
    flex-shrink: 0;
}

.vip-carousel-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-card {
    flex: 0 0 280px;
    width: 280px;
    min-width: 280px;
}

/* VIP Carousel Card - Special Design */
.vip-carousel-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.vip-card-profile {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    padding-bottom: 2rem;
}

.vip-card-profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.vip-card-profile-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    z-index: 0;
    background: linear-gradient(135deg, #fbbf24, #eab308);
}

.vip-card-profile-bg.blue {
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
}

.vip-card-favorite {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.vip-card-favorite:hover {
    transform: scale(1.1);
}

.vip-card-favorite.active i {
    color: #ec4899;
}

.vip-card-favorite i {
    font-size: 0.875rem;
    color: #6b7280;
}

.vip-card-price {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(147, 51, 234, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.vip-card-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
}

.vip-card-online {
    background: #22c55e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.vip-card-online::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

.vip-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 1rem 0 0.25rem;
}

.vip-card-age {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 0.75rem;
}

.vip-card-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: auto;
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.carousel-nav-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.carousel-nav-btn.prev {
    left: 0;
}

.carousel-nav-btn.next {
    right: 0;
}

@media (min-width: 992px) {
    .carousel-nav-btn.prev {
        left: -24px;
    }
    
    .carousel-nav-btn.next {
        right: -24px;
    }
}

@media (max-width: 768px) {
    .carousel-nav-btn {
        display: none !important;
    }
}

/* Scroll Smooth */
.scroll-smooth {
    scroll-behavior: smooth;
}

/* Text Colors */
.text-pink {
    color: var(--pink-600);
}

.text-purple-200 {
    color: var(--purple-200);
}

.text-purple-100 {
    color: var(--purple-100);
}

.text-pink-300 {
    color: var(--pink-300);
}

.text-pink-400 {
    color: var(--pink-400);
}

/* Background Colors */
.bg-pink {
    background-color: var(--pink-500);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 0rem 0;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

/* Container Max Width */
.container-xxl {
    max-width: 1280px;
}

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Focus States */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(219, 39, 119, 0.25);
    border-color: var(--pink-500);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.fontboxcls {
    max-width: 1300px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.fontboxcls > div {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.fontboxcls > div:hover {
    border-color: #ec4899;
    box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.1), 0 4px 6px -2px rgba(236, 72, 153, 0.05);
}

.fontboxcls > div:first-child {
    border-top: 4px solid #ec4899;
}

.fontboxcls > div:last-child {
    border-top: 4px solid #9333ea;
}

.fontboxcls h3 {
    color: #ec4899;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #f3e8ff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fontboxcls h3::before {
    content: "❓";
    font-size: 1.5rem;
}

.fontboxcls > div:first-child h3 {
    color: #9333ea;
}

.fontboxcls > div:first-child h3::before {
    content: "📝";
}

.fontboxcls p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.fontboxcls ul,
.fontboxcls ol {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.fontboxcls li {
    margin-bottom: 0.5rem;
}

.fontboxcls strong,
.fontboxcls b {
    color: #1f2937;
    font-weight: 600;
}

.fontboxcls a {
    color: #ec4899;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fontboxcls a:hover {
    color: #9333ea;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fontboxcls {
        margin: 1rem auto;
        padding: 0 1rem;
    }

    .fontboxcls > div {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .fontboxcls h3 {
        font-size: 1.5rem;
    }
}