/* ============================================ */
/* SITE.MASTER CSS - INLINE STYLES KALDIRILDI */
/* ============================================ */

/* Modern Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body { 
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;              /* SEO: okunabilir temel font boyutu */
    line-height: 1.5;             /* SEO: rahat okunabilir satır aralığı */
}

/* Modern Header Section */
.modern-header {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: clamp(20px, 4vw, 30px) 0;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.modern-header::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 1000 100" fill="rgba(233,30,99,0.05)"><polygon points="0,20 50,0 100,30 0,100"/><polygon points="100,30 200,10 250,50 100,100"/><polygon points="250,50 400,20 500,70 250,100"/></svg>') repeat-x;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

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

.header-content {
    position: relative;
    z-index: 2;
}

.main-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    background: linear-gradient(135deg, #e91e63, #ad1457, #880e4f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(233, 30, 99, 0.3);
    line-height: 1.2;
}

.main-title i {
    color: #e91e63;
    margin-right: 15px;
    -webkit-text-fill-color: #e91e63;
}

.main-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: #64748b;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
    padding: clamp(8px, 2vw, 12px) clamp(15px, 3vw, 20px);
    border-radius: 50px;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    font-weight: 500;
    margin: 10px auto;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.premium-badge i {
    margin-right: 8px;
    font-size: 1rem;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 4vw, 40px);
    margin-top: 25px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: clamp(12px, 2vw, 15px) clamp(15px, 3vw, 20px);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.15);
}

.stat-number {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 700;
    color: #e91e63;
    display: block;
}

.stat-label {
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    color: #64748b;
    margin-top: 5px;
}

/* Content Area Styles */
.main-content {
    min-height: calc(100vh - 300px);
    padding: 0 0 50px 0;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .modern-header {
        padding: 20px 0;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .stats-row {
        gap: 20px;
    }
    
    .stat-item {
        padding: 12px 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 12px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 576px) {
    .modern-header {
        padding: 15px 0;
        margin-bottom: 20px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .main-title i {
        margin-right: 8px;
        font-size: 1.5rem;
    }
    
    .main-subtitle {
        font-size: 1rem;
    }
    
    .premium-badge {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .stats-row {
        gap: 15px;
    }
    
    .stat-item {
        padding: 10px 12px;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .main-content {
        padding: 0 0 30px 0;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .stats-row {
        gap: 10px;
    }
    
    .stat-item {
        padding: 8px 10px;
        min-width: 90px;
    }
}

/* Performance Optimizations */
.modern-header,
.stat-item {
    will-change: transform;
}

/* Accessibility */
.stat-item:focus-within {
    outline: 2px solid #e91e63;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .modern-header::before {
        display: none;
    }
    
    .premium-badge {
        animation: none;
    }
    
    
    .stat-item:hover {
        transform: none;
    }
}

/* ============================================ */
/* FOOTER STYLES - SEO CRITICAL */
/* ============================================ */

.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ecf0f1;
    margin-top: 100px;
    border-top: 3px solid #e91e63;
    position: relative;
    overflow: hidden;
}

.site-footer::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 1200 200"><defs><pattern id="pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0 50 Q 25 25, 50 50 T 100 50" fill="none" stroke="rgba(233,30,99,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="200" fill="url(%23pattern)"/></svg>') repeat;
    pointer-events: none;
}

.site-footer > .container {
    position: relative;
    z-index: 2;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-heading i {
    color: #e91e63;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #e91e63;
    padding-left: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(233, 30, 99, 0.2);
    color: #e91e63;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #e91e63;
    color: white;
    transform: translateY(-3px);
}

.footer-copyright {
    color: #95a5a6;
    font-size: 0.9rem;
}

.footer-updated {
    color: #7f8c8d;
    font-size: 0.85rem;
}

.site-footer hr {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    height: 1px;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .site-footer {
        margin-top: 50px;
        padding: 30px 0;
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }

    .row.align-items-center {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .text-md-end {
        text-align: center !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .site-footer {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    }

    .footer-links a {
        color: #f5f5f5;
    }

    .footer-links a:hover {
        color: #e91e63;
    }

    .footer-desc {
        color: #cccccc;
    }
}

/* ============================================ */
/* END FOOTER STYLES */
/* ============================================ */

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    .modern-header {
        background: linear-gradient(135deg, rgba(30,30,30,0.95) 0%, rgba(20,20,20,0.85) 100%);
    }
    
    .main-subtitle {
        color: #94a3b8;
    }
    
    .stat-label {
        color: #94a3b8;
    }
    
    .stat-item {
        background: rgba(40, 40, 40, 0.6);
        border-color: rgba(255, 255, 255, 0.1);
    }
}

/* ============================================ */
/* WHATSAPP SUPPORT BUTTON - MobilListeler Style */
/* ============================================ */
.whatsapp-support-btn {
    background: linear-gradient(135deg, #25D366 0%, #20BA58 100%);
    padding: 14px 16px;
    margin: 8px 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: whatsappPulse 1.5s ease-in-out infinite;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.whatsapp-support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-support-btn:active {
    transform: translateY(0);
}

.whatsapp-support-btn i {
    font-size: 22px;
    animation: whatsappPulse 1.5s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.65;
    }
}
