/* AnatoliaCore - Ortak CSS Dosyası */
/* Tüm sayfalar bu tasarımı kullanacak */

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f8f9fa;
    --accent-color: #6c757d;
    --text-dark: #212529;
    --text-light: #6c757d;
    --gradient-primary: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gradient-secondary: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Navigation Styles */
.navbar {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 50px;
    max-width: 100%;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Cards */
.service-card, .partner-card, .about-card, .contact-card, .value-card, .team-card, .service-detail-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.service-card:hover, .partner-card:hover, .value-card:hover, .team-card:hover, .service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Icons */
.service-icon, .service-icon-large, .partner-icon, .about-icon, .contact-icon, .value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2rem;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    font-size: 3rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

/* Titles */
.service-title, .partner-name, .about-title, .contact-title, .value-title, .team-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Helpers */
.mt-2 { margin-top: 0.5rem; }
.h-100 { height: 100%; }
.g-4 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }

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

.about-title {
    font-size: 2rem;
    text-align: center;
}

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

.value-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Descriptions */
.service-description, .partner-description, .about-description, .contact-info, .value-description, .team-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.team-description {
    font-size: 0.9rem;
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 117, 125, 0.3);
    color: white;
}

/* Sections */
.partners-section, .values-section, .form-section {
    background: var(--gradient-secondary);
}

.contact-section, .cta-section, .stats-section {
    background: var(--gradient-primary);
    color: white;
}

/* Partner Logos */
.partner-logo {
    height: 72px;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.75;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Partner Categories */
.partner-category {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Category Sections */
.category-section {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: #28a745;
    margin-right: 10px;
}

/* Forms */
.form-card {
    background: white;
    border-radius: 15px;
    padding: 40px 45px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #9ca3af;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06), 0 0 0 0.2rem rgba(108, 117, 125, 0.20);
}

/* Stats */
.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    color: #ccc;
}

/* Team */
.team-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
    color: var(--accent-color);
}

.team-position {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Contact Info */
.contact-info {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Map */
.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

.footer-logo {
    height: 60px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card, .partner-card, .about-card, .contact-card, .value-card, .team-card, .service-detail-card {
        margin-bottom: 30px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card, .partner-card, .about-card, .contact-card, .value-card, .team-card, .service-detail-card {
        padding: 30px 20px;
    }
}
