/* Sayfa İçerikleri için CSS Stilleri */

/* Hero Sections */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title i {
    margin-right: 15px;
    color: #ffd700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Hero Variations */
.services-hero {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.privacy-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.terms-hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.contact-hero {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.faq-hero {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.download-hero {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.section-title i {
    margin-right: 15px;
    color: #667eea;
}

/* Cards and Items */
.mission-card, .vision-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.service-card.featured {
    border: 2px solid #667eea;
    position: relative;
}

.service-card.featured::before {
    content: 'Popüler';
    position: absolute;
    top: -10px;
    left: 20px;
    background: #667eea;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
}

.service-features li i {
    color: #28a745;
    margin-right: 10px;
}

/* Privacy and Terms Styles */
.last-updated, .effective-date {
    background: #e3f2fd;
    color: #1976d2;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.last-updated i, .effective-date i {
    margin-right: 10px;
}

.privacy-section, .terms-section {
    margin-bottom: 3rem;
}

.privacy-section h2, .terms-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
}

.data-types, .security-measures, .rights-grid, .rules-grid, .responsibilities {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.data-item, .security-item, .right-item, .rule-item, .responsibility-item {
    display: flex;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.data-item i, .security-item i, .right-item i, .rule-item i, .responsibility-item i {
    font-size: 1.5rem;
    color: #667eea;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.usage-list {
    list-style: none;
    padding: 0;
}

.usage-list li, .prohibited-item {
    padding: 0.8rem;
    margin: 0.5rem 0;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.prohibited-item {
    border-left-color: #dc3545;
    color: #dc3545;
}

.prohibited-item i {
    margin-right: 10px;
}

/* Contact Styles */
.contact-form-section, .contact-info-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

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

.contact-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.contact-items {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    color: #666;
}

/* FAQ Styles */
.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

.contact-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    margin-top: 3rem;
}

.contact-cta h3 {
    margin-bottom: 1rem;
}

/* Download Styles */
.download-content {
    margin-top: 3rem;
}

.app-downloads {
    margin-top: 2rem;
}

.download-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.download-item:hover {
    transform: translateY(-5px);
}

.download-item.android {
    border-left: 4px solid #3ddc84;
}

.download-item.ios {
    border-left: 4px solid #007aff;
}

.download-icon {
    font-size: 3rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.download-item.android .download-icon i {
    color: #3ddc84;
}

.download-item.ios .download-icon i {
    color: #007aff;
}

.download-info {
    flex: 1;
    margin-right: 2rem;
}

.download-info h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.download-features {
    margin-top: 1rem;
}

.feature-tag {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

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

.resource-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.resource-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-lg i {
    margin-right: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border: none;
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17, 153, 142, 0.4);
}

/* Footer App Links - Bootstrap 5 Uyumlu */
.app-links {
    margin-top: 1rem;
}

.app-link {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    color: #495057;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

.app-link:hover {
    color: white;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.app-link i {
    font-size: 1rem;
}

.android-link:hover {
    background: linear-gradient(135deg, #3ddc84 0%, #34c759 100%);
    border-color: #34c759;
}

.ios-link:hover {
    background: linear-gradient(135deg, #007aff 0%, #0051d0 100%);
    border-color: #0051d0;
}

/* Footer responsiveness */
@media (max-width: 576px) {
    .app-links {
        flex-direction: column;
        gap: 0.5rem !important;
    }

    .app-link {
        justify-content: center;
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .download-item {
        flex-direction: column;
        text-align: center;
    }

    .download-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .download-info {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .data-types, .security-measures, .rights-grid, .rules-grid {
        grid-template-columns: 1fr;
    }
}
