/* Modern Reset & Değişkenler */
:root {
    --primary-color: #ff8c00; /* Turuncu */
    --secondary-color: #2e8b57; /* Yeşil */
    --dark-color: #222;
    --light-bg: #f4f4f4;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0; padding: 0; line-height: 1.6; color: var(--dark-color);
}

a { text-decoration: none; transition: 0.3s; }

/* Header & Logo */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header h1 { margin: 0; font-size: 2.2rem; text-transform: uppercase; letter-spacing: 1px; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
section { padding: 3rem 0; }
.section-title { text-align: center; margin-bottom: 2rem; font-size: 1.8rem; position: relative; }
.section-title::after { content: ''; width: 60px; height: 3px; background: var(--primary-color); display: block; margin: 10px auto; }

/* Hizmet Kartları (Grid Yapısı) */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.service-card:hover { transform: translateY(-5px); }

.service-card img { width: 100%; height: 200px; object-fit: cover; }

.service-card h3 { padding: 15px 15px 5px; margin: 0; color: var(--secondary-color); }

.service-card p { padding: 0 15px; font-size: 0.95rem; flex-grow: 1; color: #555; }

.card-btns { display: flex; flex-direction: column; gap: 8px; padding: 15px; }

.read-more { background: #eee; color: #333; padding: 10px; border-radius: 5px; text-align: center; font-weight: bold; }
.call-now { background: var(--secondary-color); color: white; border: none; padding: 10px; border-radius: 5px; cursor: pointer; font-weight: bold; animation: pulse 2s infinite; }

/* Galeri */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}
.gallery-container img {
    width: 100%; height: 200px; object-fit: cover; border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* İletişim Kartı */
.contact-card {
    background: #fff; border: 1px solid #ddd; border-radius: 12px;
    padding: 2rem; text-align: center; max-width: 600px; margin: 0 auto;
}
.contact-buttons { display: flex; justify-content: center; gap: 15px; margin-top: 20px; }
.contact-buttons a { padding: 12px 25px; border-radius: 50px; color: #fff; font-weight: bold; display: flex; align-items: center; gap: 8px; }
.whatsapp-button { background: #25D366; }
.phone-button { background: var(--secondary-color); }

/* Footer */
footer { background: #222; color: #fff; text-align: center; padding: 20px 0; margin-top: 40px; }

/* Animasyonlar */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Mobil */
@media (max-width: 768px) {
    header h1 { font-size: 1.6rem; }
    .contact-buttons { flex-direction: column; }
}