/* ============================================
   PHP SEO SITE - ULTRA MODERN DESIGN SYSTEM
   ============================================ */

:root {
    /* Colors */
    --gold: #FFD700;
    --gold-dark: #B8860B;
    --gold-light: #FFF8DC;
    --pink: #E91E8C;
    --pink-dark: #C71670;
    --dark: #0D0D1A;
    --darker: #05050A;
    --gray-light: #F0EAF8;
    --gray-dark: #2A2A3E;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #FFD700, #FFA500);
    --gradient-dark: linear-gradient(180deg, #0D0D1A 0%, #05050A 100%);
    --gradient-pink: linear-gradient(135deg, #E91E8C, #FF69B4);
    
    /* Effects */
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 215, 0, 0.1);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 10px 30px rgba(255, 215, 0, 0.15);
    
    /* Typography */
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Nunito', sans-serif;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--dark);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    background-attachment: fixed; background-position: center !important;
}

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0D0D1A !important;
    backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255, 215, 0, 0.2) !important;
    padding: 0.8rem 2rem !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

nav:hover {
    background: linear-gradient(180deg, rgba(13, 13, 26, 1) 0%, rgba(13, 13, 26, 0.95) 100%);
    border-bottom-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.logo {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 900;
    color: #FFD700 !important;
    text-decoration: none;
    transition: all 0.4s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.logo:hover {
    text-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem !important;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    position: relative;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #FFD700 !important;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 80%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding-top: 200px !important;
    padding-bottom: 120px;
    background: linear-gradient(135deg, rgba(13, 13, 26, 0.85) 0%, rgba(26, 10, 46, 0.95) 50%, rgba(13, 13, 26, 0.85) 100%);
    background-image: 
        linear-gradient(135deg, rgba(13, 13, 26, 0.85) 0%, rgba(26, 10, 46, 0.95) 50%, rgba(13, 13, 26, 0.85) 100%),
        url('/assets/images/hero-bg.webp');
    background-attachment: fixed; background-position: center !important;
    background-size: cover !important;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(233, 30, 140, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-badge {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700 !important;
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--gold);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 6vw, 3.5rem) !important;
    font-weight: 900;
    color: #fff;
    margin: 0 0 1.5rem;
    line-height: 1.5 !important;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease 0.2s backwards;
}

.hero h1 span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 1.5rem !important;
}

.hero p {
    color: #ffffff !important;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 10px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2rem !important;
    font-size: clamp(0.85rem, 2vw, 1rem);
    position: relative;
    overflow: hidden;
}

.btn-glow {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: var(--shadow-gold);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-glow:hover::before {
    width: 300px;
    height: 300px;
}

.btn-glow:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.btn-outline-gold {
    background: transparent;
    color: #FFD700 !important;
    border: 2px solid var(--gold);
    position: relative;
}

.btn-outline-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: 0.4s;
    z-index: -1;
}

.btn-outline-gold:hover::before {
    left: 0;
}

.btn-outline-gold:hover {
    color: #000;
    transform: scale(1.05);
}

.btn-vip-premium {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #FFD700 !important;
    border: 2px solid var(--gold);
    padding: clamp(1rem, 2.5vw, 1.4rem) clamp(2rem, 5vw, 3.5rem);
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.btn-vip-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: 0.6s;
}

.btn-vip-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-vip-premium:hover::before {
    left: 100%;
}

.btn-vip-premium:hover::after {
    opacity: 1;
}

.btn-vip-premium:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.25);
    background: linear-gradient(135deg, #0f3460, #16213e);
    color: #fff;
}

/* ============================================
   LISTINGS SECTION
   ============================================ */

.listings-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(13, 13, 26, 0.5) 0%, rgba(13, 13, 26, 0.8) 100%);
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.section-label {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--pink);
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-pink);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1320px;
    margin: 0 auto;
}

.profile-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    position: relative;
    animation: fadeInUp 0.8s ease;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.profile-card:hover::before {
    opacity: 1;
}

.profile-card:hover {
    border-color: #FFD700 !important;
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.15);
}

.profile-image {
    height: 300px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
}

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

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

.profile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.profile-badges {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    display: flex;
    gap: 2rem !important;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700 !important;
    padding: 0.5rem 1rem;
    border: 1px solid var(--gold);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-pink {
    background: rgba(233, 30, 140, 0.2);
    border-color: var(--pink);
    color: var(--pink);
}

.profile-info {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    right: 1.2rem;
    z-index: 2;
}

.profile-info h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 900;
    margin: 0 0 0.5rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.profile-info p {
    color: rgba(240, 234, 248, 0.9);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

.profile-footer {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.profile-footer span {
    font-size: 0.85rem;
    color: rgba(240, 240, 240, 0.7);
    font-weight: 600;
}

/* ============================================
   SEO CONTENT SECTION
   ============================================ */

.seo-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(233, 30, 140, 0.05) 0%, rgba(13, 13, 26, 0.8) 100%);
}

.seo-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.seo-article {
    color: rgba(240, 234, 248, 0.85);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 2;
    padding: 2.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    animation: fadeInUp 1s ease;
}

.seo-article h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 900;
    color: #FFD700 !important;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.seo-article p {
    margin: 0;
    letter-spacing: 0.3px;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: linear-gradient(180deg, rgba(5, 5, 10, 0.95) 0%, rgba(0, 0, 0, 1) 100%);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 2rem 1.5rem;
    text-align: center;
    color: rgba(240, 234, 248, 0.6);
    font-size: 0.9rem;
}

footer p {
    margin: 0.5rem 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-links a {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-vip-premium {
        max-width: 100%;
    }

    .profiles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .seo-content {
        gap: 2rem;
    }

    .seo-article {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .profile-card {
        border-radius: 15px;
    }

    .profile-image {
        height: 250px;
    }
}

/* Dış Kapsayıcı */
    .vip-container-825 {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 50px 0; /* Boşluğu artırdık ki etrafı açık olsun, odak butonda kalsın */
        position: relative;
    }

    /* Ana Buton - Devasa ve Dikkat Çekici */
    .btn-vip-premium-825 {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 22px 60px; /* Boyutları daha da büyüttük */
        font-size: 28px; /* Yazı boyutu oldukça büyük */
        font-weight: 900; /* Ekstra kalın yazı */
        letter-spacing: 2px;
        color: #ffffff !important;
        text-decoration: none;
        border-radius: 60px; /* Tam yuvarlak hatlar */
        border: 3px solid rgba(255, 255, 255, 0.4); /* Beyaz hafif çerçeve */
        overflow: hidden; /* Işık parlaması dışarı taşmasın diye */
        
        /* Akışkan Ateş Rengi Arka Plan */
        background: linear-gradient(45deg, #ff0000, #ff7300, #ffc800, #ff7300, #ff0000);
        background-size: 400%; /* Animasyonun kayması için genişlettik */
        
        /* Hem renk kayması hem de sürekli nefes alma (kalp atışı) animasyonları */
        animation: glow-bg-825 10s linear infinite, heartbeat-825 2s infinite;
        
        /* 3D Derinlik Hissi */
        box-shadow: 0 15px 30px rgba(255, 60, 0, 0.5), inset 0 -4px 0 rgba(0, 0, 0, 0.2);
        transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 1;
    }

    /* Butonun Üzerinden Geçen Işık Efekti (Shine) */
    .btn-vip-premium-825::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
        transform: skewX(-25deg);
        animation: shine-sweep-825 3s infinite; /* 3 saniyede bir parlar */
        z-index: -1;
    }

    /* Üzerine Gelindiğinde (Hover) */
    .btn-vip-premium-825:hover {
        transform: scale(1.1) translateY(-5px); /* Çok daha belirgin şekilde öne çıkar */
        box-shadow: 0 25px 45px rgba(255, 60, 0, 0.8), inset 0 -4px 0 rgba(0, 0, 0, 0.2);
        color: #fff;
        text-decoration: none;
        animation: glow-bg-825 10s linear infinite; /* Üzerine gelince kalp atışını durdur, sadece renk aksın */
    }

    /* Sürekli Hareket Eden Ok İşareti */
    .vip-arrow-825 {
        margin-left: 18px;
        font-size: 32px; /* Oku da büyüttük */
        animation: arrow-push-825 0.8s infinite alternate; /* Sürekli sağa sola gidip gelir */
    }

    /* 1. Animasyon: Arka Plan Renk Akışı */
    @keyframes glow-bg-825 {
        0% { background-position: 0 0; }
        50% { background-position: 400% 0; }
        100% { background-position: 0 0; }
    }

    /* 2. Animasyon: Nefes Alma / Kalp Atışı Efekti */
    @keyframes heartbeat-825 {
        0% { transform: scale(1); }
        50% { transform: scale(1.04); }
        100% { transform: scale(1); }
    }

    /* 3. Animasyon: Oku İleri Doğru İtme Efekti */
    @keyframes arrow-push-825 {
        0% { transform: translateX(0); }
        100% { transform: translateX(12px); }
    }

    /* 4. Animasyon: Işık Parlaması Geçişi */
    @keyframes shine-sweep-825 {
        0% { left: -100%; }
        20% { left: 200%; } /* Hızlıca geçer */
        100% { left: 200%; } /* Bir süre bekler, sonra tekrar başlar */
    }
