/* Genel Stil */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    text-align: center;
    padding: 50px 0;
    background: linear-gradient(135deg, #0074D9, #004080);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-out forwards;
}

header p {
    font-size: 1.3rem;
    color: #cce7ff;
}

/* Hizmet Kartları */
.service-selection {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}

.service-card {
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 280px;
    text-align: center;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(135deg, #0074D9, #ff4500);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #004080;
    text-transform: uppercase;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

/* Butonlar */
.btn {
    display: inline-block;
    background-color: #0074D9;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: #0056b3;
    transform: translateY(-5px);
}

.btn:active {
    background-color: #003e8a;
}

/* Hizmet Adımları */
.services-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    background-color: #f9f9f9;
}

.step {
    text-align: center;
    max-width: 250px;
}

.step-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step h3 {
    font-size: 1.4rem;
    color: #004080;
    margin-bottom: 10px;
}

.step p {
    font-size: 1rem;
    color: #555;
}

.step:hover .step-image {
    transform: scale(1.1);
}

/* Yorumlar Bölümü */
.reviews {
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
}

.reviews h2 {
    color: #004080;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #0074D9;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
}

form button:hover {
    background-color: #0056b3;
}

#reviews-list {
    text-align: left;
}

.review-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.review-item:last-child {
    border-bottom: none;
}

.review-item h3 {
    font-size: 1.1rem;
    color: #0074D9;
}

.review-item p {
    margin: 5px 0;
    color: #555;
}

/* Footer */
footer {
    text-align: center;
    background-color: #222;
    color: #ddd;
    padding: 20px 0;
    font-size: 0.9rem;
    margin-top: 30px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

footer a {
    color: #00c2ff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

footer a:hover {
    color: #0080c9;
}

/* Animasyon */
@keyframes fadeIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

    .service-card {
        width: 90%;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .services-steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 90%;
    }
}
