/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f0e17;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(15, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #ff8500;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ff8500;
}

/* Mobil Menü - Düzeltilmiş */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ff8500;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav {
    display: flex;
}

.nav.active {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 14, 23, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.nav.active ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.nav.active a {
    font-size: 1.5rem;
    color: #fff;
    padding: 1rem 2rem;
    display: block;
    transition: all 0.3s ease;
}

.nav.active a:hover {
    color: #ff8500;
    background: rgba(255, 133, 0, 0.1);
    border-radius: 10px;
}

/* Header düzenlemesi */
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo h1 {
    color: #ff8500;
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .header .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .nav.active a {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
    
    .mobile-menu-toggle {
        transform: scale(0.9);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f0e17 0%, #1a1625 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23ff8500" opacity="0.1"/><circle cx="80" cy="30" r="1.5" fill="%23ffffff" opacity="0.05"/><circle cx="60" cy="70" r="1" fill="%23ff8500" opacity="0.08"/></svg>');
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff8500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff8500 0%, #ff6b00 100%);
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 133, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 133, 0, 0.4);
}

/* Districts Section */
.districts-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1625 0%, #0f0e17 100%);
}

.districts-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff8500;
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.district-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.district-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 133, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.district-card:hover::before {
    left: 100%;
}

.district-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 133, 0, 0.2);
    border-color: rgba(255, 133, 0, 0.3);
}

.district-card h3 {
    color: #ff8500;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.district-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.district-card.active {
    background: rgba(255, 133, 0, 0.15);
    border-color: #ff8500;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 133, 0, 0.3);
}

.filter-controls {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-reset-btn {
    background: linear-gradient(135deg, #ff8500 0%, #ff6b00 100%);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-reset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 133, 0, 0.3);
}

.active-filter {
    background: rgba(255, 133, 0, 0.1);
    border: 1px solid rgba(255, 133, 0, 0.3);
    border-radius: 20px;
    padding: 8px 15px;
    color: #ff8500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.active-filter button {
    background: none;
    border: none;
    color: #ff8500;
    cursor: pointer;
    font-size: 1rem;
    padding: 2px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.active-filter button:hover {
    background: rgba(255, 133, 0, 0.2);
}

/* Escorts Section */
.escorts-section {
    padding: 80px 0;
    background: #0f0e17;
}

.escorts-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff8500;
}

.escorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.escort-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.escort-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 133, 0, 0.2);
    border-color: rgba(255, 133, 0, 0.3);
}

/* Resim stilleri */
.escort-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.escort-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* tam görünür, kırpılmaz */
    background-color: #000; /* kenarlık boş kalırsa PNG gibi görünür */
}

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

.placeholder-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-size: 4rem;
}

/* Galeri stilleri */
.gallery-image {
    display: none;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-image.active {
    display: block;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* tam görünür, kırpılmaz */
}

.gallery-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.gallery-thumbnail.active {
    opacity: 1;
    border: 2px solid #ff8500;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.escort-info {
    padding: 1.5rem;
}

.escort-info h3 {
    color: #ff8500;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.escort-info .age {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.escort-info .location {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.escort-info .description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0e17 0%, #1a1625 100%);
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff8500;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 133, 0, 0.2);
    border-color: rgba(255, 133, 0, 0.3);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-item h3 {
    color: #ff8500;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.about-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1625 0%, #0f0e17 100%);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff8500;
}

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
}

.contact-info h3 {
    color: #ff8500;
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item .icon {
    font-size: 1.2rem;
}

        /* SEO İçerik Bölümleri */
        .seo-content {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .seo-content h2 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .seo-content h3 {
            font-size: 1.5rem;
            color: var(--secondary);
            margin: 20px 0 15px;
        }
        
        .seo-content p {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        
        .seo-content ul {
            list-style: none;
            padding-left: 0;
        }
        
        .seo-content li {
            padding: 10px 0;
            color: var(--gray);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .seo-content li:before {
            content: "✓";
            color: var(--primary);
            font-weight: bold;
            margin-right: 10px;
        }

/* Footer */
.footer {
    background: #0a0911;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.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: #ff8500;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff8500;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: #0f0e17;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.close-modal {
    color: #ff8500;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
    z-index: 2001;
    background: rgba(15, 14, 23, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: rgba(255, 133, 0, 0.2);
}

.modal-header {
    position: relative;
    height: 400px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.image-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    background: linear-gradient(135deg, #1a1625 0%, #2a2434 100%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 4rem;
    justify-content: center;
    align-items: center;
}

.gallery-image.active {
    display: flex;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 14, 23, 0.8);
    color: #ff8500;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background: rgba(255, 133, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.gallery-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1a1625 0%, #2a2434 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.gallery-thumbnail.active {
    border-color: #ff8500;
    transform: scale(1.1);
}

.gallery-thumbnail:hover {
    border-color: #ff8500;
}

.gallery-counter {
    position: absolute;
    top: 20px;
    right: 80px;
    background: rgba(15, 14, 23, 0.8);
    color: #ff8500;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 10;
}

.modal-body {
    padding: 2rem;
}

.modal-escort-info h2 {
    color: #ff8500;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-escort-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item strong {
    color: #ff8500;
    display: block;
    margin-bottom: 0.5rem;
}

.modal-description {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.modal-description h3 {
    color: #ff8500;
    margin-bottom: 1rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .districts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .filter-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .active-filter {
        justify-content: center;
    }
    
    .escorts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        text-align: center;
        gap: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 2% auto;
    }
    
    .modal-escort-details {
        grid-template-columns: 1fr;
    }
    
    .gallery-thumbnails {
        gap: 5px;
        bottom: 10px;
    }
    
    .gallery-thumbnail {
        width: 40px;
        height: 40px;
        font-size: 0.7rem;
    }
    
    .gallery-nav {
        padding: 8px 12px;
        font-size: 1.2rem;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .escorts-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .escort-card {
        margin: 0 10px;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.escort-card {
    animation: fadeInUp 0.6s ease forwards;
}

.escort-card:nth-child(2) {
    animation-delay: 0.1s;
}

.escort-card:nth-child(3) {
    animation-delay: 0.2s;
}

.escort-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Loading animasyonu */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 133, 0, 0.1);
    border-left: 4px solid #ff8500;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
