/* ================================
   MALLORCA ESCORTS - Luxury & Sexy
   ================================ */

:root {
    /* Culori sexy & luxury */
    --primary: #FF1744;
    --primary-dark: #D50000;
    --primary-light: #FF5252;
    --accent: #FFD700;
    --accent-light: #FFEB3B;
    --pink: #FF4081;
    --purple: #9C27B0;
    
    /* Gradient sexy */
    --gradient-sexy: linear-gradient(135deg, #FF1744 0%, #FF4081 50%, #9C27B0 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    --gradient-dark: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
    --gradient-card: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.95) 100%);
    
    /* Culori neutre */
    --dark: #0D0D0D;
    --dark-light: #1A1A1A;
    --gray-dark: #2D2D2D;
    --gray: #888888;
    --gray-light: #E5E5E5;
    --white: #FFFFFF;
    --cream: #FAFAFA;
    
    /* Tipografie */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;
    
    /* Tranziții */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Umbre */
    --shadow: 0 10px 40px rgba(0,0,0,0.3);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 30px rgba(255,23,68,0.3);
}

/* ================================
   RESET & BASE
   ================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--white);
    background: var(--dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================================
   TYPOGRAPHY - Tighter spacing
   ================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); letter-spacing: -0.01em; }
h4 { font-size: 1.1rem; }

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    margin-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-sexy);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

/* ================================
   BUTTONS
   ================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.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: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-sexy);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255,23,68,0.5);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--dark);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255,215,0,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-dark {
    background: var(--gray-dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--primary);
}

/* ================================
   HEADER & NAVIGATION
   ================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}

.logo-accent {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--gray-light);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-sexy);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-phone a {
    background: var(--gradient-sexy);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
}

.nav-phone a::after {
    display: none;
}

.nav-phone a:hover {
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

/* Language Switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.4rem;
    border-radius: 50px;
}

.lang-switch button {
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-switch button.active {
    background: var(--primary);
    color: var(--white);
}

.lang-switch button:hover:not(.active) {
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ================================
   HERO SECTION - Compact & Sexy
   ================================ */

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--dark);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,23,68,0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(156,39,176,0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-sexy);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.hero h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 span {
    background: var(--gradient-sexy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

/* ================================
   FILTERS
   ================================ */

.filters-section {
    padding: 2rem 0;
    background: var(--dark-light);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.filters-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:hover, .filter-select:focus {
    border-color: var(--primary);
    outline: none;
}

.filter-select option {
    background: var(--dark);
}

/* ================================
   ESCORTS GRID - Sexy Cards
   ================================ */

.escorts-section {
    padding: 5rem 0;
    background: var(--dark);
}

.escorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.escort-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--dark-light);
    transition: var(--transition-slow);
    cursor: pointer;
    group: escort;
}

.escort-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-sexy);
    -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;
    opacity: 0;
    transition: var(--transition);
}

.escort-card:hover::before {
    opacity: 1;
}

.escort-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.escort-card-image {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.escort-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.escort-card:hover .escort-card-image img {
    transform: scale(1.1);
}

.escort-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: var(--gradient-card);
    color: var(--white);
}

.escort-card-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.escort-card-tagline {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.escort-card-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray-light);
}

.escort-card-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.escort-card-stats i {
    color: var(--primary);
    font-size: 0.75rem;
}

.escort-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-sexy);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: var(--shadow-glow);
}

/* Quick View Button */
.escort-quick-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: var(--gradient-sexy);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
}

.escort-card:hover .escort-quick-view {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* ================================
   ESCORT DETAIL PAGE
   ================================ */

.escort-detail {
    padding-top: 100px;
    background: var(--dark);
    min-height: 100vh;
}

.escort-detail-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 3rem 0;
}

.escort-gallery {
    position: relative;
}

.escort-main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
}

.escort-main-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.escort-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.escort-thumb {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 2px solid transparent;
}

.escort-thumb:hover, .escort-thumb.active {
    opacity: 1;
    border-color: var(--primary);
}

.escort-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.escort-detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.escort-detail-badge {
    display: inline-block;
    background: var(--gradient-sexy);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.escort-detail-name {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.escort-detail-tagline {
    font-size: 1.2rem;
    color: var(--primary);
    font-style: italic;
    margin-bottom: 2rem;
}

.escort-detail-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.escort-detail-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.spec-item:hover {
    border-color: var(--primary);
    background: rgba(255,23,68,0.05);
}

.spec-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-sexy);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.9rem;
}

.spec-item-content {
    flex: 1;
}

.spec-item-label {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.spec-item-value {
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
}

.escort-detail-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.escort-detail-cta .btn {
    flex: 1;
    min-width: 180px;
}

/* ================================
   SERVICES SECTION - Intimate
   ================================ */

.services-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-sexy);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-5px);
    border-color: rgba(255,23,68,0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--gradient-sexy);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================================
   CONTACT SECTION
   ================================ */

.contact-section {
    padding: 5rem 0;
    background: var(--gradient-sexy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    background-size: 30px 30px;
}

.contact-section > * {
    position: relative;
    z-index: 1;
}

.contact-section h2 {
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-phone {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-phone a {
    color: var(--white);
}

.contact-phone a:hover {
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--gray);
    margin: 1rem 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    letter-spacing: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: var(--gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--primary);
    width: 18px;
}

.footer-cta p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--gray);
    font-size: 0.85rem;
}

/* ================================
   WHATSAPP FLOAT
   ================================ */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ================================
   ADMIN STYLES
   ================================ */

.admin-body {
    background: var(--dark-light);
    min-height: 100vh;
}

.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
}

.admin-login-box {
    background: var(--dark-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.admin-login-box .logo {
    margin-bottom: 2rem;
}

.admin-login-box h2 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}

.form-control::placeholder {
    color: var(--gray);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-danger {
    background: rgba(255,23,68,0.1);
    color: #FF5252;
    border: 1px solid rgba(255,23,68,0.3);
}

.alert-success {
    background: rgba(76,175,80,0.1);
    color: #81C784;
    border: 1px solid rgba(76,175,80,0.3);
}

/* Admin Dashboard */
.admin-header {
    background: var(--dark);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.admin-header .logo-text {
    font-size: 1.25rem;
}

.admin-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.admin-nav a {
    color: var(--gray);
    font-size: 0.85rem;
    transition: var(--transition);
}

.admin-nav a:hover, .admin-nav a.active {
    color: var(--primary);
}

.admin-content {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.admin-title h1 {
    font-size: 1.75rem;
    color: var(--white);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--dark);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-sexy);
    border-radius: 12px;
    color: var(--white);
    font-size: 1.25rem;
}

.stat-info h3 {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-info p {
    font-size: 0.8rem;
    color: var(--gray);
}

.admin-table-wrapper {
    background: var(--dark);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.admin-table th {
    background: rgba(255,255,255,0.02);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}

.admin-table tr:hover {
    background: rgba(255,255,255,0.02);
}

.admin-table img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.table-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    border-radius: 8px;
}

.btn-edit {
    background: var(--accent);
    color: var(--dark);
}

.btn-delete {
    background: var(--primary);
    color: var(--white);
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background: rgba(76,175,80,0.2);
    color: #81C784;
}

.status-inactive {
    background: rgba(255,23,68,0.2);
    color: #FF5252;
}

.admin-form {
    background: var(--dark);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ================================
   ANIMATIONS
   ================================ */

.fade-in {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
    .escort-detail-hero {
        grid-template-columns: 1fr;
    }
    
    .escort-main-image img {
        height: 450px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: var(--transition);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .lang-switch {
        order: -1;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .escort-detail-specs {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .contact-phone {
        font-size: 1.75rem;
    }
    
    .filters-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .escorts-grid {
        grid-template-columns: 1fr;
    }
    
    .escort-card-image {
        height: 380px;
    }
    
    .escort-detail-cta {
        flex-direction: column;
    }
    
    .escort-detail-cta .btn {
        width: 100%;
    }
}
