/* ---------------------- Genel ---------------------- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

/* ---------------------- Header ---------------------- */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 5px 10px;
    transition: color 0.3s;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: #007BFF;
}

/* ---------------------- Banner ---------------------- */
.page-banner {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.35);
}

.page-banner h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.page-banner p {
    font-size: 1.5em;
}

/* ---------------------- Service Description ---------------------- */
.service-description {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
}

.service-description h2 {
    text-align: center;
    color: #007BFF;
    margin-bottom: 40px;
    font-size: 2.5em;
}

.service-description p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ---------------------- Description Cards ---------------------- */
.description-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.description-cards .card {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.description-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.description-cards .card h3 {
    margin-top: 0;
    color: #007BFF;
    margin-bottom: 15px;
}

/* ---------------------- Moving Steps ---------------------- */
.moving-steps {
    padding: 50px 20px;
    background-color: #f0f8ff;
}

.moving-steps h2 {
    text-align: center;
    color: #28A745;
    margin-bottom: 40px;
    font-size: 2.5em;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.step-card {
    background-color: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.step-card img {
    width: 80px;
    margin-bottom: 15px;
}

.step-card h3 {
    margin: 10px 0;
    color: #28A745;
}

/* ---------------------- Customer Reviews ---------------------- */
.customer-reviews {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.customer-reviews h2 {
    font-size: 2.5em;
    color: #007BFF;
    margin-bottom: 40px;
}

.reviews-slider .review-card {
    display: none;
    max-width: 650px;
    margin: auto;
    background-color: #f9f9f9;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    font-style: italic;
}

.reviews-slider h4 {
    margin-top: 20px;
    font-weight: 600;
    color: #28A745;
}

/* ---------------------- Floating Buttons ---------------------- */
.whatsapp-float, .call-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    font-size: 30px;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.call-float { right: 90px; background-color: #007BFF; }
.whatsapp-float { background-color: #25D366; }

.whatsapp-float:hover, .call-float:hover {
    transform: scale(1.1);
}

/* ---------------------- Footer ---------------------- */
.site-footer {
    background-color: #222;
    color: #ccc;
    padding: 50px 20px;
}

.site-footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #fff;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer-about h3, .footer-links h4, .footer-services h4, .footer-contact h4 {
    color: #007BFF;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #444;
    padding-top: 20px;
}

/* ---------------------- Responsive ---------------------- */
@media screen and (max-width: 768px) {
    header { flex-direction: column; gap: 15px; }
    .page-banner h1 { font-size: 2.2em; }
    .page-banner p { font-size: 1.2em; }
}
