:root {
    --primary: #9c6b5e;
    --primary-soft: #f4e9e6;
    --dark: #2d2a29;
    --gray: #6b6664;
    --white: #ffffff;
    --bg-main: #fdfaf7;
    
    --font-script: 'Alex Brush', cursive;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
}

.about-section {
    background-color: var(--bg-main);
    padding: 70px 0;          /* eskisi: 100px 0 */
    font-family: var(--font-sans);
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* === Sol Alan (Görsel ve Kart) === */
.about-image-col {
    width: 40%;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 30px;
}

.bg-lotus-icon {
    position: absolute;
    top: -50px;
    left: -50px;
    font-size: 300px;
    color: #f1e4de;
    opacity: 0.5;
    z-index: 0;
}

.bg-brown-shape {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 90%;
    height: 70%;
    background-color: #a77a6c;
    border-radius: 50% 50% 20px 20px;
    z-index: 1;
}

.doctor-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    display: block;
}

/* Üste Binen İsim Kartı */
.name-card {
    position: absolute;
    bottom: 0;
    left: -30px;
    background-color: #9c6b5e;
    color: var(--white);
    padding: 25px 35px;
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(156, 107, 94, 0.2);
    text-align: center;
}

.card-cursive { font-family: var(--font-script); font-size: 32px; display: block; margin-bottom: 5px; color: #f4e9e6; }
.card-name { font-family: var(--font-serif); font-size: 26px; font-weight: 700; margin-bottom: 5px; letter-spacing: 1px; }
.card-title { font-size: 11px; letter-spacing: 2px; opacity: 0.9; display: block; margin-bottom: 15px; }
.name-card-icon { font-size: 20px; color: #f4e9e6; }

/* === Sağ Alan (İçerik) === */
.about-content-col {
    width: 60%;
}

.about-subtitle { font-family: var(--font-script); font-size: 38px; color: var(--primary); display: block; margin-bottom: -5px; }
.about-title { font-family: var(--font-serif); font-size: 42px; color: var(--dark); margin-bottom: 10px; }
.about-desc { font-size: 16px; color: var(--gray); font-weight: 500; margin-bottom: 30px; }

/* Alıntı Alanı */
.quote-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.quote-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.quote-text {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.7;
    margin: 0;
}

/* === Hizmetler Kutusu === */
.about-services-box {
    position: relative;
    background-color: #fcf8f6;
    border: 1.5px solid #ebdcd6;
    border-radius: 20px;
    padding: 40px 30px 30px;
    margin-bottom: 30px;
}

.box-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #a77a6c;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 30px;
    border-radius: 30px;
    letter-spacing: 1px;
}

.box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
}

.box-item { display: flex; align-items: flex-start; gap: 15px; }
.b-icon {
    width: 45px;
    height: 45px;
    background-color: #9c6b5e;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.b-text h4 { font-size: 15px; color: var(--dark); margin-bottom: 5px; font-weight: 600; }
.b-text p { font-size: 13px; color: var(--gray); line-height: 1.5; margin: 0; }

/* === İletişim Kutusu === */
.about-contact-box {
    display: flex;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    padding: 20px 30px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 50%;
}

.contact-item.border-right {
    border-right: 1px solid #eee;
    padding-right: 20px;
    margin-right: 20px;
}

.c-icon {
    width: 45px;
    height: 45px;
    background-color: #a77a6c;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.c-text { display: flex; flex-direction: column; }
.c-text span { font-size: 12px; color: var(--gray); line-height: 1.4; }
.c-text strong { font-size: 16px; color: var(--dark); margin-top: 3px; }
.cursive-tag { font-family: var(--font-script); font-size: 22px !important; color: #d0b0a5 !important; }

/* === Tablet (1100px ve altı) === */
@media (max-width: 1100px) {
    .about-section { padding: 60px 0; }
    .about-container { flex-direction: column; gap: 40px; }
    .about-image-col, .about-content-col { width: 100%; }
    .image-wrapper { max-width: 500px; margin: 0 auto; }
    .name-card { left: 0; right: 0; width: 90%; margin: 0 auto; bottom: -20px; }
}

/* === Mobil (767px ve altı) === */
@media (max-width: 767px) {
    .about-section {
        padding: 40px 0 50px;   /* üst boşluk azaltıldı */
    }

    .about-container {
        gap: 24px;
    }

    /* Görsel sütunu — name-card için alt boşluk bırak */
    .about-image-col {
        padding-bottom: 60px;   /* name-card taşmasını say */
    }

    .image-wrapper {
        max-width: 100%;
        padding-bottom: 0;
    }

    /* İsim kartı küçültüldü ve tam ortalandı */
    .name-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: 88%;
        padding: 18px 20px;
    }
    .card-cursive { font-size: 24px; }
    .card-name    { font-size: 20px; }
    .card-title   { font-size: 10px; margin-bottom: 10px; }

    /* Lotus arka plan ikonu küçültüldü */
    .bg-lotus-icon { font-size: 180px; top: -30px; left: -20px; }

    /* İçerik sütunu */
    .about-subtitle { font-size: 30px; }
    .about-title    { font-size: 26px; line-height: 1.25; }
    .about-desc     { font-size: 14px; margin-bottom: 20px; }

    /* Alıntı */
    .quote-box { gap: 14px; margin-bottom: 28px; }
    .quote-text { font-size: 14px; }

    /* Hizmet kutusu */
    .box-grid { grid-template-columns: 1fr; gap: 20px; }
    .about-services-box { padding: 36px 20px 24px; margin-bottom: 20px; }
    .box-badge { font-size: 12px; padding: 7px 22px; white-space: nowrap; }

    /* İletişim kutusu */
    .about-contact-box {
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
        padding: 18px 20px;
    }
    .contact-item {
        width: 100%;
    }
    .contact-item.border-right {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        border-bottom: 1px solid #eee;
        padding-bottom: 18px;
    }
    .c-text strong { font-size: 14px; }
}

/* === Küçük Mobil (400px ve altı) === */
@media (max-width: 400px) {
    .about-section  { padding: 30px 0 40px; }
    .about-title    { font-size: 22px; }
    .about-subtitle { font-size: 26px; }
    .card-name      { font-size: 17px; }
    .bg-brown-shape { height: 60%; }
}