:root {
    --primary-color: #8E5C74;
    --primary-hover: #754a5f;
    --secondary-color: #F8EFF3;
    --accent-color: #C895A9;
    --text-color: #2B2B2B;
    --muted-color: #6C757D;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
    padding-bottom: 70px;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

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

.bg-primary-soft {
    background-color: var(--secondary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(142, 92, 116, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border-radius: 50px;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    color: white;
}

.navbar {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.navbar-logo {
    border-radius: 0;
    object-fit: contain;
    width: auto;
    height: 46px;
    max-width: 220px;
}

@media (max-width: 575.98px) {
    .navbar-logo {
        height: 40px;
        max-width: 180px;
    }
}

.header-social a {
    line-height: 1;
}

.header-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background-color: rgba(142, 92, 116, 0.06);
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.header-social-link i {
    font-size: 0.9rem;
}

.header-social-link:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 100px 0 60px;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(142, 92, 116, 0.15);
}

.hero-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.custom-card {
    background: var(--white);
    border-radius: 16px;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(142, 92, 116, 0.1);
}

.accordion-item {
    border: 1px solid rgba(142, 92, 116, 0.1);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--text-color);
    background-color: var(--white);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

.accordion-button::after {
    filter: grayscale(1);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(41%) sepia(13%) saturate(1450%) hue-rotate(293deg) brightness(94%) contrast(87%);
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(200, 149, 169, 0.25);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 16px;
}

.mobile-cta-bar {
    background: var(--white);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
}

section {
    scroll-margin-top: 80px;
}

.wa-float-btn {
    position: fixed;
    right: 16px;
    bottom: 90px;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 14px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.wa-float-btn:hover {
    background-color: #1ebe5d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.wa-float-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wa-float-tooltip {
    margin-left: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .wa-float-btn {
        display: none;
    }
}

/* Vajinismus Nedir section typography & banner */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.section-lead {
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-text {
    font-size: 0.98rem;
    line-height: 1.7;
}

.section-lead,
.section-text {
    font-family: inherit;
}

.vajinismus-banner-full {
    width: 100%;
}

.vajinismus-banner-full img {
    display: block;
    width: 100%;
    height: auto;
}

