body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f3ef;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Section spacing */
.section-padding {
    padding: 100px 0 60px 0;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
}

/* Navbar */
.navbar {
    padding: 18px 0;
    background-color: #ffffff;
}

.navbar-brand {
    font-weight: 600;
    color: #6d5c4d;
}

.nav-link {
    font-weight: 500;
    color: #7a6f63;
    margin-left: 18px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #b08968;
}

.nav-link.active {
    color: #b08968;
}

/* Linkler  */
a {
    color: #b08968;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #7a6f63;
    text-decoration: none;
}

/* Soft Button */
.btn-soft {
    background-color: #d8c3a5;
    color: #4a4a4a;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-soft:hover {
    background-color: #c9a97f;
    color: white;
    transform: translateY(-2px);
}

/* Hero Background Soft Gradient */
.bg-soft {
    background: linear-gradient(135deg,
            #f3e9dc 0%,
            #f7f3ef 50%,
            #efe5dc 100%);
}

/* Cards */
.service-card {
    border: none;
    border-radius: 20px;
    background-color: #ffffff;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.blog-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
    background-color: #ffffff;
}

.blog-card img {
    height: 230px;
    object-fit: cover;
    width: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Footer */
.footer {
    background-color: #efe5dc;
    padding: 30px 0;
    font-size: 14px;
    color: #6d5c4d;
}

/* Accordion Soft Style */
.accordion-button {
    background-color: #f3e9dc;
    color: #6d5c4d;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: #e6d5c3;
    color: #4a4a4a;
    box-shadow: none;
}

.accordion-body {
    background-color: #ffffff;
    color: #5a5a5a;
}

.accordion-item {
    border: none;
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

/* WhatsApp */
.whatsapp-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all .3s ease;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Popup */
.whatsapp-popup {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: .3s ease;
    pointer-events: none;
}

.whatsapp-wrapper:hover .whatsapp-popup {
    opacity: 1;
}

/* Mobil */
@media (max-width: 768px) {
    .whatsapp-popup {
        display: none;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}
.justify-text {
    text-align: justify;
    text-justify: inter-word; /* Daha düzgün boşluk dağılımı */
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase; /* kartvizit hissi verir */
    color: #6c757d; /* soft gri */
    font-weight: 500;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}