body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}
.navbar {
    transition: all 0.3s;
}
.hero-section {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}
.section-title {
    color: #1d3557;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: #e63946;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.service-card {
    background-color: #fff;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.12);
}
.service-card .icon {
    font-size: 48px;
    color: #e63946;
    margin-bottom: 20px;
}
.quote-section {
    background-color: #1d3557;
    color: white;
}
.form-control, .form-select {
    border-radius: 8px;
    padding: 12px;
}
.btn-primary {
    background-color: #e63946;
    border-color: #e63946;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
}
.btn-primary:hover {
    background-color: #d62839;
    border-color: #d62839;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #1d3557;
}
.footer {
    background-color: #1d3557;
    color: #a8dadc;
}
.footer a {
    color: #f1faee;
    text-decoration: none;
}
.footer a:hover {
    color: #e63946;
}
/* Yorum Slider Stilleri */
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    background-color: rgba(29, 53, 87, 0.5);
    border-radius: 50%;
    padding: 20px;
}
.testimonial-card-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid white;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.testimonial-card-img-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid white;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    color: #FFF;
    transform: scale(1.1);
}
/* Scroll to Top Button */
.scroll-top-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 110px; /* WhatsApp butonunun üstünde */
    right: 40px;
    background-color: #1d3557;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: none; /* Başlangıçta gizli */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-top-float:hover {
    color: #FFF;
    background-color: #457b9d;
    transform: scale(1.1);
}
