:root {
    --pink-primary: #ec4899;
    --pink-dark: #be185d;
    --purple-primary: #a855f7;
    --purple-dark: #7e22ce;
    --yellow-primary: #eab308;
    --green-primary: #22c55e;
    --blue-primary: #3b82f6;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #111827;
    color: #ffffff;
    line-height: 1.6;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-primary));
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--pink-primary);
    color: var(--pink-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--pink-primary);
    color: white;
}

.hero-section {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.9), rgba(157, 23, 77, 0.8), rgba(0, 0, 0, 0.95));
}

.escort-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.escort-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2);
}

.escort-card img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.district-card {
    transition: all 0.3s ease;
}

.district-card:hover {
    transform: translateY(-4px);
}

.blog-card {
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--pink-primary);
}

.stat-card {
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-primary), var(--purple-primary));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.prose {
    max-width: none;
}

.prose h2 {
    color: var(--pink-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose h3 {
    color: #f9fafb;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.prose p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.prose ul, .prose ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: #d1d5db;
}

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

.prose strong {
    color: #f9fafb;
}

.prose a {
    color: var(--pink-primary);
    text-decoration: underline;
}

.prose a:hover {
    color: #f472b6;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

::selection {
    background: var(--pink-primary);
    color: white;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--pink-primary) !important;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
}

.escort-gallery {
    position: relative;
}

.escort-main-image {
    overflow: hidden;
    height: 400px;
}

.escort-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

@media (min-width: 768px) {
    .escort-main-image {
        height: 450px;
    }
}

@media (min-width: 1024px) {
    .escort-main-image {
        height: 500px;
    }
    .escort-main-image img {
        object-position: center 30%;
    }
}

.escort-gallery button {
    transition: all 0.2s ease;
}

.escort-gallery button:hover {
    opacity: 0.8;
}

.escort-card .aspect-\[4\/5\],
.escort-card .aspect-\[3\/4\] {
    max-height: 220px !important;
}

@media (min-width: 768px) {
    .escort-card .aspect-\[4\/5\],
    .escort-card .aspect-\[3\/4\] {
        max-height: 260px !important;
    }
}

.age-badge {
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-primary));
}

.vip-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
}

.verified-badge {
    background: var(--green-primary);
}

/* VIP Card Premium Styles */
.vip-card {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: visible;
}

.vip-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #ffd700, #ffaa00, #ffd700, #fff5cc, #ffd700);
    background-size: 300% 300%;
    animation: vip-border-shine 3s ease-in-out infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 0;
}

.vip-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%, rgba(255, 215, 0, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

@keyframes vip-border-shine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.vip-card:hover::before {
    animation: vip-border-shine 1.5s ease-in-out infinite;
}

.vip-card .vip-crown {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    z-index: 10;
    animation: crown-pulse 2s ease-in-out infinite;
}

.vip-card .vip-crown i {
    color: #1a1a2e;
    font-size: 14px;
}

@keyframes crown-pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 215, 0, 0.8);
        transform: translateX(-50%) scale(1.05);
    }
}

.vip-card .vip-glow {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.2),
        0 0 40px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vip-card:hover .vip-glow {
    opacity: 1;
}

.vip-card .card-content {
    position: relative;
    z-index: 5;
}

/* VIP Sparkle Effect */
.vip-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 15;
}

.vip-sparkle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.vip-sparkle:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.5s; }
.vip-sparkle:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 1s; }
.vip-sparkle:nth-child(4) { bottom: 15%; right: 10%; animation-delay: 1.5s; }

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Premium VIP Label */
.vip-premium-label {
    background: linear-gradient(135deg, #ffd700, #ff8c00, #ffd700);
    background-size: 200% 200%;
    animation: gradient-shift 2s ease infinite;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ============================================
   HIERARCHICAL ESCORT CARD SYSTEM
   Tier 1: Normal (Basic) - No special styling
   Tier 2: Verified (Onaylı) - Green accents
   Tier 3: VIP - Gold premium styling
   ============================================ */

/* TIER 1: Normal Card */
.escort-card-normal {
    position: relative;
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    border: 1px solid #374151;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.escort-card-normal:hover {
    border-color: #6b7280;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.escort-card-normal .card-content {
    position: relative;
    z-index: 1;
}

/* TIER 2: Verified Card */
.escort-card-verified {
    position: relative;
    background: linear-gradient(145deg, #1a2e1a 0%, #0f1f0f 100%);
    border: 2px solid transparent;
    border-radius: 14px;
    overflow: visible;
}

.escort-card-verified::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #22c55e, #16a34a, #22c55e, #4ade80, #22c55e);
    background-size: 300% 300%;
    animation: verified-border-shine 4s ease-in-out infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 0;
}

.escort-card-verified::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

@keyframes verified-border-shine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.escort-card-verified:hover {
    transform: translateY(-3px);
}

.escort-card-verified:hover::before {
    animation: verified-border-shine 2s ease-in-out infinite;
}

.escort-card-verified .verified-badge-icon {
    position: absolute;
    top: -10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    z-index: 10;
    animation: verified-pulse 2.5s ease-in-out infinite;
}

.escort-card-verified .verified-badge-icon i {
    color: white;
    font-size: 12px;
}

@keyframes verified-pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 20px rgba(34, 197, 94, 0.6);
        transform: scale(1.05);
    }
}

.escort-card-verified .card-content {
    position: relative;
    z-index: 5;
}

.escort-card-verified .card-footer {
    background: linear-gradient(to bottom, #1a2e1a, #0a1a0a);
}

.escort-card-verified .profile-btn {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.2));
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.escort-card-verified .profile-btn:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border-color: #22c55e;
}

/* VIP Card Enhancements */
.vip-card {
    margin-top: 16px;
}

.vip-card .card-footer {
    background: linear-gradient(to bottom, #1a1a2e, #0f0f1a);
}

.vip-card .profile-btn {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    font-weight: 600;
}

.vip-card .profile-btn:hover {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    border-color: #ffd700;
}

/* Card Image Overlay Gradients */
.escort-card-normal .image-overlay {
    background: linear-gradient(to top, rgba(17, 24, 39, 0.9) 0%, transparent 50%);
}

.escort-card-verified .image-overlay {
    background: linear-gradient(to top, rgba(15, 31, 15, 0.95) 0%, transparent 50%);
}

.vip-card .image-overlay {
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, transparent 50%);
}

/* Badge Styles */
.badge-vip {
    background: linear-gradient(135deg, #ffd700, #ff8c00, #ffd700);
    background-size: 200% 200%;
    animation: gradient-shift 2s ease infinite;
    color: #000;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.badge-verified {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.badge-new {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Hierarchy Visual Indicators */
.tier-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    display: flex;
    gap: 2px;
    z-index: 10;
}

.tier-star {
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-star i {
    font-size: 10px;
}

.tier-star.active-gold i { color: #ffd700; }
.tier-star.active-green i { color: #22c55e; }
.tier-star.inactive i { color: #4b5563; }

/* Card Name Styling by Tier */
.escort-card-normal .escort-name {
    color: #e5e7eb;
}

.escort-card-normal .escort-name:hover {
    color: #ec4899;
}

.escort-card-verified .escort-name {
    background: linear-gradient(135deg, #86efac, #22c55e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vip-card .escort-name {
    background: linear-gradient(135deg, #fef3c7, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Location Icon by Tier */
.escort-card-normal .location-icon { color: #9ca3af; }
.escort-card-verified .location-icon { color: #4ade80; }
.vip-card .location-icon { color: #fbbf24; }

.loading-spinner {
    border: 3px solid rgba(236, 72, 153, 0.2);
    border-top-color: var(--pink-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.gradient-text {
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.shadow-glow-pink {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
}

.shadow-glow-purple {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

.pagination a {
    transition: all 0.2s ease;
}

.pagination a:hover {
    transform: scale(1.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
    transform: translateY(-2px);
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

.image-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
}

.card-shine {
    position: relative;
    overflow: hidden;
}

.card-shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.03),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.card-shine:hover::before {
    animation: shine 0.6s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}
