/* === GENEL AYARLAR === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f4f6f8;
    color: #333;
    line-height: 1.7;
}

/* === ÜST MENÜ === */
header {
    background: #0a3d62;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    width: 180px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ffd32a;
}

/* === HERO / BANNER === */
.page-banner {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 6px solid #ffd32a;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 61, 98, 0.65);
}

.banner-content {
    position: relative;
    color: #fff;
    z-index: 2;
    animation: fadeInUp 1.2s ease forwards;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.banner-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

/* === ANA İÇERİK === */
.content {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.service-description h2 {
    color: #0a3d62;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.service-description p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
}

/* === TAŞIMA ADIMLARI === */
.moving-steps {
    background: #e9f1f9;
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
}

.moving-steps h2 {
    color: #0a3d62;
    font-size: 2rem;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.step-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.step-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.step-card h3 {
    color: #0a3d62;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-card p {
    color: #555;
}

/* === MÜŞTERİ YORUMLARI === */
.customer-reviews {
    background: #0a3d62;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.customer-reviews h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.reviews-slider {
    max-width: 800px;
    margin: 0 auto;
}

.review-card {
    display: none;
    font-style: italic;
    background: #fff;
    color: #0a3d62;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.review-card h4 {
    margin-top: 15px;
    font-weight: 600;
    color: #ff9c00;
}

/* === WHATSAPP & CALL === */
.whatsapp-float,
.call-float {
    position: fixed;
    right: 20px;
    width: 55px;
    height: 55px;
    text-align: center;
    line-height: 55px;
    border-radius: 50%;
    font-size: 28px;
    color: #fff;
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    background: #128c7e;
}

.call-float:hover {
    background: #053c7c;
}

.whatsapp-float {
    bottom: 100px;
    background: #25d366;
}

.call-float {
    bottom: 20px;
    background: #0a3d62;
}

/* === FOOTER === */
.site-footer {
    background: #0a3d62;
    color: #fff;
    padding: 60px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-container h3, 
.footer-container h4 {
    color: #ffd32a;
    margin-bottom: 15px;
}

.footer-container ul {
    list-style: none;
}

.footer-container ul li {
    margin-bottom: 10px;
}

.footer-container ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-container ul li a:hover {
    color: #ffd32a;
}

.footer-contact a {
    color: #ffd32a;
    text-decoration: none;
}

.social-icons a {
    margin-right: 12px;
    font-size: 20px;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffd32a;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    font-size: 0.95rem;
}

/* === ANİMASYONLAR === */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: 1s;
}
.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.fadeInUp { animation: fadeInUp 1s forwards; }
.fadeInDown { animation: fadeInDown 1s forwards; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === MOBİL UYUMLULUK === */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        font-size: 0.95rem;
    }
}
