﻿/* Genel Stiller */
:root {
    --primary-color: #dc2626;
    --primary-dark: #b91c1c;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Üst Bilgi Çubuğu */
/* Genel stil */
.top-bar {
    background-color: #f8f9fa;
    padding: 10px 0;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}


/* Mobil cihazlar için stil */
@media (max-width: 768px) {
    .top-bar {
        padding: 5px 0; /* Padding'i azalt */
    }

    .contact-info {
        flex-direction: column;
        font-size: 12px; /* Yazı boyutunu daha da küçült */
        gap: 3px; /* Elemanlar arası boşluğu azalt */
    }

    .contact-info span {
        margin-right: 0;
        margin-bottom: 0; /* Alt boşluğu kaldır veya azalt */
    }

    .contact-info span i {
        margin-right: 3px; /* İkon ile metin arasındaki boşluğu azalt */
    }
}

/* İletişim Sayfası Genel Stil */
.contact-page {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-page h2 {
    font-size: 36px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-page .section-desc {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* İletişim Bilgileri */
.contact-info {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    font-size: 24px;
    color: #333;
}

.info-text {
    font-size: 16px;
    color: #666;
}

.info-text strong {
    color: #000;
}


/* Harita Bölümü */
.map-container {
    margin-top: 40px;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    border-radius: 8px;
}



/* Ana Menü */
.main-nav {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.appointment-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.appointment-btn:hover {
    background-color: var(--primary-dark);
}

/* Ana Görsel */
.hero {
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('photo-1486006920555-c77dcf18193c.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.appointment-btn .appointment-link {
    display: block;
    text-decoration: none;
    color: inherit; /* Butonun orijinal rengini korur */
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.secondary-btn {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 2rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s;
}

.secondary-btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Hizmetler Kartı Stilleri */
.services .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;  /* İçeriği yatayda ortalamak için */
    justify-content: center; /* İçeriği dikeyde ortalamak için */
    text-align: center; /* Metni ortalamak için */
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}
.services-header {
    background-color: #f8f8f8;
    padding: 50px 0;
    text-align: center;
}

.services-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-header .section-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 28px;
    }
    .services-header .section-desc {
        font-size: 16px;
    }
}

.services .service-card i {
    font-size: 60px;  /* İkonu büyütmek için */
    color: red;  /* Kırmızı yapmak için */
    margin-bottom: 15px;
    transition: color 0.3s ease-in-out;
}

.services .service-card:hover i {
    color: darkred;  /* Hover efektiyle koyu kırmızı renk */
}

.services .service-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.services .service-card p {
    font-size: 1rem;
    color: #666;
}

/* Hizmetler Grid Stili */
.services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}



/* İstatistikler */
.stats {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Alt Bilgi */
footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

footer h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

footer ul {
    list-style: none;
}

footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Hızlı Adımlar */
.quick-steps {
    text-align: center;
    padding: 50px 20px;
}

.steps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Küçük ekranlarda alt alta gelmesi için */
}

.step-card {
    flex: 1; /* Tüm kartlar eşit genişlikte olacak */
    max-width: 30%; /* Maksimum genişliği belirle */
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    overflow: hidden; /* Taşma olmasın */
}

.step-icon {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görsellerin tam oturmasını sağlar */
}

.arrow-icon {
    font-size: 24px;
    color: #333;
}

/* Küçük ekranlar için responsive tasarım */
@media (max-width: 768px) {
    .steps-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .step-card {
        max-width: 90%;
    }
}


/* Küçük ekranlar için responsive */
@media (max-width: 768px) {
    .steps-wrapper {
        flex-direction: column;
    }

    .step-card {
        width: 90%;
    }
}


.arrow-icon {
    font-size: 30px;
    color: #333;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-icon:hover {
    transform: translateX(5px);
}

/* Mobile Uyumluluk */
@media screen and (max-width: 768px) {
    .steps-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        width: 80%;
    }

    .step-circle {
        width: 100px;
        height: 100px;
    }

    .arrow-icon {
        margin: 20px 0;
    }
}

:root {
    --primary-color: #dc2626;
    --primary-dark: #b91c1c;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Üst Bilgi Çubuğu */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 1rem;
}

/* Ana Menü */
.main-nav {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.appointment-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.appointment-btn:hover {
    background-color: var(--primary-dark);
}

/* İletişim Sayfası Stilleri */
.contact-page {
    padding: 4rem 0;
}

.contact-page h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-page p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-form input, .contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.primary-btn:hover {
    background-color: var(--primary-dark);
}

.map-container {
    margin-top: 2rem;
}

.map-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 0.5rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .contact-page h2 {
        font-size: 2rem;
    }

    .contact-form input, .contact-form textarea {
        width: 100%;
    }

}
.about-page {
    padding: 60px 20px;
    background-color: #f0f0f0;
    text-align: center;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-page h2 {
    font-size: 3em;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.about-page p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.about-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.about-card .icon-container {
    background-color: #007BFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.about-card i {
    font-size: 2.5em;
    color: #fff;
}

.about-card h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-card p {
    font-size: 1em;
    color: #777;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-page {
        padding: 40px 15px;
    }

    .about-page h2 {
        font-size: 2.2em;
    }

    .about-page p {
        font-size: 1.1em;
    }
}
