/* SiteYonetimTasarimi temalı public site stilleri */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --border-color: #e2e8f0;
    --gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.theme-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.theme-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.theme-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.theme-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: none;
}

.theme-logo img {
    height: 40px;
    width: auto;
}

.theme-logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.theme-logo strong {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.theme-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.theme-nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.theme-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.theme-nav-menu a:hover::after,
.theme-nav-menu a.active::after {
    width: 100%;
}

.theme-nav-menu a:hover,
.theme-nav-menu a.active {
    color: var(--primary-color);
}

/* Mobil menüde gösterilecek "Uygulamaya git" öğesi; masaüstünde gizli */
.theme-nav-app-item {
    display: none;
}

.theme-demo-btn {
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    color: white !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.theme-demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    color: white !important;
}

.theme-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.theme-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.theme-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding-top: 80px;
    overflow: hidden;
}

.theme-hero::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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.theme-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.theme-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.theme-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.theme-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.theme-btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.theme-btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.theme-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

.theme-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.theme-btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.theme-btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.theme-btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.theme-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.theme-stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.theme-stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Section Styles */
.theme-section {
    padding: 6rem 0;
}

/* Anasayfa özellikler - tasarımla aynı (kayma olmaması için) */
.theme-features-preview-section {
    padding: 6rem 0;
    background: white;
}

.theme-features-preview-section .theme-features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.theme-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.theme-section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.theme-section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.theme-section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature cards */
.theme-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.theme-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.theme-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.theme-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.theme-feature-icon i {
    font-size: 2rem;
    color: white;
}

.theme-feature-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.theme-feature-card p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Pricing Section */
.theme-pricing {
    background: var(--light-color);
}

.theme-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.theme-pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.theme-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.theme-pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.theme-popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.theme-pricing-header h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.theme-pricing-header p {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.theme-pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.theme-pricing-price .currency {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-right: 5px;
}

.theme-pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-color);
}

.theme-pricing-price .period {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-left: 5px;
}

.theme-pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.theme-pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-pricing-features li:last-child {
    border-bottom: none;
}

.theme-pricing-features .fa-check {
    color: #10b981;
}

/* Gallery Section */
.theme-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.theme-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    height: 300px;
}

.theme-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.theme-gallery-item:hover img {
    transform: scale(1.1);
}

.theme-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.theme-gallery-item:hover .theme-gallery-overlay {
    transform: translateY(0);
}

.theme-gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.theme-gallery-overlay p {
    opacity: 0.9;
}

/* Contact Section */
.theme-contact {
    background: var(--light-color);
}

.theme-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.theme-contact-info h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.theme-contact-info > p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.theme-contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.theme-contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.theme-contact-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.theme-contact-item p {
    color: var(--text-color);
}

.theme-contact-items {
    margin-bottom: 2rem;
}

.theme-social-links {
    display: flex;
    gap: 1rem;
}

.theme-social-links a {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.theme-social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.theme-map-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.theme-map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.theme-map-placeholder h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.theme-map-placeholder p {
    color: var(--text-color);
}

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

.theme-contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.theme-contact-card .theme-feature-icon {
    margin: 0 auto 1.5rem;
}

.theme-contact-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.theme-contact-card p {
    color: var(--text-color);
    line-height: 1.8;
}

.theme-contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.theme-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.theme-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.theme-form-group input,
.theme-form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.theme-form-group input:focus,
.theme-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.theme-form-group textarea {
    resize: vertical;
}

.theme-contact-form .theme-btn {
    width: 100%;
}

/* Footer */
.theme-footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

.theme-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.theme-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.theme-footer-logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.theme-footer-logo strong {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.theme-footer-col p {
    opacity: 0.8;
    line-height: 1.8;
}

.theme-footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.theme-footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.theme-footer-social a:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
}

.theme-footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.theme-footer-col ul {
    list-style: none;
}

.theme-footer-col ul li {
    margin-bottom: 0.75rem;
}

.theme-footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.theme-footer-col ul li a:hover {
    color: white;
}

.theme-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Page Header */
.theme-page-header {
    padding: 150px 0 80px;
    background: var(--gradient);
    text-align: center;
    color: white;
}

.theme-page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.theme-page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Content Section */
.theme-content-section {
    padding: 4rem 0;
}

/* About content */
.theme-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.theme-about-text h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.theme-about-text .content {
    line-height: 1.8;
    color: var(--text-color);
}

.theme-about-text .content p {
    margin-bottom: 1rem;
}

.theme-about-section {
    background: var(--light-color);
}

.theme-about-content.theme-about-single-col {
    grid-template-columns: 1fr;
}

.theme-about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.theme-about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.theme-about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-about-badge i {
    font-size: 2rem;
    color: var(--primary-color);
}

.theme-about-badge span {
    font-weight: 700;
    color: var(--dark-color);
}

.theme-mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.theme-mission-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.theme-mission-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.theme-mission-card p {
    line-height: 1.8;
    color: var(--text-color);
}

@media (max-width: 968px) {
    .theme-mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

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

.theme-highlight-item {
    text-align: center;
}

.theme-highlight-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.theme-highlight-icon i {
    font-size: 2.5rem;
    color: white;
}

.theme-highlight-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.theme-highlight-item p {
    color: var(--text-color);
}

/* CTA Section */
.theme-cta-section {
    background: var(--gradient);
    padding: 5rem 0;
    text-align: center;
}

.theme-cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.theme-cta-content p {
    font-size: 1.2rem;
    color: white;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.theme-cta-content .theme-btn-primary {
    background: white;
    color: var(--primary-color);
}

/* Validation */
.theme-validation-summary {
    color: #dc3545;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8d7da;
    border-radius: 10px;
}

.theme-form-group .field-validation-error {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 968px) {
    .theme-nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .theme-nav-menu.active {
        left: 0;
    }

    .theme-hamburger {
        display: flex;
    }

    /* Masaüstünde header'daki butonu gizle, mobil menüde göster */
    .theme-demo-btn {
        display: none;
    }

    .theme-nav-app-item {
        display: list-item;
        list-style: none;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .theme-nav-app-item .theme-demo-btn-mobile {
        display: inline-block;
        padding: 0.6rem 1.2rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        text-align: center;
    }

    .theme-hero-title {
        font-size: 2.5rem;
    }

    .theme-hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .theme-about-content {
        grid-template-columns: 1fr;
    }

    .theme-contact-wrapper {
        grid-template-columns: 1fr;
    }

    .theme-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .theme-form-row {
        grid-template-columns: 1fr;
    }
}

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

    .theme-hero-buttons {
        flex-direction: column;
    }

    .theme-section-header h2 {
        font-size: 2rem;
    }

    .theme-pricing-grid {
        grid-template-columns: 1fr;
    }

    .theme-pricing-card.featured {
        transform: scale(1);
    }

    .theme-gallery-grid {
        grid-template-columns: 1fr;
    }

    .theme-footer-content {
        grid-template-columns: 1fr;
    }

    .theme-page-header h1 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes themeFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.theme-hero-content > * {
    animation: themeFadeInUp 0.8s ease-out;
}

html {
    scroll-behavior: smooth;
}

/* ========== Şablonla birebir: iletisim.html / hakkimizda.html sınıfları ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header {
    padding: 150px 0 80px;
    background: var(--gradient);
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.content-section {
    padding: 4rem 0;
}

/* About - hakkimizda.html */
.about {
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content.about-single-col {
    grid-template-columns: 1fr;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-badge i {
    font-size: 2rem;
    color: var(--primary-color);
}

.about-badge span {
    font-weight: 700;
    color: var(--dark-color);
}

.about-text h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin-bottom: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-text .about-body {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-text .about-body p {
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Contact - iletisim.html */
.contact {
    background: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-info > p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn,
.contact-form button.btn {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-map-section {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map-inner {
    text-align: center;
}

.contact-map-inner i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-map-inner h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-map-inner p {
    color: var(--text-color);
}

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

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-info-card .contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-info-card .contact-card-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-color);
    line-height: 1.8;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.mission-vision-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.mission-vision-card .mission-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-vision-card .mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.mission-vision-card p {
    line-height: 1.8;
    color: var(--text-color);
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

/* Çerez uyarı çubuğu */
.theme-cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.theme-cookie-bar a {
    color: #93c5fd;
    text-decoration: underline;
    margin-left: 0.25rem;
}

.theme-cookie-bar a:hover {
    color: white;
}
