/* === GENEL AYARLAR === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* === ÜST MENÜ === */
header {
    background: #0a3d62;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 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: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 61, 98, 0.6);
}

.banner-content {
    position: relative;
    color: #fff;
    z-index: 2;
}

.banner-content h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-content p {
    font-size: 1.2rem;
}

/* === HİZMET DETAYLARI === */
.content {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.service-description h2 {
    color: #0a3d62;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-description p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

/* === TAŞIMA ADIMLARI === */
.moving-steps {
    background: #eaf0f6;
    padding: 50px 20px;
    text-align: center;
}

.moving-steps h2 {
    color: #0a3d62;
    margin-bottom: 40px;
    font-size: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.step-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.step-card h3 {
    color: #0a3d62;
    margin-top: 15px;
    font-size: 1.2rem;
}

/* === MÜŞTERİ YORUMLARI === */
.customer-reviews {
    background: #0a3d62;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.customer-reviews h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.review-card {
    display: none;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

.review-card h4 {
    margin-top: 15px;
    font-weight: 500;
}

/* === WHATSAPP & CALL === */
.whatsapp-float,
.call-float {
    position: fixed;
    right: 20px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 26px;
    color: #fff;
    z-index: 999;
}

.whatsapp-float {
    bottom: 90px;
    background: #25d366;
}

.call-float {
    bottom: 20px;
    background: #0a3d62;
}

/* === FOOTER === */
.site-footer {
    background: #0a3d62;
    color: #fff;
    padding: 50px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-container h4, 
.footer-container h3 {
    color: #ffd32a;
    margin-bottom: 15px;
}

.footer-container ul {
    list-style: none;
}

.footer-container ul li {
    margin-bottom: 8px;
}

.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: 10px;
    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: 15px;
    font-size: 0.9rem;
}

/* === 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;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}
