/* ═══════════════════════════════════════════
   hizmetlerimiz.css
   Adila Manuel Terapi — Hizmetler Sayfası
═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Poppins:wght@300;400;500;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css');

:root {
    --primary:       #9c6b5e;
    --primary-mid:   #a77a6c;
    --primary-soft:  #f4e9e6;
    --primary-pale:  #fdf8f6;
    --dark:          #2d2a29;
    --gray:          #6b6664;
    --border:        #ebdcd6;
    --white:         #ffffff;

    --font-script: 'Alex Brush', cursive;
    --font-serif:  'Playfair Display', serif;
    --font-sans:   'Poppins', sans-serif;
}

/* ─── Scroll Animasyonu ─── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.services-hero {
    background-color: var(--primary-pale);
    padding: 110px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hero-bg-shape {
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(ellipse, #f4e9e6 0%, transparent 70%);
    pointer-events: none;
}

.hero-lotus-bg {
    position: absolute;
    bottom: -40px; right: -40px;
    font-size: 280px;
    color: #f1e4de;
    opacity: 0.45;
    pointer-events: none;
    line-height: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-sub {
    font-family: var(--font-script);
    font-size: 42px;
    color: var(--primary);
    display: block;
    margin-bottom: -6px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 58px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero-desc {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--gray);
    max-width: 580px;
    margin: 0 auto 30px;
    line-height: 1.75;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.hero-divider span {
    width: 60px; height: 1px;
    background: var(--primary);
    opacity: 0.5;
}

.hero-divider i {
    font-size: 18px;
    color: var(--primary);
}

/* ════════════════════════════════════════
   HİZMET SATIRLARI
════════════════════════════════════════ */
.services-main {
    padding: 100px 0;
    background: var(--white);
}

.service-row {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 100px;
}

.service-row:last-child { margin-bottom: 0; }
.service-row.reverse { flex-direction: row-reverse; }

/* Görsel Sütun */
.service-img-col {
    width: 42%;
    flex-shrink: 0;
}

.service-img-wrap {
    position: relative;
    padding-bottom: 24px;
}

.img-bg-shape {
    position: absolute;
    bottom: 0; left: 0;
    width: 88%; height: 78%;
    border-radius: 50% 50% 16px 16px;
    z-index: 1;
}

.shape-warm { background-color: #c09284; }
.shape-pink { background-color: #b8938b; }

.service-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.service-badge {
    position: absolute;
    top: 20px; right: -16px;
    width: 54px; height: 54px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    z-index: 4;
    box-shadow: 0 8px 24px rgba(156, 107, 94, 0.3);
}

.service-row.reverse .service-badge {
    right: auto; left: -16px;
}

/* İçerik Sütunu */
.service-content-col {
    flex: 1;
}

.svc-number {
    font-family: var(--font-serif);
    font-size: 80px;
    font-weight: 600;
    color: var(--primary-soft);
    line-height: 1;
    display: block;
    margin-bottom: -12px;
}

.svc-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.svc-desc {
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Feature Listesi */
.svc-features {
    list-style: none;
    padding: 0; margin: 0 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.svc-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 13.5px;
    color: var(--dark);
    line-height: 1.5;
}

.svc-features li i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* Randevu Butonu */
.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(156, 107, 94, 0.25);
}

.svc-btn:hover {
    background: #7a5248;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(156, 107, 94, 0.35);
}

.svc-btn i { font-size: 16px; transition: transform 0.25s; }
.svc-btn:hover i { transform: translateX(4px); }

/* ════════════════════════════════════════
   NEDEN BİZ
════════════════════════════════════════ */
.why-section {
    background-color: var(--primary-pale);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.why-bg-shape {
    position: absolute;
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid var(--border);
    opacity: 0.6;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-sub {
    font-family: var(--font-script);
    font-size: 40px;
    color: var(--primary);
    display: block;
    margin-bottom: -4px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 600;
    color: var(--dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(156, 107, 94, 0.12);
}

.why-icon {
    width: 64px; height: 64px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.why-card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.why-card p {
    font-family: var(--font-sans);
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ════════════════════════════════════════
   CTA BANT
════════════════════════════════════════ */
.cta-section {
    background-color: #9c6b5e;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-lotus-bg {
    position: absolute;
    top: -60px; left: -60px;
    font-size: 300px;
    color: rgba(255,255,255,0.07);
    pointer-events: none;
    line-height: 1;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-cursive {
    font-family: var(--font-script);
    font-size: 36px;
    color: #f4e9e6;
    display: block;
    margin-bottom: -4px;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-text p {
    font-family: var(--font-sans);
    font-size: 15px;
    color: rgba(255,255,255,0.78);
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s;
    white-space: nowrap;
}

.cta-btn-primary:hover {
    background: #f4e9e6;
    transform: translateY(-2px);
}

.cta-btn-primary i { font-size: 18px; }

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s;
    white-space: nowrap;
}

.cta-btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* ════════════════════════════════════════
   MOBİL RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 48px; }
    .service-row { gap: 50px; }
    .svc-title { font-size: 30px; }
}

@media (max-width: 767px) {

    .services-hero { padding: 80px 0 60px; }
    .hero-sub { font-size: 34px; }
    .hero-title { font-size: 36px; }
    .hero-desc { font-size: 14px; }

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 36px;
        margin-bottom: 64px;
    }

    .service-img-col { width: 100%; }

    .service-badge { right: 12px; top: 12px; }
    .service-row.reverse .service-badge { left: auto; right: 12px; }

    .svc-number { font-size: 60px; }
    .svc-title { font-size: 26px; }
    .svc-desc { font-size: 14px; }

    .svc-features { grid-template-columns: 1fr; gap: 8px; }

    .why-section { padding: 70px 0; }
    .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .why-card { padding: 24px 16px; }
    .section-title { font-size: 30px; }
    .section-sub { font-size: 32px; }

    .cta-section { padding: 50px 0; }
    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .cta-cursive { font-size: 28px; }
    .cta-title { font-size: 28px; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-btn-primary,
    .cta-btn-secondary { justify-content: center; width: 100%; }
}

@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 30px; }
    .services-main { padding: 60px 0; }
}