:root {
    --primary-color: #6a5acd;
    --secondary-color: #9370db;
    --accent-color: #ff7e5f;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --white: #ffffff;
    --black: #000000;
    --vip-color: #d4af37;
    --gold-color: #ffd700;
    --silver-color: #c0c0c0;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fallback font tanımları */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-display: swap;
}

.font-loaded body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-display: swap;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-text span {
    color: var(--accent-color);
}

/* Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu a {
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--border-radius);
}

.nav-menu a:hover {
    background-color: rgba(106, 90, 205, 0.1);
}

.nav-menu .cta-button {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--border-radius);
}

.nav-menu .cta-button:hover {
    background-color: #ff6a4f;
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin: 50px 0 30px;
    position: relative;
}

.section-title h2 {
    font-size: 2rem;
    display: inline-block;
    padding: 0 20px;
    background-color: var(--light-color);
    position: relative;
    z-index: 1;
}

.section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--secondary-color);
    z-index: 0;
}

/* Profile Cards */
.profiles-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.profile-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.profile-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    color: var(--white);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.vip-badge {
    background-color: var(--vip-color);
    animation: pulse 2s infinite;
}

.gold-badge {
    background-color: var(--gold-color);
    color: var(--dark-color);
}

.silver-badge {
    background-color: var(--silver-color);
    color: var(--dark-color);
}

.profile-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.profile-content {
    padding: 20px;
}

.profile-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.profile-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.profile-location i {
    font-size: 1rem;
}

.profile-status {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.online-dot {
    width: 10px;
    height: 10px;
    background-color: var(--success-color);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-whatsapp {
    background-color: var(--success-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: var(--border-radius);
}

.btn-whatsapp:hover {
    background-color: #1f9c4a;
    color: var(--white);
}

.btn-profile {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px;
    border-radius: var(--border-radius);
    text-align: center;
}

.btn-profile:hover {
    background-color: #5a4cb1;
    color: var(--white);
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 5px;
    color: #666;
}



/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu .cta-button {
        margin-top: 20px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }
    
    .profile-name {
        font-size: 1.2rem;
    }
}

/* Lazy Loading */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Features Section */
.features {
    background-color: var(--white);
    padding: 60px 0;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    background-color: var(--light-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background-color: var(--light-color);
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 20px 0;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text::before {
    top: -10px;
    left: -15px;
}

.testimonial-text::after {
    bottom: -20px;
    right: -15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background-color: var(--white);
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: var(--light-color);
    padding: 15px 20px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-answer {
    padding: 20px;
    background-color: var(--white);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .profiles-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Kartların mobilde daha küçük görünmesi için ek ayarlar */
    .profile-card {
        margin-bottom: 0;
    }
    
    .profile-image {
        height: 180px;
    }
    
    .profile-content {
        padding: 15px;
    }
    
    .profile-name {
        font-size: 1.1rem;
    }
    
    .profile-location, 
    .profile-status {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .profile-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-whatsapp, 
    .btn-profile {
        padding: 8px;
        font-size: 0.9rem;
    }
}

/* Profil Sayfası Özel Stiller */
.profile-page {
    padding: 30px 0;
}

.profile-gallery {
    margin-bottom: 30px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.profile-header h1 {
    font-size: 2rem;
    margin: 0;
}

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #555;
}

.profile-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.btn-call {
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.profile-details h2 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-list {
    list-style: none;
    padding-left: 0;
}

.services-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
}

/* Yorumlar Bölümü */
.profile-reviews {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.review-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 600;
}

.review-rating {
    color: var(--gold-color);
}

.review-date {
    display: block;
    font-size: 0.8rem;
    color: #777;
    margin-top: 10px;
}

.btn-show-all {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-actions {
        flex-direction: column;
    }
    
    .btn-whatsapp, 
    .btn-call {
        justify-content: center;
    }
}

/* FOOTER LINKLERİYLE TAM UYUMLU SEO KEYWORDS */
.seo-keywords {
    margin-top: 40px;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.8;
}

.seo-keywords > p:first-child {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(106, 90, 205, 0.2);
    padding-bottom: 8px;
    display: inline-block;
}

.seo-keywords a {
    color: inherit; /* Mevcut footer rengini devralır */
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.seo-keywords a:hover {
    color: var(--accent-color) !important; /* Diğer footer linkleri gibi turuncu */
    opacity: 1;
}

.seo-keywords p:not(:first-child) {
    margin-bottom: 15px;
    color: inherit; /* Body rengini devralır */
}

/* Kişisel Bilgiler Stili */
.personal-info {
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-list {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.info-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list strong {
    min-width: 150px;
    display: inline-block;
    color: #555;
}

.logo-img {
    height: 48px;        /* Mobilde ve masaüstünde ideal yükseklik */
    width: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

/* Eğer header biraz daha büyükse 55-60px de yapabilirsin */
@media (max-width: 768px) {
    .logo-img {
        height: 42px;
    }
}