body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7f7f7;
    color: #222;
}
.container {
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
}
header {
    background: #003366;
    color: #fff;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}
.logo h1 {
    margin: 0;
    font-size: 2.1rem;
    letter-spacing: 1px;
}
.subtitle {
    font-size: 1rem;
    color: #cce0ff;
}
.header-contact {
    display: flex;
    align-items: center;
    gap: 18px;
}
.header-contact a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 25px;
    background: #25d366;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: background 0.2s;
}
.header-contact a.phone {
    background: #ffcc00;
    color: #003366;
}
.header-contact a:hover {
    background: #128c7e;
    color: #fff;
}
.header-contact .address {
    background: transparent;
    color: #cce0ff;
    font-size: 0.98rem;
    padding: 0;
}
nav {
    background: #002244;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    transition: color 0.2s;
}
nav ul li a:hover {
    color: #ffcc00;
}
.slider-container {
    margin: 0 auto;
    margin-top: 20px;
    max-width: 900px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    position: relative;
}
.slider {
    display: flex;
    transition: transform 0.5s;
}
.slide {
    min-width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
}
.slider-btn.left { left: 10px; }
.slider-btn.right { right: 10px; }
.hero {
    background: linear-gradient(90deg, #003366 60%, #0055a5 100%);
    color: #fff;
    text-align: center;
    padding: 40px 0 30px 0;
    margin-bottom: 0;
}
.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}
.search-box {
    margin: 0 auto 30px auto;
    max-width: 500px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    padding: 7px 15px;
}
.search-box input {
    border: none;
    outline: none;
    font-size: 1.1rem;
    flex: 1;
    padding: 10px 12px;
    border-radius: 30px;
    background: transparent;
}
.search-box button {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 8px;
    transition: background 0.2s;
}
.search-box button:hover {
    background: #128c7e;
}
section {
    margin: 40px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    padding: 30px 0;
}
.about, .services, .contact {
    text-align: center;
}
.contact-box {
    background: #f1f7ff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 25px 20px;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 18px;
}
.contact-box a {
    display: inline-block;
    margin: 10px 8px 0 8px;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: #25d366;
    transition: background 0.2s;
}
.contact-box a.phone {
    background: #ffcc00;
    color: #003366;
}
.contact-box a:hover {
    background: #128c7e;
    color: #fff;
}
.contact-box .address {
    display: block;
    margin-top: 10px;
    color: #003366;
    font-size: 1.05rem;
}
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    z-index: 1000;
    transition: background 0.2s, transform 0.2s;
    animation: bounce 1.5s infinite alternate;
}
.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.08);
}
@keyframes bounce {
    0% { transform: translateY(0);}
    100% { transform: translateY(-10px);}
}
footer {
    background: #002244;
    color: #fff;
    text-align: center;
    padding: 22px 0 10px 0;
    font-size: 1rem;
    margin-top: 30px;
    border-radius: 0 0 10px 10px;
}
.footer-social {
    margin-bottom: 8px;
}
.footer-social a {
    color: #ffcc00;
    margin: 0 8px;
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: #25d366;
}
@media (max-width: 700px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin: 8px 0;
    }
    .slider-container {
        max-width: 100vw;
        border-radius: 0;
    }
    .hero {
        padding: 30px 0 18px 0;
    }
    section {
        padding: 18px 0;
    }
    .contact-box {
        padding: 18px 8px;
    }
}

/* Hakkımızda bölümü için */
.about-flex {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.about-img img {
    width: 260px;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.about-content {
    flex: 1;
    min-width: 260px;
}
.about-box {
    background: #f1f7ff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 18px 20px;
    margin-top: 10px;
    font-size: 1.08rem;
}
.about-highlight {
    display: inline-block;
    background: #ffcc00;
    color: #003366;
    border-radius: 16px;
    padding: 3px 12px;
    margin: 0 4px;
    font-weight: bold;
    font-size: 1rem;
}
@media (max-width: 900px) {
    .about-flex {
        flex-direction: column;
        gap: 18px;
    }
    .about-img img {
        width: 100%;
        max-width: 350px;
        height: 180px;
    }
}

/* Hizmetler için grid ve kartlar */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 28px;
}
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.service-card {
    background: #f7faff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 28px 16px 18px 16px;
    text-align: center;
    font-size: 1.08rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.service-card i {
    font-size: 2.2rem;
    color: #25d366;
    margin-bottom: 12px;
}
.service-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    transform: translateY(-4px) scale(1.03);
    background: #e6f7ee;
}