

/* =========================================================
           RESET
        ========================================================= */

:root {
    --cream: #f8f5ef;
    --cream-dark: #eee8df;
    --purple: #493b55;
    --purple-dark: #30283a;
    --lavender: #ddd5e5;
    --text: #3b3940;
    --muted: #77727a;
    --white: #ffffff;
    --border: rgba(73,59,85,.14);
    --shadow: 0 20px 60px rgba(48,40,58,.10);
    --transition: .35s cubic-bezier(.2,.7,.2,1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--text);
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}


@font-face {
    font-family: 'DINPro-CondensedRegular';
    src: url("../fonts/DINPro-CondensedRegular.eot");
    src: url("../fonts/DINPro-CondensedRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/DINPro-CondensedRegular.woff") format("woff"), url("../fonts/DINPro-CondensedRegular.woff2") format("woff2"), url("../fonts/DINPro-CondensedRegular.otf") format("otf"), url("../fonts/DINPro-CondensedRegular.svg") format("svg"), url("../fonts/DINPro-CondensedRegular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}




body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

section {
    padding: 110px 0;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--purple-dark);
    line-height: 1.15;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--purple);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

    .eyebrow::before {
        content: "";
        width: 28px;
        height: 1px;
        background: currentColor;
    }


/* =========================================================
           HEADER
        ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}

    .site-header.scrolled {
        background: rgba(255,255,255,.96);
        border-color: rgba(48,40,58,.08);
        box-shadow: 0 8px 30px rgba(48,40,58,.08);
        backdrop-filter: blur(12px);
    }


/* ÜSTTEKİ LOGO */

.logo {
    position: relative;
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: white;
    transition: color .35s ease;
}

.site-header.scrolled .logo {
    color: var(--purple-dark);
}

.logo-main {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 27px;
    font-weight: 700;
}

.logo-sub {
    margin-top: 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .8;
}


/* NAV */

.navbar {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 31px;
    list-style: none;
}

    .desktop-nav a {
        position: relative;
        color: white;
        font-size: 15px;
        font-weight: 600;
        transition: color .35s ease;
    }

@media(max-width:1042px) {

    .desktop-nav a {
        position: relative;
        color: white;
        font-size: 12px;
        font-weight: 600;
        transition: color .35s ease;
    }
}


.site-header.scrolled .desktop-nav a {
    color: var(--purple-dark);
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width .3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}


/* NAV BUTTON */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 13px;
}

.search-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: white;
    font-size: 19px;
    transition: color .35s ease;
}

.site-header.scrolled .search-btn {
    color: var(--purple-dark);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 21px;
    border-radius: 100px;
    background: #c69a58;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    transition: background .35s ease, color .35s ease;
}

.site-header.scrolled .header-cta {
    background: var(--purple);
    color: white;
}


/* HAMBURGER */

.menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    position: relative;
    border: 0;
    background: transparent;
}

    .menu-toggle span {
        position: absolute;
        left: 9px;
        width: 27px;
        height: 2px;
        background: white;
        transition: transform .3s ease, opacity .3s ease, background .35s ease;
    }

.site-header.scrolled
.menu-toggle span {
    background: var(--purple-dark);
}

.menu-toggle span:nth-child(1) {
    top: 14px;
}

.menu-toggle span:nth-child(2) {
    top: 22px;
}

.menu-toggle span:nth-child(3) {
    top: 30px;
}

.menu-toggle.active span:nth-child(1) {
    top: 22px;
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    top: 22px;
    transform: rotate(-45deg);
}


/* =========================================================
           MOBILE MENU
        ========================================================= */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 8% 40px;
    background: var(--purple-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity .35s ease, visibility .35s ease, transform .35s ease;
}

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.mobile-menu-inner {
    width: min(520px, 100%);
}

.mobile-menu-list {
    list-style: none;
}

    .mobile-menu-list li {
        overflow: hidden;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .mobile-menu-list a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 19px 0;
        color: white;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 28px;
        transform: translateY(25px);
        opacity: 0;
        transition: transform .45s ease, opacity .45s ease;
    }

.mobile-menu.active
.mobile-menu-list a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-list li:nth-child(1) a {
    transition-delay: .05s;
}

.mobile-menu-list li:nth-child(2) a {
    transition-delay: .10s;
}

.mobile-menu-list li:nth-child(3) a {
    transition-delay: .15s;
}

.mobile-menu-list li:nth-child(4) a {
    transition-delay: .20s;
}

.mobile-menu-list li:nth-child(5) a {
    transition-delay: .25s;
}

.mobile-menu-list li:nth-child(6) a {
    transition-delay: .30s;
}

.mobile-menu-randevu {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 30px;
    border-radius: 100px;
    background: white;
    color: var(--purple-dark);
    font-weight: 700;
}


/* =========================================================
           SEARCH OVERLAY
        ========================================================= */

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 150px;
    background: rgba(35,29,42,.78);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

    .search-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.search-window {
    width: min(650px, 90%);
    padding: 30px;
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
}

    .search-window h3 {
        margin-bottom: 20px;
        font-size: 28px;
    }

.search-form {
    display: flex;
    gap: 10px;
}

.search-form-input {
    flex: 1;
    min-width: 0;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #ddd7df;
    border-radius: 10px;
    outline: none;
}

.search-form-button {
    padding: 0 22px;
    border: 0;
    border-radius: 10px;
    background: var(--purple);
    color: white;
}

.close-search {
    margin-top: 15px;
    border: 0;
    background: transparent;
    color: var(--muted);
}


/* =========================================================
           HERO
        ========================================================= */

.hero {
    position: relative;
    min-height: 820px;
    padding: 0;
    overflow: hidden;
    background: var(--purple-dark);
}


    /* decorative circles */

    .hero::before {
        content: "";
        position: absolute;
        width: 620px;
        height: 620px;
        top: -250px;
        right: -170px;
        border-radius: 50%;
        background: rgba(221,213,229,.12);
    }

    .hero::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        bottom: -180px;
        left: -100px;
        border-radius: 50%;
        background: rgba(221,213,229,.08);
    }


/* HERO SLIDER */

.hero-slider {
    position: relative;
    width: 100%;
    height: 820px;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
}

.hero-track {
    display: flex;
    height: 100%;
    transition: transform .75s cubic-bezier(.65,.05,.15,1);
}

.hero-slide {
    flex: 0 0 100%;
    height: 100%;
}

.hero-slide-inner {
    height: 100%;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
    padding-top: 82px;
}


/* HERO TEXT */

.hero-copy {
    position: relative;
    z-index: 5;
    color: rgba(255,255,255,.78);
}

    .hero-copy .eyebrow {
        color: #d9cfdf;
    }

    .hero-copy h1 {
        max-width: 720px;
        margin-bottom: 28px;
        color: white;
        font-size: clamp(45px, 6vw, 78px);
        letter-spacing: -.025em;
    }

    .hero-copy p {
        max-width: 590px;
        margin-bottom: 35px;
        color: rgba(255,255,255,.75);
        font-size: 17px;
    }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    transition: transform .25s ease, background .25s ease;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-light {
    background: white;
    color: var(--purple-dark);
}

.btn-transparent {
    border: 1px solid rgba(255,255,255,.35);
    color: white;
}


/* HERO IMAGE */

.hero-visual {
    position: relative;
    height: 570px;
}

.hero-image-main {
    position: absolute;
    inset: 30px 20px 0 40px;
    overflow: hidden;
    border-radius: 180px 180px 25px 25px;
    transform: rotate(2deg);
    box-shadow: 0 35px 80px rgba(0,0,0,.28);
}

    .hero-image-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.04);
    }

.hero-image-card {
    position: absolute;
    left: 0;
    bottom: 35px;
    width: 190px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255,255,255,.95);
    color: var(--purple-dark);
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

    .hero-image-card strong {
        display: block;
        margin-bottom: 5px;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 25px;
    }

    .hero-image-card span {
        font-size: 15px;
        color: var(--muted);
    }


/* HERO CONTROLS */

.hero-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 35px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-arrows {
    display: flex;
    gap: 8px;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: white;
    font-size: 18px;
    transition: background .25s ease;
}

    .slider-arrow:hover {
        background: rgba(255,255,255,.2);
    }

.hero-counter {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.65);
    font-size: 15px;
}

.hero-progress {
    width: 120px;
    height: 2px;
    overflow: hidden;
    background: rgba(255,255,255,.2);
}

.hero-progress-bar {
    width: 33.33%;
    height: 100%;
    background: white;
    transition: transform .75s ease;
}


/* =========================================================
           INTRO
        ========================================================= */

.intro {
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.intro-label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.intro-content h2 {
    max-width: 800px;
    margin-bottom: 25px;
    font-size: clamp(35px, 5vw, 57px);
}

.intro-content p {
    max-width: 750px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 17px;
}


/* =========================================================
           ABOUT
        ========================================================= */

.about {
}

.about-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 85px;
    align-items: center;
}

.about-visual {
    position: relative;
    padding-right: 40px;
}

.about-image {
    overflow: hidden;
    border-radius: 20px 100px 20px 20px;
}

    .about-image img {
        width: 100%;
        height: 570px;
        object-fit: cover;
    }

.about-tag {
    position: absolute;
    right: 0;
    bottom: 35px;
    width: 175px;
    padding: 22px;
    border-radius: 18px;
    background: var(--purple);
    color: white;
    box-shadow: var(--shadow);
}

    .about-tag strong {
        display: block;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 26px;
    }

    .about-tag span {
        font-size: 15px;
        opacity: .75;
    }

.about-content h2 {
    margin-bottom: 25px;
    font-size: clamp(37px, 5vw, 58px);
}

.about-content p {
    margin-bottom: 18px;
    color: var(--muted);
}


/* =========================================================
   HAKKIMDA SAYFASI - İÇERİK
   about-ic
========================================================= */

.about-ic {
    /*padding: 100px 0;*/
}

.about-ic-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 70px;
    align-items: start;
}

/* =========================================================
   GRUP VE ÇALIŞMA SAYFASI - İÇERİK
   about-ic
========================================================= */

.grc-ic {
    /* padding: 100px 0; */
}

.grc-ic-grid {
    display: grid;
    grid-template-columns: 0.50fr 1.50fr;
    gap: 70px;
    align-items: start;
}

@media (max-width: 991px) {
    .grc-ic-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* =========================================================
   FOTOĞRAF
========================================================= */

.about-ic-visual {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding-right: 30px;
}

.about-ic-image {
    width: 100%;
    overflow: hidden;
    border-radius: 20px 100px 20px 20px;
}

    .about-ic-image img {
        display: block;
        width: 100%;
        height: 570px;
        object-fit: cover;
    }


/* =========================================================
   FOTOĞRAF ETİKETİ
========================================================= */

.about-ic-tag {
    position: absolute;
    right: 0;
    bottom: 35px;
    width: 175px;
    padding: 22px;
    border-radius: 18px;
    background: var(--purple);
    color: white;
    box-shadow: var(--shadow);
}

    .about-ic-tag strong {
        display: block;
        font-family: "Playfair Display", Georgia, serif;
        font-size: 26px;
        line-height: 1.2;
    }

    .about-ic-tag span {
        display: block;
        margin-top: 5px;
        font-size: 15px;
        line-height: 1.4;
        opacity: .75;
    }


/* =========================================================
   İÇERİK
========================================================= */

.about-ic-content {
    width: 100%;
}

    .about-ic-content p {
        margin-bottom: 18px;
        color: var(--muted);
        line-height: 1.5;
    }


/* =========================================================
   RANDEVU BUTONU
========================================================= */

.about-ic-button {
    display: inline-block;
    margin-top: 15px;
    background: #493b55;
    color: white;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .about-ic {
        padding: 80px 0;
    }

    .about-ic-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .about-ic-visual {
        max-width: 100%;
        padding-right: 20px;
    }

    .about-ic-image {
        border-radius: 20px 70px 20px 20px;
    }

        .about-ic-image img {
            height: 500px;
        }

    .about-ic-tag {
        width: 160px;
        padding: 18px;
        right: 0;
        bottom: 25px;
    }

        .about-ic-tag strong {
            font-size: 23px;
        }

        .about-ic-tag span {
            font-size: 14px;
        }

    .about-ic-content p {
        font-size: 15px;
        line-height: 1.75;
    }
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 767px) {

    .about-ic {
        padding: 65px 0;
    }

    .about-ic-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-ic-visual {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .about-ic-image {
        width: 100%;
        border-radius: 20px 70px 20px 20px;
    }

        .about-ic-image img {
            width: 100%;
            height: 480px;
            object-fit: cover;
        }

    .about-ic-tag {
        width: 160px;
        right: 10px;
        bottom: 20px;
        padding: 18px;
        border-radius: 16px;
    }

        .about-ic-tag strong {
            font-size: 22px;
        }

        .about-ic-tag span {
            font-size: 14px;
        }

    .about-ic-content p {
        margin-bottom: 16px;
        font-size: 15px;
        line-height: 1.75;
    }
}


/* =========================================================
   KÜÇÜK MOBİL
========================================================= */

@media (max-width: 480px) {

    .about-ic {
        padding: 50px 0;
    }

    .about-ic-grid {
        gap: 35px;
    }

    .about-ic-image {
        border-radius: 18px 55px 18px 18px;
    }

        .about-ic-image img {
            height: 400px;
        }

    .about-ic-tag {
        width: 145px;
        right: 8px;
        bottom: 15px;
        padding: 15px;
    }

        .about-ic-tag strong {
            font-size: 20px;
        }

        .about-ic-tag span {
            font-size: 13px;
        }

    .about-ic-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}


/* =========================================================
   SERVICES
========================================================= */

.calisma-alanlari-text {
    color: #123f4c
}

.about-ic-content ul {
    padding-left: 2%;
}

    .about-ic-content ul li::marker {
        color: #c69a58;
    }

.lican ul {
    padding-left: 2%;
}

    .lican ul li::marker {
        color: #c69a58;
    }

.services {
    background: white;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 25px;
}

    .section-heading h2 {
        margin-bottom: 18px;
        font-size: clamp(38px, 5vw, 57px);
    }

    .section-heading p {
        color: var(--muted);
        font-size: 16px;
    }


/* 2'Lİ GRID */
.services-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 30px !important;
   
    width: 100%;
}

    .services-list .service-item {
        width: 100% !important;
        box-sizing: border-box;
    }


/* SERVICE */
.service-item {
    display: grid;
    grid-template-columns: 55px 1fr 55px;
    align-items: center;
    gap: 15px;
    padding: 28px 10px;
    border-bottom: 1px solid var(--border);
    transition: background .25s ease, padding .25s ease;
}

    .service-item:hover {
        padding-left: 20px;
        padding-right: 20px;
        background: #faf8fb;
    }

.service-number {
    color: #b1a6b8;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
}

.service-item h3 {
    margin-bottom: 6px;
    font-size: 24px;
}

    .service-item h3 a,
    .service-item p a {
        color: inherit;
        text-decoration: none;
    }

.service-item p {
    max-width: 680px;
    color: var(--muted);
    font-size: 14px;
}

.service-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--purple);
    transition: transform .25s ease, background .25s ease;
}

.service-item:hover .service-arrow {
    transform: rotate(45deg);
    background: var(--purple);
    color: white;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .services-list {
        grid-template-columns: 1fr !important;
    }

    .service-item {
        grid-template-columns: 60px 1fr 60px;
    }
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 767px) {

    .services-list {
        grid-template-columns: 1fr !important;
    }

    .service-item {
        grid-template-columns: 45px 1fr 45px;
        gap: 10px;
        padding: 22px 5px;
    }

        .service-item h3 {
            font-size: 21px;
        }

        .service-item p {
            font-size: 13px;
        }

    .service-arrow {
        width: 40px;
        height: 40px;
    }
}

/* =========================================================
           PROCESS
        ========================================================= */

.process {
    background: var(--lavender);
}

.process-heading {
    /*max-width: 650px;*/
    margin-bottom: 55px;
}

    .process-heading h2 {
        font-size: clamp(38px, 5vw, 56px);
    }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.process-card {
    min-height: 260px;
    padding: 30px;
    border-left: 1px solid rgba(73,59,85,.18);
}

    .process-card:first-child {
        border-left: 0;
    }

.process-number {
    margin-bottom: 35px;
    color: rgba(73,59,85,.45);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
}

.process-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.process-card p {
    color: rgba(48,40,58,.65);
    font-size: 14px;
}

/* =========================================================
   PROCESS - İçerik
========================================================= */
.process1-color {
    background: #123f4c !important;
    min-height: 30px !important;
   
}

    .process1-color p {
        color: #fff !important;
     
        /* text-align: center; */
       
        
    }
.process1 {
    width: 100%;
}

    .process1 .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
.process1-grid .grup-baslik {
    font-size: 18px !important;
    color: #c69a58 !important;
    font-size: 18px !important;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    font-weight: bold !important;
}

.process1-grid .grup-ozet {
    padding-top: 7%;
    font-size: 13px !important;
}

.process1-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
}

    /* Kartlar */
    .process1-grid > * {
        display: block !important;
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
        margin: 0 !important;
        float: none !important;
        box-sizing: border-box !important;
    }

      


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .process1-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

        /* Son satırda 1 tane kalırsa ortala */
        .process1-grid > *:last-child:nth-child(2n + 1) {
            grid-column: 1 / 3;
        }
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 575px) {

    .process1-grid {
        grid-template-columns: 1fr !important;
    }

        .process1-grid > * {
            grid-column: auto !important;
        }
}






/* =========================================================
   MAKALE İÇ
========================================================= */

.grc1-ic-grid {
    display: grid;
    grid-template-columns: 0.50fr 1.50fr;
    gap: 0px;
    align-items: start;
}


/* =========================================================
   SAĞ TARAF
========================================================= */

.about-ic-content {
    width: 100% !important;
    min-width: 0 !important;
}


/* =========================================================
   PROCESS 2
========================================================= */

.process2 {
   padding-top:2%
}



/* BURASI ÖNEMLİ
   .container kullanmıyoruz
*/

.process2-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0px !important;
    margin: 0 !important;
    padding: 0 !important;
}


    /* =========================================================
   REPEATER ITEM
========================================================= */

    .process2-grid > .service-item {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
        box-sizing: border-box !important;
    }


    /* =========================================================
   KART
========================================================= */

    .process2-grid .service-item {
        width: 100% !important;
        box-sizing: border-box !important;
    }


        /* =========================================================
   LINK
========================================================= */

        .process2-grid .service-item > a {
            display: block !important;
            width: 100% !important;
            box-sizing: border-box !important;
            text-decoration: none !important;
        }


    /* =========================================================
   KART BAŞLIĞI
========================================================= */

.process2-grid .grup-baslik {
    font-size: 18px !important;
    color: #c69a58 !important;
    font-size: 18px !important;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    font-weight: bold !important;
}



    /* =========================================================
   KART ÖZET
========================================================= */

.process2-grid .grup-ozet {
 
    font-size: 13px !important;
    margin:0;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .process2 {

        padding:0
    }



    .grc1-ic-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .process2-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 575px) {

    .process2-grid {
        grid-template-columns: 1fr !important;
    }
}






/* =========================================================
           ARTICLES / REVIEW-INSPIRED CAROUSEL
        ========================================================= */
.reviews {
    background: linear-gradient(135deg, var(--purple-dark) 0%, #5b4b67 100%);
    color: white;
    overflow: hidden;
}

    .reviews .eyebrow {
        color: #d9cfdf;
    }

        .reviews .eyebrow::before {
            background: currentColor;
        }

.reviews-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

    .reviews-heading h2 {
        margin-bottom: 15px;
        color: white;
        font-size: clamp(38px, 5vw, 58px);
    }

    .reviews-heading p {
        color: rgba(255,255,255,.68);
        max-width: 680px;
    }

.article-carousel {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
    cursor: grab;
}

    .article-carousel.is-dragging {
        cursor: grabbing;
    }

.article-track {
    display: flex;
    gap: 22px;
    will-change: transform;
    transition: none;
}

.article-card {
    flex: 0 0 calc((100% - 44px) / 3);
    min-height: 360px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 26px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0,0,0,.12);
    display: flex;
    flex-direction: column;
    transition: transform .35s ease, background .35s ease, border-color .35s ease;
}

    .article-card:hover {
        transform: translateY(-5px);
        background: rgba(255,255,255,.10);
        border-color: rgba(255,255,255,.22);
    }

.article-card-kicker {
    color: #d9cfdf;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.article-card h3 {
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 16px;
}

.article-card p {
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

.article-card-footer {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.article-card-tag {
    font-size: 12px;
    color: rgba(255,255,255,.5);
}

.article-card-link {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

    .article-card-link:hover {
        opacity: .75;
    }

.article-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}

.article-arrows {
    display: flex;
    gap: 8px;
}

.article-arrow {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    color: #fff;
    position: relative;
    z-index: 20;
    cursor: pointer;
}

.article-dots {
    display: flex;
    gap: 7px;
}

.article-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    transition: width .3s ease, background .3s ease;
    cursor: pointer;
}

    .article-dot.active {
        width: 25px;
        border-radius: 10px;
        background: #fff;
    }

@media(max-width:900px) {
    .article-card {
        flex-basis: calc((100% - 22px)/2);
    }
}

@media(max-width:600px) {
    .article-card {
        flex-basis: 100%;
        min-height: 330px;
        padding: 26px;
    }

        .article-card h3 {
            font-size: 25px;
        }

    .article-track {
        gap: 16px;
    }
}

/* =========================================================
   APPOINTMENT
========================================================= */

.appointment {
    background: var(--cream);
}

.appointment-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 60px;
    align-items: start;
    width: 100%;
}

.appointment-copy {
    min-width: 0;
}

    .appointment-copy h2 {
        margin-bottom: 22px;
        font-size: clamp(38px, 5vw, 57px);
    }

    .appointment-copy p {
        max-width: 500px;
        color: var(--muted);
    }

.appointment-note {
    margin-top: 35px;
    padding: 22px;
    border-left: 3px solid var(--purple);
    background: rgba(221,213,229,.35);
}

    .appointment-note strong {
        display: block;
        margin-bottom: 5px;
        color: var(--purple-dark);
    }


/* FORM */

.appointment-form {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 40px;
    border-radius: 25px;
    background: white;
    box-shadow: 0 25px 70px rgba(48,40,58,.09);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        margin-bottom: 7px;
        color: var(--purple-dark);
        font-size: 13px;
        font-weight: 700;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 2px 14px;
        border: 1px solid #ddd7df;
        border-radius: 11px;
        outline: none;
        background: white;
        color: var(--text);
    }

    .form-group textarea {
        min-height: 130px;
        resize: vertical;
    }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 15px;
}

    .form-check input {
        width: auto;
        margin-top: 5px;
    }

.submit-btn {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 100px;
    background: var(--purple);
    color: white;
    font-weight: 700;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .appointment-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 767px) {

    .appointment-form {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
/* =========================================================
           RESPONSIVE CONTACT MAP
        ========================================================= */
.contact-map {
    min-width: 0;
}

.contact-map-inner {
    min-width: 0;
}

.contact-map-desktop {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 320px;
    overflow: hidden;
    border-radius: 24px;
}

    .contact-map-desktop iframe {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 320px;
        border: 0;
    }

.contact-map-mobile {
    display: none;
}

@media (max-width: 767px) {
    .contact-map-desktop {
        display: none;
    }

    .contact-map-mobile {
        display: flex;
        align-items: center;
        gap: 14px;
        width: 100%;
        min-height: 76px;
        padding: 16px 18px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: white;
        color: var(--purple-dark);
        box-shadow: 0 10px 30px rgba(48,40,58,.07);
    }

    .contact-map-mobile-icon {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--lavender);
        font-size: 21px;
    }

    .contact-map-mobile span:nth-child(2) {
        display: flex;
        flex-direction: column;
        min-width: 0;
        flex: 1;
    }

    .contact-map-mobile strong {
        font-size: 14px;
        line-height: 1.3;
    }

    .contact-map-mobile small {
        margin-top: 3px;
        color: var(--muted);
        font-size: 12px;
        line-height: 1.4;
    }

    .contact-map-mobile-arrow {
        flex: 0 0 auto;
        font-size: 21px;
    }
}

/* =========================================================
           CONTACT
        ========================================================= */

.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.contact-heading h2 {
    margin-bottom: 20px;
    font-size: clamp(38px, 5vw, 56px);
}

.contact-heading p {
    color: var(--muted);
}

.contact-items {
    margin-top: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 0;
    border-bottom: 1px solid var(--border);
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--lavender);
    color: var(--purple);
}

.contact-item strong {
    display: block;
    color: var(--purple-dark);
    font-size: 13px;
}

.contact-item span,
.contact-item a {
    color: var(--muted);
    font-size: 14px;
}

.contact-map {
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    background: linear-gradient( 135deg, #e9e3eb, #f3efe9 );
    text-align: center;
}

.contact-map-inner {
    max-width: 300px;
}
.contact-map-inner1 {
    width: 100%;
}

.contact-map h3 {
    margin-bottom: 10px;
    font-size: 28px;
}

.contact-map p {
    color: var(--muted);
}


/* =========================================================
           FOOTER
        ========================================================= */

footer {
    padding: 65px 0 25px;
    background: var(--purple-dark);
    color: rgba(255,255,255,.62);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 45px;
}

.footer-logo {
    margin-bottom: 15px;
    color: white;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
}

footer h3 {
    margin-bottom: 15px;
    color: white;
    font-size: 20px;
}

footer p {
    margin-bottom: 7px;
    font-size: 13px;
}

footer a:hover {
    color: white;
}

.copyright {
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    font-size: 15px;
}


/* =========================================================
           FLOATING BUTTONS
        ========================================================= */

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.float-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--purple);
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}


/* =========================================================
           BACK TOP
        ========================================================= */

.back-top {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 1500;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: white;
    color: var(--purple-dark);
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}

    .back-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


/* =========================================================
           MOBILE
        ========================================================= */

@media(max-width: 900px) {

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-slide-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 90px;
        padding-bottom: 110px;
    }

    .hero {
        min-height: 900px;
    }

    .hero-slider {
        height: 900px;
    }

    .hero-visual {
        height: 350px;
    }

    .hero-image-main {
        inset: 0 20px 0 40px;
    }

    .hero-image-card {
        bottom: 10px;
    }

    .intro-grid,
    .about-grid,
    .appointment-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-card:nth-child(3) {
        border-left: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
           TELEFON
        ========================================================= */

@media(max-width: 600px) {

    section {
        padding: 80px 0;
    }

    .navbar {
        height: 72px;
    }

    .logo-main {
        font-size: 23px;
    }

    .logo-sub {
        font-size: 8px;
    }

    .mobile-menu {
        padding-top: 85px;
    }

    .mobile-menu-list a {
        font-size: 24px;
    }

    .hero,
    .hero-slider {
        min-height: 850px;
        height: 850px;
    }

    .hero-slide-inner {
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .hero-copy h1 {
        font-size: clamp(40px, 11vw, 55px);
    }

    .hero-copy p {
        font-size: 15px;
    }

    .hero-visual {
        height: 310px;
    }

    .hero-image-card {
        width: 155px;
        padding: 16px;
    }

        .hero-image-card strong {
            font-size: 21px;
        }

    .hero-controls {
        bottom: 20px;
    }

    .hero-progress {
        width: 75px;
    }

    .intro-grid {
        gap: 25px;
    }

    .about-visual {
        padding-right: 20px;
    }

    .about-image img {
        height: 430px;
    }

    .about-tag {
        right: -2px;
        bottom: 20px;
    }

    .service-item {
        grid-template-columns: 45px 1fr 45px;
        gap: 10px;
        padding: 23px 0;
    }

        .service-item:hover {
            padding-left: 10px;
            padding-right: 10px;
        }

        .service-item h3 {
            font-size: 23px;
        }

        .service-item p {
            font-size: 13px;
        }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card,
    .process-card:nth-child(3) {
        min-height: auto;
        padding: 25px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(73,59,85,.15);
    }

        .process-card:last-child {
            border-bottom: 0;
        }

    .review-card {
        min-height: 380px;
        padding: 35px 25px;
    }

    .review-text {
        font-size: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .appointment-form {
        padding: 27px 20px;
    }

    .contact-map {
        min-height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .floating-actions {
        right: 12px;
        bottom: 12px;
    }

    .back-top {
        left: 12px;
        bottom: 12px;
    }
}


/* =========================================================
           MOTION ACCESSIBILITY
        ========================================================= */

@media(prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}


/* =========================================================
           PREMIUM HERO FADE + SWIPE OVERRIDE
           Mevcut tasarım korunur; yalnızca hero geçişi iyileştirilir.
        ========================================================= */
.hero-slider {
    touch-action: pan-y;
    cursor: grab;
}

    .hero-slider.is-dragging {
        cursor: grabbing;
    }

.hero-track {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    transform: none !important;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.018);
    transition: opacity 1s cubic-bezier(.22,1,.36,1), transform 1.4s cubic-bezier(.16,1,.3,1), visibility 0s linear 1s;
}

    .hero-slide.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: scale(1);
        z-index: 2;
        transition: opacity 1s cubic-bezier(.22,1,.36,1), transform 6.5s cubic-bezier(.16,1,.3,1), visibility 0s linear 0s;
    }

    .hero-slide .hero-copy {
        opacity: 0;
        transform: translate3d(0, 28px, 0);
        transition: opacity .75s ease .18s, transform .9s cubic-bezier(.16,1,.3,1) .18s;
    }

    .hero-slide.active .hero-copy {
        opacity: 1;
        transform: translate3d(0,0,0);
    }

    .hero-slide .hero-visual {
        opacity: 0;
        transform: translate3d(24px, 18px, 0) scale(.985);
        transition: opacity .85s ease .12s, transform 1.05s cubic-bezier(.16,1,.3,1) .12s;
    }

    .hero-slide.active .hero-visual {
        opacity: 1;
        transform: translate3d(0,0,0) scale(1);
    }

    .hero-slide .hero-image-main img {
        transition: transform 7s cubic-bezier(.16,1,.3,1);
    }

    .hero-slide.active .hero-image-main img {
        transform: scale(1.015);
    }

@media (max-width: 800px) {
    .hero-slide .hero-copy {
        transform: translate3d(0,20px,0);
    }

    .hero-slide .hero-visual {
        transform: translate3d(0,18px,0) scale(.985);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide .hero-copy,
    .hero-slide .hero-visual,
    .hero-slide .hero-image-main img {
        transition: none !important;
    }
}



/* =========================================================
           PREMIUM TERAPİ YAKLAŞIMI
        ========================================================= */

.therapy-approach {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, #ffffff 0%, #faf8fb 55%, #f1edf3 100% );
}

    .therapy-approach::before {
        content: "";
        position: absolute;
        width: 480px;
        height: 480px;
        top: -280px;
        right: -120px;
        border-radius: 50%;
        background: rgba(73,59,85,.055);
        pointer-events: none;
    }

    .therapy-approach::after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        bottom: -180px;
        left: -100px;
        border-radius: 50%;
        background: rgba(221,213,229,.35);
        pointer-events: none;
    }

    .therapy-approach .container {
        position: relative;
        z-index: 2;
    }


/* ÜST ALAN */

.therapy-top {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 80px;
    align-items: stretch;
    margin-bottom: 65px;
}

.therapy-label {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    padding: 10px 0 28px;
    color: var(--purple);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(73,59,85,.13);
}

    .therapy-label::after {
        content: "01";
        color: rgba(73,59,85,.12);
        font-family: "Playfair Display", Georgia, serif;
        font-size: clamp(90px, 10vw, 150px);
        font-weight: 400;
        line-height: .8;
        letter-spacing: -.06em;
    }

    .therapy-label::before {
        content: "Her hikâye, kendi ritminde anlaşılmayı hak eder.";
        position: absolute;
        left: 0;
        bottom: 76px;
        color: var(--muted);
        font-family: "Playfair Display", Georgia, serif;
        font-size: 22px;
        font-weight: 400;
        line-height: 1.35;
        letter-spacing: -.01em;
        text-transform: none;
    }

.therapy-line {
    width: 34px;
    height: 1px;
    background: var(--purple);
}


/* BAŞLIK */

.therapy-heading {
    max-width: 800px;
}

.therapy-small-title {
    margin-bottom: 18px;
    color: #a098a5;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
}

.therapy-heading h2 {
    max-width: 760px;
    margin-bottom: 25px;
    color: var(--purple-dark);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(40px, 5.3vw, 67px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.therapy-heading p {
    max-width: 690px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}


/* KARTLAR */

.therapy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(73,59,85,.13);
    border-bottom: 1px solid rgba(73,59,85,.13);
}

.therapy-card {
    position: relative;
    min-height: 300px;
    padding: 38px 35px 35px;
    border-right: 1px solid rgba(73,59,85,.13);
    transition: background .35s ease, transform .35s ease, box-shadow .35s ease;
}

    .therapy-card:last-child {
        border-right: 0;
    }

    .therapy-card:hover {
        background: rgba(255,255,255,.72);
        transform: translateY(-5px);
    }


/* ORTA KART */

.therapy-card-featured {
    background: rgba(221,213,229,.35);
}

    .therapy-card-featured:hover {
        background: rgba(221,213,229,.55);
    }


/* NUMARA */

.therapy-number {
    position: absolute;
    top: 28px;
    right: 30px;
    color: rgba(73,59,85,.25);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 15px;
}


/* İKON */

.therapy-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 42px;
    border: 1px solid rgba(73,59,85,.16);
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    color: var(--purple);
    font-size: 21px;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.therapy-card:hover .therapy-icon {
    background: var(--purple);
    color: white;
    transform: rotate(8deg);
}


/* KART BAŞLIĞI */

.therapy-card h3 {
    margin-bottom: 12px;
    color: var(--purple-dark);
    font-size: 27px;
    line-height: 1.2;
}

.therapy-card p {
    max-width: 330px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}


/* ALT SATIR */

.therapy-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    color: #928b94;
    font-size: 15px;
}

    .therapy-bottom a {
        display: inline-flex;
        align-items: center;
        gap: 13px;
        color: var(--purple);
        font-size: 15px;
        font-weight: 700;
        transition: gap .25s ease;
    }

        .therapy-bottom a:hover {
            gap: 18px;
        }

    .therapy-bottom strong {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(73,59,85,.18);
        border-radius: 50%;
        font-size: 14px;
    }


/* =========================================================
           TABLET
        ========================================================= */

@media(max-width: 900px) {

    .therapy-label {
        min-height: auto;
        padding-bottom: 18px;
        gap: 18px;
    }

        .therapy-label::after {
            font-size: 80px;
        }

        .therapy-label::before {
            position: static;
            margin-top: 4px;
            font-size: 19px;
        }

    .therapy-top {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }

    .therapy-label {
        padding-top: 0;
    }

    .therapy-heading h2 {
        max-width: 650px;
    }

    .therapy-cards {
        grid-template-columns: 1fr;
    }

    .therapy-card {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(73,59,85,.13);
    }

        .therapy-card:last-child {
            border-bottom: 0;
        }
}


/* =========================================================
           TELEFON
        ========================================================= */

@media(max-width: 600px) {

    .therapy-approach {
        padding: 75px 0;
    }

    .therapy-top {
        gap: 20px;
        margin-bottom: 38px;
    }

    .therapy-heading h2 {
        font-size: clamp(38px, 11vw, 52px);
    }

    .therapy-heading p {
        font-size: 15px;
    }

    .therapy-card {
        padding: 30px 25px;
    }

    .therapy-icon {
        margin-bottom: 32px;
    }

    .therapy-card h3 {
        font-size: 24px;
    }

    .therapy-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
}

.phone-icon {
    font-size: 20px;
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

    .footer-bottom > span {
        display: flex;
        align-items: center;
    }

    .footer-bottom a {
        display: flex;
        align-items: center;
        white-space: nowrap;
    }
.edit-text {
    font-family: 'DINPro-CondensedRegular', sans-serif;
    letter-spacing: 1px;
}

#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #123f4c;
    color: #fff;
    padding: 15px;
    font-family: Arial, sans-serif;
    display: none;
    z-index: 9999;
    border-top: 2px solid #c69a58;
    padding-bottom: 5px;
    padding-top: 5px;
    font-size:13px !important;
}

    #cookieBanner button {
        margin-left: 10px;
        padding: 8px 14px;
        border: none;
        cursor: pointer;
        min-height:20px !important;
    }

.accept {
    background: #3c3044;
    color: #fff;
}

.reject {
    background: #c69a58;
    color: #fff;
}

.bilgi {
    color: #c69a58
}
.guvenlik{

    width:70px;
    margin-top:10%
}


.guvenlik2 {
    width: 70px;
    margin-top: 5%
}

.linkcan {
    color: #054479
}

@media(max-width:991px){
    .guvenlik {
        width: 70px;
        margin-top: 0
    }
    .guvenlik2 {
        width: 70px;
        margin-top: 0
    }

}
.arama-baslik {
    font-weight: bold !important;
    font-size: 21px !important;
    color: #c69a58 !important;
    text-align: center !important;
    margin-bottom:3%
}

.arama-color{
    background: #123f4c !important;
    min-height:30px !important;
    margin-bottom:4% !important
}
    .arama-color p {
        color: #fff !important;
        font-weight: bold !important;
        text-align: center;
        font-size: 20px !important;
        border-top: 1px solid #fff;
    }

.active {
    border-bottom: 1px solid #c69a58
}

/* Masaüstünde ikon gizli */
.collapse-icon {
    display: none;
}

.collapse-content {
    display: block;
}

.collapse-title {
    position: relative;
}

/* 991px altında collapse */
@media (max-width: 991px) {

    .collapse-title {
        border-radius: 5px;
        cursor: pointer;
        position: relative;
        padding-right: 30px;
        background: #123f4c;
        color: #fff;
        padding: 2%;
    }

    /* İkon sadece 991px altında görünür */
    .collapse-icon {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        line-height: 1;
        transition: transform .3s ease;
        margin-right: 4%;
    }

    .collapse-content {
        display: none;
        margin-top: 10px;
    }

    .acdnmenu.open .collapse-content {
        display: block;
    }

    .acdnmenu.open .collapse-icon {
        transform: translateY(-50%) rotate(45deg);
    }
}


.grc-ic-content ul {
    padding-left: 3%;
}

@media (max-width: 991px) {
    .grc-ic-content ul {
        padding-left: 4%;
    }
}


/* =========================================
   MAKALE GRUPLARI
========================================= */

/* Masaüstünde açık */
.makale-alt-gruplari #MakaleMenusu {
    display: block;
}

.makale-collapse-title {
    position: relative;
}

    /* Masaüstünde + gizli */
    .makale-collapse-title .collapse-icon {
        display: none;
    }


/* =========================================
   991PX ALTI
========================================= */

@media (max-width: 991px) {

    .makale-alt-gruplari {
        padding: 30px 0;
    }

    .makale-collapse-title {
        border-radius: 5px;
        cursor: pointer;
        position: relative;
        padding: 2%;
        padding-right: 50px;
        background: #123f4c;
        color: #fff;
        margin-bottom: 0;
    }

        /* + ikonu */
        .makale-collapse-title .collapse-icon {
            display: block;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            line-height: 1;
            margin-right: 4%;
            transition: transform .3s ease;
        }

    /* Mobilde menü kapalı */
    .makale-alt-gruplari #MakaleMenusu {
        display: none;
        margin-top: 10px;
    }

    /* Açıldığında */
    .makale-alt-gruplari.open #MakaleMenusu {
        display: block;
    }

    /* + -> x */
    .makale-alt-gruplari.open .collapse-icon {
        transform: translateY(-50%) rotate(45deg);
    }
}