/* ============================================
   HEADER SECTION - Modern tasarım
============================================ */
.header-wrap {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    .header-wrap .header-bottom {
        padding: 15px 0;
    }

        .header-wrap .header-bottom .header-bottom-right {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

            .header-wrap .header-bottom .header-bottom-right .searchbtn {
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: transparent;
                border: none;
                margin: 0 15px;
                cursor: pointer;
                transition: all 0.3s ease;
            }

                .header-wrap .header-bottom .header-bottom-right .searchbtn i {
                    font-size: 20px;
                    color: #000;
                    transition: all 0.3s ease;
                }

                .header-wrap .header-bottom .header-bottom-right .searchbtn:hover i {
                    color: #A47355;
                }

        

              

.main-menu-wrap #menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .main-menu-wrap #menu ul li {
        margin: 0;
        padding: 0;
    }

        .main-menu-wrap #menu ul li a {
            display: block;
            padding: 15px 20px;
            color: #000;
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: 'Rubik', sans-serif;
        }

         
            .main-menu-wrap #menu ul li a.active {
                color: #4a0de0!important;
            }

            .main-menu-wrap #menu ul li a:hover{
                color:#cc2379!important;
            }
            .mobile-menu-cta {
                display: none;
            }

@media (max-width: 1199px) {
    .mobile-menu-cta {
        display: block;
        margin-top: 20px;
    }

        .mobile-menu-cta .mobile-cta-btn {
            display: inline-block;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 500;
            border-radius: 5px;
            background: #A47355;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .mobile-menu-cta .mobile-cta-btn:hover {
                background: #8B614A;
            }

    .main-menu-wrap {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        padding: 60px 20px 30px;
        overflow-y: auto;
        transition: all 0.4s ease;
        z-index: 999;
    }

        .main-menu-wrap.open {
            left: 0;
        }

        .main-menu-wrap #menu ul {
            flex-direction: column;
            align-items: flex-start;
        }

            .main-menu-wrap #menu ul li {
                width: 100%;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }

                .main-menu-wrap #menu ul li:last-child {
                    border-bottom: none;
                }

                .main-menu-wrap #menu ul li a {
                    padding: 12px 0;
                }

    .mobile-menu {
        display: block;
    }

        .mobile-menu a {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #4A00E0;
            border-radius: 50%;
            color: #fff;
            font-size: 20px;
        }

    .menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
    }

        .menu-close a {
            font-size: 24px;
            color: #000;
        }
}

/* ============================================
   SERVICE CARDS SECTION - Modern yuvarlak tasarım
============================================ */
.service-wrap .row {
    display: flex;
    justify-content: center;
    gap: 15px;
    overflow: visible;
}

    .service-wrap .row > div {
        flex: 1;
        min-width: 0;
        overflow: visible;
    }

.service-card.style1 {
    text-align: center;
    border-radius: 50%;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 50px 15px 20px 15px;
    position: relative;
    overflow: visible;
}

    .service-card.style1 .service-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 70px;
        background: white;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 10;
        border-color:#4a0de0!important
    }

        .service-card.style1 .service-icon i {
            margin: 0;
            line-height: 1;
            font-size: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }

    .service-card.style1 .service-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .service-card.style1 p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    /* Sağ üstteki daireyi kaldır */
    .service-card.style1:before {
        display: none;
    }

/* Service Cards Responsive */

/* Large (1200px+): 5 kart yan yana (default) */

/* Medium (992px-1199px): 3-2 düzeni */
@media (max-width: 1199px) and (min-width: 992px) {
    .service-wrap .row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

        .service-wrap .row > div:nth-child(1),
        .service-wrap .row > div:nth-child(2),
        .service-wrap .row > div:nth-child(3) {
            flex: 0 0 calc(33.333% - 15px);
            margin-bottom: 30px;
        }

        .service-wrap .row > div:nth-child(4),
        .service-wrap .row > div:nth-child(5) {
            flex: 0 0 280px;
            margin-bottom: 20px;
        }
}

/* Small (768px-991px): 2-2-1 düzeni */
@media (max-width: 991px) and (min-width: 768px) {
    .service-wrap .row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

        .service-wrap .row > div:nth-child(1),
        .service-wrap .row > div:nth-child(2),
        .service-wrap .row > div:nth-child(3),
        .service-wrap .row > div:nth-child(4) {
            flex: 0 0 calc(50% - 10px);
            margin-bottom: 20px;
        }

        .service-wrap .row > div:nth-child(5) {
            flex: 0 0 auto;
            margin-bottom: 20px;
        }
}

/* XS (767px-): 1'er kart alt alta */
@media (max-width: 767px) {
    .service-wrap .row {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }

        .service-wrap .row > div {
            flex: none;
            width: 100%;
            margin-bottom: 30px;
        }

    .service-card.style1 {
        width: 280px;
        height: 280px;
    }
}

/* ============================================
   PROCESS SECTION - Kahverengi tema
============================================ */
.process-wrap.bg-f.process-bg-1.style1 .process-item span {
    /* Normal: Daire kahverengi, sayı beyaz */
    background-color: #FFE5F2;
    color: #E62889;
 /*   border: 2px solid #a47355;*/
}

.process-wrap.bg-f.process-bg-1.style1 .process-item p {
    color: #FFFFFF!important;
}

.process-wrap.bg-f.process-bg-1.style1 .process-item h4 a {
    /* Normal: Başlık kahverengi */
    color: #FFB3DA;
}

.process-wrap.bg-f.process-bg-1.style1 .process-item:hover span {
    /* Hover: Daire beyaz, sayı siyah */
    background-color: #cc2379;
    color: #ffffff;
    border: 2px solid #cc2379;
}

.process-wrap.bg-f.process-bg-1.style1 .process-item:hover h4 a {
    /* Hover: Başlık beyaz */
    color: #cc2379;
}

/* ============================================
   TEAM SECTION - Responsive ayarlar
============================================ */
@media (max-width: 768px) {
    .swiper-slide .member-card {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ============================================
   FAQ SECTION - Sade, çizgili accordion
============================================ */
.faq-wrap .custom-faq-accordion .accordion-item {
    background: transparent;
    border: none;
    border-top: 1px solid #4a0de0;
    border-bottom: 1px solid #4a0de0;
    margin-bottom: 0;
}

.faq-wrap .custom-faq-accordion .accordion-button {
    background: transparent;
    color: #23272e;
    font-weight: 500;
    box-shadow: none;
    border: none;
    padding: 1.1rem 1.25rem;
    font-size: 1.08rem;
    line-height: 1.4;
    white-space: normal;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .faq-wrap .custom-faq-accordion .accordion-button:not(.collapsed) {
        color: #cc2379;
    }

    .faq-wrap .custom-faq-accordion .accordion-button::after {
        content: '+';
        font-size: 1.5rem;
        color: #000;
        background: none;
        transform: none;
        transition: transform 0.2s;
    }

    .faq-wrap .custom-faq-accordion .accordion-button:not(.collapsed)::after {
        content: '-';
        font-size: 1.5rem;
        color: #b48a78;
        background: none;
        transform: none;
        transition: transform 0.2s;
    }

.faq-wrap .custom-faq-accordion .accordion-body {
    background: transparent;
    color: #526077;
    padding: 0 1.25rem 1.25rem 1.25rem;
    border: none;
}

.faq-wrap .faq-shape-1,
.faq-wrap .faq-shape-2 {
    width: 120px;
}

@media (max-width: 991px) {
    .faq-wrap .faq-shape-1,
    .faq-wrap .faq-shape-2 {
        width: 90px;
    }
}

/* Küçük başlık fontu ve spacing */
.faq-wrap .content-title span {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: #b48a78;
    margin-bottom: 12px;
    font-family: 'Libre Baskerville', serif;
}

.faq-wrap .content-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.faq-wrap .content-title p {
    color: #6c757d;
    max-width: 700px;
    margin: 2rem auto 0 auto;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* SSS iki sütun simetrik ve tek satır */
.faq-split-row {
    display: flex;
    justify-content: center;
    gap: 48px;
}

@media (max-width: 991px) {
    .faq-split-row {
        flex-direction: column;
        gap: 0;
    }
}

.faq-split-col {
    flex: 1 1 0;
    min-width: 0;
}

/* FAQ mobil responsive - çok kompakt */
/* FAQ Tablet responsive */
@media (max-width: 991px) and (min-width: 577px) {
    .faq-wrap.bg-albastor.ptb-100 .content-title.style1.mb-20 h2 {
        font-size: 1.875rem;
    }

    .faq-wrap.bg-albastor.ptb-100 .content-title.style1.mb-20 p {
        font-size: 0.875rem;
    }

    .faq-wrap .custom-faq-accordion .accordion-button {
        font-size: 0.9rem;
    }

    .faq-wrap .custom-faq-accordion .accordion-body {
        font-size: 0.8rem;
    }
}

/* FAQ Mobil responsive */
@media (max-width: 576px) {
    .faq-wrap.bg-albastor.ptb-100 .content-title.style1.mb-20 h2 {
        font-size: 1.4rem;
    }

    .faq-wrap.bg-albastor.ptb-100 .content-title.style1.mb-20 p {
        font-size: 0.75rem;
    }

    .faq-wrap .custom-faq-accordion .accordion-button {
        font-size: 0.7rem;
    }

    .faq-wrap .custom-faq-accordion .accordion-body {
        font-size: 0.65rem;
    }
}

/* ============================================
   SESSION SECTION - İçerik spacing ayarları
============================================ */
.session-content .content-title span {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    color: #b48a78;
    margin-bottom: 18px;
}

.session-content .content-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.session-content p {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 1.15rem;
    color: #444;
}

    .session-content p:last-of-type {
        margin-bottom: 32px;
    }

.session-content .btn {
    margin-top: 10px;
}

@media (max-width: 991px) {
    .session-content .content-title h2 {
        font-size: 2.1rem;
        margin-bottom: 24px;
    }

    .session-content .content-title span {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .session-content p {
        font-size: 1rem;
        margin-bottom: 14px;
    }
}

/* ============================================
   FOOTER SECTION - İletişim ve stil ayarları
============================================ */
.contact-info-item a {
    font-size: 14px;
}

/* ============================================
   BACKGROUND IMAGES & UTILITIES
============================================ */
.service-wrap .section-title.style1.text-center {
    margin-bottom: 80px;
}

.hero-img-one.bg-f.hero-bg-1 {
    background-image: url('../img/indexherosmall.png');
    background-size: cover;
    background-position: center;
}

.hero-img-two.bg-f.hero-bg-2 {
    background-image: url('../img/indexherobig.png');
    background-size: cover;
    background-position: center;
}

.about-img-one.bg-f.about-bg-1 {
    background-image: url('../img/about/about2.jpg');
    background-size: cover;
    background-position: center;
}

.about-img-two.bg-f.about-bg-2 {
    background-image: url('../img/about/about1.jpg');
    background-size: cover;
    background-position: center;
}

.team-wrap .team-view-all-container {
    text-align: right;
    margin-top: 30px;
}

.team-view-all {
    font-size: 14px;
    color: #4a0de0!important;
    text-decoration: none;
    font-weight: 500;
}

    .team-view-all:hover{
        color:#cc2379!important;
    }

    .testimonial-name {
        font-weight: bold;
    }

.footer-wrap.style1.bg-f.footer-bg-1 {
    background-image: url('../img/footer/help3.jpg?v=1.1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* X (Twitter) SVG ikonu */
.flaticon-twitter:before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 0.85em;
    background-image: url("data:image/svg+xml,%3Csvg width='1200' height='1227' viewBox='0 0 1200 1227' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z' fill='currentColor'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* ============================================
   TEAM MEMBER CARDS - Detaylı kart tasarımı
============================================ */
.team-wrap .member-card {
    padding: 0;
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1.5px solid #ddd;
}

    .team-wrap .member-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }

.team-wrap .member-img {
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
}

    .team-wrap .member-img img {
        width: 100%;
        height: 340px;
        object-fit: cover;
        border-radius: 0;
    }

.team-wrap .member-info {
    padding: 18px 15px 22px 15px;
    background: #fff;
    text-align: center;
    position: relative;
}

    .team-wrap .member-info h5 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .team-wrap .member-info p {
        font-size: 11px;
        margin: 0;
        color: #666;
        line-height: 1.3;
    }

        .team-wrap .member-info p:before {
            content: '';
            display: block;
            width: 30px;
            height: 1px;
            background: #b48a78;
            margin: 8px auto 8px auto;
        }

.member-actions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.member-card:hover .member-actions {
    opacity: 1;
    visibility: visible;
}

.member-btn {
    padding: 6px 8px;
    border-radius: 5px;
    font-size: 11px;
    font-family: "Libre Baskerville", serif;
    font-weight: 500;
    line-height: 1.3;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid;
    text-align: center;
    width: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    white-space: nowrap;
    opacity: 0.8;
    transform: translateY(20px);
    letter-spacing: 0.2px;
}

.member-card:hover .member-btn:nth-child(1) {
    transform: translateY(0);
    transition-delay: 0.1s;
}

.member-card:hover .member-btn:nth-child(2) {
    transform: translateY(0);
    transition-delay: 0.2s;
}

.member-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.member-btn-profile {
    background: rgba(255,255,255,0.9);
    color: #333;
    border-color: rgba(255,255,255,0.9);
}

    .member-btn-profile:hover {
        background: #fff;
        color: #333;
        transform: translateY(-2px);
    }

.member-btn-appointment {
    background: #a47355;
    color: #fff;
    border-color: #a47355;
}

    .member-btn-appointment:hover {
        background: #444;
        border-color: #444;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(68, 68, 68, 0.4);
    }

    .member-btn-appointment:active {
        background: #a47355;
        border-color: #a47355;
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(164, 115, 85, 0.4);
    }

@media (max-width: 768px) {
    .member-btn {
        padding: 4px 6px;
        font-size: 9px;
        width: 70px;
        line-height: 1.2;
        letter-spacing: 0.1px;
    }

    .member-actions {
        gap: 8px;
    }
}

/* ============================================
   NAVBAR RESPONSIVE - Clean Version (No !important)
============================================ */

/* 1200px+ : Normal Desktop Menu */
@media (min-width: 1200px) {
    .mobile-menu.d-xl-none {
        display: none;
    }

    .main-menu-wrap {
        display: block;
    }

    .header-bottom-right .btn.style1 {
        display: inline-block;
    }

    .main-menu-wrap #menu ul li.mobile-menu-cta {
        display: none;
    }
}

/* 1200px altı : Hamburger + Mobile CTA (Header CTA gizli) */
@media (max-width: 1199px) {
    .mobile-menu.d-xl-none {
        display: block;
    }

    .main-menu-wrap {
        display: none;
    }

        .main-menu-wrap.open {
            display: block;
        }

    .header-bottom-right .btn.style1 {
        display: none !important;
    }

    .main-menu-wrap #menu ul li.mobile-menu-cta {
        display: block;
        margin-top: 20px;
        padding-top: 20px;
    }

        .main-menu-wrap #menu ul li.mobile-menu-cta .mobile-cta-btn {
            background-color: #a47355;
            color: #fff;
            padding: 14px 36px;
            border-radius: 5px;
            border: 1px solid rgba(0,0,0,0);
            text-decoration: none;
            display: block;
            text-align: center;
            font-weight: 500;
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: .4s;
        }

            .main-menu-wrap #menu ul li.mobile-menu-cta .mobile-cta-btn:hover {
                background-color: #444;
                color: #fff;
                text-decoration: none;
            }

            .main-menu-wrap #menu ul li.mobile-menu-cta .mobile-cta-btn:active {
                background-color: #6c757d;
                color: #fff;
                transform: translateY(1px);
                transition: .1s;
            }
}

/* ============================================
   FAQ SECTION - Responsive font size optimizations
============================================ */

/* 1200px ve üzeri için FAQ başlığını küçült (40px yerine 30px) */
@media (min-width: 1200px) {
    .faq-wrap.bg-albastor.ptb-100 .content-title.style1.mb-20 h2 {
        font-size: 1.875rem; /* 30px - diğer breakpointlerle aynı */
    }
}

/* 992px-1199px arası için de aynı güzel görünümü sağla */
@media (max-width: 1199px) and (min-width: 992px) {
    .faq-wrap.bg-albastor.ptb-100 .content-title.style1.mb-20 h2 {
        font-size: 1.875rem; /* 30px - 991px ile aynı */
    }

    .faq-wrap.bg-albastor.ptb-100 .content-title.style1.mb-20 p {
        font-size: 0.875rem; /* 14px */
    }

    .faq-wrap .custom-faq-accordion .accordion-button {
        font-size: 0.9rem; /* 14.4px */
    }

    .faq-wrap .custom-faq-accordion .accordion-body {
        font-size: 0.8rem; /* 12.8px */
    }
}

/* 991px ve altı için (önceki kural) */
@media (max-width: 991px) and (min-width: 577px) {
    .faq-wrap.bg-albastor.ptb-100 .content-title.style1.mb-20 h2 {
        font-size: 1.875rem; /* 30px - responsive.css ile aynı */
    }

    .faq-wrap.bg-albastor.ptb-100 .content-title.style1.mb-20 p {
        font-size: 0.875rem; /* 14px */
    }

    /* FAQ sorularını ve cevaplarını da uygun şekilde küçült */
    .faq-wrap .custom-faq-accordion .accordion-button {
        font-size: 0.9rem; /* 14.4px */
    }

    .faq-wrap .custom-faq-accordion .accordion-body {
        font-size: 0.8rem; /* 12.8px */
    }
}

/* Session content styling */
.session-content .content-title span {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: #b48a78;
    margin-bottom: 12px;
    font-family: 'Libre Baskerville', serif;
}

/* Session image styling */
.session-img img {
    border-radius: 40px;
    transition: all 0.3s ease;
}

/* 
    OPTIMIZATION NOTE: The background images used in this file are quite large and are slowing down the page load time.
    It is highly recommended to compress the following images to improve performance:
    - help2.jpg
    - indexherobig.png
    - indexherosmall.png
*/
