:root {
    --primary-color: #8E5C74;
    --primary-hover: #73495d;
    --secondary-color: #F7EEF2;
    --accent-color: #C48FA8;
    --text-color: #2B2B2B;
    --text-muted: #6C757D;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

.hero-section {
    background-color: var(--secondary-color);
    padding: 100px 0 80px;
}

.hero-image {
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    border: 5px solid rgba(255,255,255,0.75);
}

.trust-bar {
    background-color: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.trust-label {
    font-size: 0.92rem;
    line-height: 1.15;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .trust-label {
        font-size: 0.84rem;
    }
}

.bg-custom-light {
    background-color: var(--secondary-color);
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(142, 92, 116, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border: 5px solid var(--white);
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

/* WhatsApp Floating Button (Yeni) */
.wa-float-btn {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;
    z-index: 1100;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.wa-float-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.22);
    filter: brightness(0.98);
}

.wa-float-icon {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    font-size: 30px;
}

.wa-float-tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 20, 20, 0.92);
    color: #fff;
    padding: 8px 10px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
    font-size: 0.92rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.wa-float-btn:hover .wa-float-tooltip,
.wa-float-btn:focus-visible .wa-float-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(-2px);
}

.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .whatsapp-float {
        display: none;
    }
    .wa-float-btn {
        display: none;
    }
    body {
        padding-bottom: 78px;
    }
}

/* Mobil CTA bar */
.mobile-cta-bar {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0,0,0,0.06);
}

.btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background: #1fb95a;
    border-color: #1fb95a;
    color: #fff;
}

