/* =============================================================================
   ACCORDION
============================================================================= */
/* --- ACCORDION STYLES --- */
.accordion-section {
    padding: 80px 0;
    background: #f7f7f7;
    overflow: hidden;
}

.accordion-wrapper {
    margin: 0 auto;
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .04);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    background: transparent;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    color: var(--accent);
}

.accordion-header.active {
    color: var(--accent);
}

.accordion-header svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    transition: transform 0.4s ease;
}

.accordion-header.active svg {
    transform: rotate(-180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-inner {
    padding: 0 30px 24px 30px;
}

.accordion-inner .section-text {
    margin-bottom: 1rem;
    max-width: none;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type {
    border-radius: var(--border-radius);
}

@media(max-width:992px){
    .accordion-header{
        font-size: 16px;
        padding: 24px 10px;
    }
    .soru{
        max-width: 300px;
    }
}
/* --- END ACCORDION STYLES --- */
/* =============================================================================
   DİGİTAL
============================================================================= */
.content-inner {
    background: #f7f7f7;
}

.twentytwenty-box {
    position: relative;
    width: 100%;
    margin: auto;
}

.twentytwenty-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    user-select: none;
    cursor: pointer;
    border-radius: var(--border-radius);
}

.twentytwenty-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* The "Before" image container that gets resized */
.twentytwenty-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    /* Initial split */
    height: 100%;
    overflow: hidden;
    z-index: 2;
    border-right: 3px solid #fff;
}

.twentytwenty-before-wrapper img {
    width: 600px;
    /* Must match the container width to prevent scaling */
    max-width: none;
}

/* The Draggable Handle */
.twentytwenty-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    margin-top: -20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    opacity: 0;
    pointer-events: none
}

.twentytwenty-handle::before,
.twentytwenty-handle::after {
    content: '';
    width: 0;
    height: 0;
    border: 6px solid transparent;
}

.twentytwenty-handle::before {
    border-right-color: #333;
    margin-right: 2px;
}

.twentytwenty-handle::after {
    border-left-color: #333;
    margin-left: 2px;
}

/* The SVG Arrow Positioning */
.direction-arrow {
    position: absolute;
    right: -14px;
    top: 70%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.testimonial-section .subscribe-btn {
    background: var(--accent);
    color: var(--white);
}

@media (max-width: 991px) {
    .direction-arrow {
        display: none;
    }
}

.three-photo-upload-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.single-photo-box {
    position: relative;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 15px 5px;
    text-align: center;
    cursor: pointer;
    background-color: #f9fafb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 130px;
}
.single-photo-box:hover {
    border-color: #9ca3af;
    background-color: #f3f4f6;
}
.single-photo-box .file-input-single {
    display: none;
}
.single-photo-box .preview-img {
    max-width: 100%;
    max-height: 150px;
    display: none;
    border-radius: 20px;
    object-fit: cover;
}
.single-photo-box .default-icon {
    max-width: 100px;
    margin-bottom: 8px;
    opacity: 0.8;
    border-radius:20px;
}
.single-photo-box .upload-text {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.3;
}
.single-photo-box .upload-title {
    display: block;
    font-weight: bold;
    color: #374151;
    margin-bottom: 3px;
}
.single-photo-box .delete-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    font-weight: bold;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 10;
    padding: 0;
    line-height: 1;
}
.single-photo-box .delete-btn:hover {
    background-color: #dc2626;
}
@media (max-width: 768px) {
    .three-photo-upload-grid {
        grid-template-columns: 1fr;
    }
}


/* =============================================================================
   DR DANISMA
============================================================================= */
.dr-danisma a {
    text-decoration: none !important;
    color: var(--accent);
}

.dr-danisma a:hover {
    color: var(--accent);
}


.dr-danisma textarea#mesaj {
    background: rgba(255, 255, 255, 0.3);
}

.dr-danisma .p-5.bgmiz {
    padding: 45px;
    border-radius: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.dr-danisma input.form-control.form-control-lg {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(200, 200, 200, 0.5);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    color: #333;
    max-width: 100%;
}

.dr-danisma p.small.text-muted {
    font-size: 14px;
}

.dr-danisma .ai-side-card {
    margin-top: 20px;
}

.dr-danisma .ai-side-card {
    background: var(--accent);
    /* cevap-kart ile aynı */
    padding: 35px 25px;
    border-radius: 30px;
}

.dr-danisma .side-toggle-btn {
    background: #ffffff;
    color: var(--accent);
    padding: 12px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
}

.dr-danisma .side-toggle-btn:hover {
    background: #f1f5f9;
}

.dr-danisma .cevap-kart {
    background: var(--accent);
    padding: 40px 30px;
    border-radius: 30px;
    position: relative;
}

.dr-danisma .doktor-foto {
    width: 110px;
    height: 110px;
    object-fit: cover;
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid #fff;
}

.dr-danisma .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff80;
}

.dr-danisma .carousel-indicators .active {
    background: #ffffff;
}

.dr-danisma .form-control,
textarea {
    border-radius: 12px;
}

@media(max-width:991px) {
    .dr-danisma .doktor-foto {
        position: relative;
        top: 0;
        transform: none;
        margin-bottom: 20px;
    }
}


/* SADECE CEVAP KARTI İÇİN */
.dr-danisma .cevap-kart .carousel-indicators {
    position: relative;
    margin-top: 20px;
}

.dr-danisma .cevap-kart .carousel-indicators [data-bs-target] {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
    border: none !important;
    opacity: 1 !important;
    margin: 0 4px !important;
}

.dr-danisma .cevap-kart .carousel-indicators .active {
    background-color: #ffffff !important;
    transform: scale(1.2);
}


.dr-danisma .soru-metin {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Kaç satır */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6;
    min-height: 4.8em;
    /* 3 satır sabit yükseklik */
}

.dr-danisma h3.fw-bold.mb-4.text-uppercase {
    color: var(--accent);
}

.dr-danisma .form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.dr-danisma a.text-primary.fw-semibold {
    color: var(--accent) !important;
}

@media (max-width: 768px) {

    /* Sağ kart tam genişlik ve daha kompakt */
    .dr-danisma .cevap-kart {
        padding: 30px 20px;
        border-radius: 20px;
    }

    /* Foto normal akışa alınır */
    .dr-danisma .doktor-foto {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: -60px auto 15px auto;
        display: block;
    }

    /* Carousel metin daha rahat */
    .dr-danisma .cevap-kart .carousel-item p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Buton tam genişlik */
    .dr-danisma .cevap-kart .btn {
        width: 100%;
    }

    /* Nokta indicator ortalı ve düzgün */
    .dr-danisma .cevap-kart .carousel-indicators {
        justify-content: center;
        margin-top: 15px;
    }

    /* Genel satır boşluğu azalt */
    .dr-danisma .row.g-5 {
        --bs-gutter-y: 2rem;
    }

}


.dr-danisma .chat-wrapper-custom {
    height: 650px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .9);
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
    overflow: hidden;
}

.dr-danisma .chat-header-custom {
    padding: 16px 20px;
    font-weight: 600;
    background: var(--accent);
    color: #fff;
}

.dr-danisma .chat-body-custom {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fb;
}

.dr-danisma .chat-footer-custom {
    padding: 14px;
    border-top: 1px solid #eee;
}

.dr-danisma .chat-footer-custom input {
    border-radius: 999px 0 0 999px;
}

.dr-danisma .chat-footer-custom button {
    border-radius: 0 999px 999px 0;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0 22px;
}

.dr-danisma .ai-toggle-box {
    background: #ffffff;
    padding: 12px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
    text-align: center;
}

.dr-danisma .ai-toggle-box:hover {
    background: #f1f5f9;
}


/* Mesaj satırı */
.dr-danisma .msg {
    display: flex;
    margin-bottom: 14px;
}

.dr-danisma .msg.user {
    justify-content: flex-end;
}

.dr-danisma .msg.ai {
    justify-content: flex-start;
}

/* Baloncuk */
.dr-danisma .bubble {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14.5px;
    line-height: 1.55;
    word-break: break-word;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

/* Kullanıcı mesajı (SAĞ) */
.dr-danisma .msg.user .bubble {
    background: var(--accent);
    color: #fff;
    border-bottom-right-radius: 6px;
}

/* AI mesajı (SOL) */
.dr-danisma .msg.ai .bubble {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #111;
    border-bottom-left-radius: 6px;
}


.dr-danisma .chat-footer-custom .input-group {
    display: flex;
}

.dr-danisma .chat-footer-custom input {
    flex: 1;
    border-radius: 999px 0 0 999px;
    border: 1px solid #ddd;
    padding-left: 18px;
}

.dr-danisma .chat-footer-custom button {
    border-radius: 0 999px 999px 0;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0 22px;
}

.dr-danisma .chat-body-custom::-webkit-scrollbar {
    width: 8px;
}

.dr-danisma .chat-body-custom::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dr-danisma .chat-body-custom::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.dr-danisma .chat-body-custom::-webkit-scrollbar-thumb:hover {
    background: #4a6577;
}


.dr-danisma .chat-footer-custom input {
    box-shadow: none;
    transition: .3s;
}

.dr-danisma .chat-footer-custom input:focus {
    box-shadow: 0 0 0 4px rgb(0 0 0 / 1%), 0 12px 30px rgba(91, 122, 143, 0.35);
    border: 1px solid var(--accent);
}

/* =============================================================================
   HAKKIMIZDA 
============================================================================= */
/* --- General Section Styling --- */
.clinic-approach-section {
    background-color: #f7f7f7;
    padding: 80px 0;
    overflow: hidden;
}

/* --- Text Content Styling --- */


.approach-description {
    color: #7a7a7a;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 95%;
}

/* --- Values Card (Misyon & Vizyon) --- */
.values-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.value-item:not(:last-child) {
    margin-bottom: 10px;
}

.value-icon {
    color: #1a2b5a;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 45px;
    height: auto;
}

.value-title {
    color: #1a2b5a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-text {
    color: #7a7a7a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Image Grid Styling --- */
.images-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.primary-image {
    width: 80%;
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.secondary-image {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 45%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 120px; /* Creates the pill/oval shape */
    border: 10px solid #f2f3f5; /* Matches section background to look like a cutout */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .images-container {
        margin-top: 4rem;
        justify-content: center;
    }
    .primary-image {
        width: 90%;
    }
    .secondary-image {
        width: 50%;
        left: 5%;
        bottom: -30px;
    }
    .values-card {
        padding: 1.5rem;
    }
}
.clinic-approach-section .section-text{
    margin-bottom:0;
}
.clinic-approach-section .section-text.ust{
    margin-bottom:30px;
}
.clinic-approach-section .section-title span{
    margin-top:0;
}
.value-icon .bi::before{
    font-size:32px;
}


/* =============================================================================
   İLETİŞİM 
============================================================================= */
.contact-hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, var(--accent), #2f67bb);
    position: relative;
    overflow: hidden;
}

.contact-hero:before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    right: -150px;
    top: -150px;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-mini-title {
    color: #fff;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 700;
}

.contact-hero h1 {
    color: #fff;
    font-size: 72px;
    line-height: 1;
    margin: 25px 0;
    font-weight: 800;
}

.contact-hero h1 span {
    display: block;
    color: rgba(255, 255, 255, .75);
}

.contact-hero p {
    color: rgba(255, 255, 255, .85);
    max-width: 650px;
    font-size: 18px;
}

.contact-info-section {
    padding: 80px 0 30px;
    background: #f7f9fc;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-info-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
}

.contact-info-card:hover {
    transform: translateY(-10px);
}

.contact-info-card .icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: #eef4ff;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
}

.contact-info-card h3 {
    margin-bottom: 15px;
}

.contact-form-section {
    padding: 80px 0;
    background: #f7f9fc;
}

.contact-form-box,
.contact-side-box {
    background: #fff;
    border-radius: 35px;
    padding: 50px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
}

.form-mini-title {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-form-box h2 {
    margin: 15px 0 35px;
    font-size:36px;
    font-weight: 700;
    color: var(--text-black);
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    border: none;
    background: #f5f7fb;
    border-radius: 20px;
    padding: 18px 22px;
    outline: none;
}

.contact-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    height:45px;
}

.contact-side-box h3 {
    margin-bottom: 36px;
    font-weight: 700;
    color: var(--text-black);
}

.contact-side-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-side-box li {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.whatsapp-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    text-decoration: none;
    background: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    height:45px;
}

.contact-map-section iframe {
    width: 100%;
    height: 600px;
    border: none;
}

@media(max-width:991px) {

    .contact-hero {
        padding: 130px 0 80px;
    }

    .contact-hero h1 {
        font-size: 48px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-box,
    .contact-side-box {
        padding: 30px;
    }

    .contact-form-box h2 {
        font-size: 30px;
    }

    .contact-map-section iframe {
        height: 400px;
    }

}

/* =============================================================================
   RANDEVU 
============================================================================= */
.randevu .back-btn {
    border: none;
    background: #eef5f8;
    color: var(--accent);
    height: 45px;
    padding: 0 20px;
    border-radius: 25px;
    font-weight: 600;
}


.appointment-page,
.appointment-form-page {
    background: #f5f7fb;
    min-height: 100vh;
}

.randevu .appointment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.randevu .appointment-header h2 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    color: var(--accent);
}

.randevu .date-header-nav,
.randevu .section-nav {
    display: flex;
    gap: 10px;
}

.randevu .date-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    background: #fff;
    border-radius: 32px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.randevu .date-slider {
    flex: 1;
    display: flex;
    gap: 15px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.randevu .date-card {
    min-width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #7171710a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
    flex-shrink: 0;
}

.randevu .date-card.active {
    background: var(--accent);
    color: #fff;
}

.randevu .date-card span {
    font-size: 12px;
    font-weight: 700;
}

.randevu .date-card strong {
    font-size: 42px;
    line-height: 1;
}

.randevu .date-card small {
    font-size: 15px;
}

.randevu .date-nav {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    transition: .3s;
}

.randevu .date-nav:hover,
.randevu .time-nav:hover {
    transform: translateY(-4px);
}

.randevu .time-section {
    background: #fff;
    border-radius: 32px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.randevu .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.randevu .section-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #4d5a73;
    text-transform: uppercase;
}

.randevu .time-nav {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    transition: .3s;
}

.randevu .time-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.randevu .time-grid::-webkit-scrollbar {
    display: none;
}

.randevu .time-btn {
    flex: 0 0 auto;
    width: 120px;
    height: 45px;
    border-radius: 20px;
    border: 1px solid #e8edf5;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.randevu .time-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.randevu .time-btn.disabled {
    opacity: .4;
    pointer-events: none;
}

.randevu .appointment-summary {
    display: none;

    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);

    width: 700px;
    max-width: calc(100% - 30px);

    z-index: 99999;

    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 30px;
    padding: 25px;

    align-items: center;
    gap: 20px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.randevu .appointment-summary.show {
    display: flex;
    animation: fadeUp .4s ease;
}

.randevu .summary-date {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f5f7fb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.randevu .summary-date strong {
    font-size: 28px;
    color: var(--accent);
}

.randevu .summary-info {
    flex: 1;
}

.randevu .summary-info h4 {
    font-size: 20px;
    margin: 5px 0;
}

.randevu .summary-info p {
    margin: 0;
    color: #6c7890;
}

.randevu .btn-next {
    width: 65px;
    height: 65px;
    border: none;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 22px;
}

.randevu .appointment-form-card,
.randevu .appointment-detail-card {
    background: #fff;
    border-radius: 35px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .08);
}

.randevu .form-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: #f5f7fb;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: var(--accent);
}

.randevu .form-group {
    margin-bottom: 20px;
}

.randevu .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.randevu .form-control {
    height: 60px;
    border-radius: 20px;
    border: 1px solid #dde5f2;
}

.randevu .appointment-create-btn {
    width: 100%;
    height: 64px;
    border: none;
    border-radius: 25px;
    background: var(--accent);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media(max-width:991px) {

    .randevu .appointment-summary {
        flex-direction: column;
        text-align: center;
    }

}

@media(max-width:768px) {

    .randevu .appointment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .randevu .appointment-summary {
        left: 15px;
        right: 15px;
        bottom: 15px;
        width: auto;
        max-width: none;
        transform: none;
    }

}

.randevu .appointment-alert {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 18px;
    margin-bottom: 20px;

    background: #fff8e8;
    border: 1px solid #ffe3a3;
    border-radius: 18px;
}

.randevu .alert-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #ffb800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.randevu .alert-content strong {
    display: block;
    margin-bottom: 6px;
    color: #8a5b00;
    font-size: 15px;
}

.randevu .alert-content p {
    margin: 0;
    line-height: 1.6;
    font-size: 13px;
    color: #6f6f6f;
}

.randevu .doctor-card {
    text-align: center;
    margin-bottom: 30px;
}

.randevu .doctor-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #eef5f8;
    margin-bottom: 15px;
}

.randevu .doctor-info h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.randevu .doctor-info span {
    color: #7a8798;
    font-size: 14px;
}

.randevu .detail-box {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 18px;
    border-radius: 18px;
    background: #f8fafc;
    margin-bottom: 15px;
}

.randevu .detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.randevu  textarea.form-control {
    height: 140px;
    padding-top: 15px;
    resize: none;
}
/* =============================================================================
   DIGITAL FORM 
============================================================================= */
/* --- FORM STYLES --- */
.digital .form-section {
    padding: 80px 0;
    background: #f7f7f7;
    overflow: hidden;
}

.digital .form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .04);
}

.digital .custom-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Form Controls */
.digital .form-control {
    width: 100%;
    padding: 18px 24px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 16px;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-family: inherit;
}

.digital .form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.03);
    /* Soft glow using neutral black for safety */
}

.digital .form-control::placeholder {
    color: #9ca3af;
}

.digital textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Grid Setup */
.digital .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* File Upload */
.digital .file-input {
    display: none;
}

.digital .upload-area {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.digital .upload-area:hover {
    border-color: var(--accent);
    background: #f4f4f5;
}

.digital .preview-container {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.digital .placeholder-icon {
    width: 32px;
    height: 32px;
    color: #9ca3af;
}

.digital .preview-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.digital .upload-text-area {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.digital .upload-title {
    font-weight: 700;
    color: var(--text-color);
    font-size: 16px;
}

.digital .upload-desc {
    font-size: 14px;
    color: #6b7280;
}

/* Checkbox */
.digital .custom-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.digital .custom-checkbox-wrapper input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.digital .custom-checkmark {
    width: 24px;
    height: 24px;
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.digital .custom-checkmark svg {
    width: 16px;
    height: 16px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.digital .custom-checkbox-wrapper input:checked~.custom-checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.digital .custom-checkbox-wrapper input:checked~.custom-checkmark svg {
    opacity: 1;
    transform: scale(1);
}

.digital .checkbox-label {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Footer & Submit */
.digital .form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
}

.digital .captcha-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 12px 16px;
    border-radius: 12px;
    min-width: 260px;
}

.digital .captcha-box .custom-checkmark {
    border-radius: 4px;
    width: 22px;
    height: 22px;
}

.digital .submit-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0 34px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: inherit;
    height: 45px;
}

.digital .submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* --- END FORM STYLES --- */
@media(max-width:992px) {
    .digital .form-wrapper {
        padding: 30px 20px;
    }

    .digital .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .digital .form-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .digital .submit-btn {
        justify-content: center;
    }
}


/* =============================================================================
   HİZMETLER 
============================================================================= */
.hizmetler .services-grid {
    grid-template-columns: repeat(3, 1fr);
}

.hizmetler .service-icon img {
    width: 70%;
    filter: brightness(0) saturate(100%) invert(42%) sepia(91%) saturate(1254%) hue-rotate(166deg) brightness(89%) contrast(95%);
}

.hizmetler .service-card:hover .service-icon img {
    filter: brightness(0) invert(1);
}

.hizmetler .service-number {
    font-size: 40px;
}

.hizmetler .service-content h3 {
    font-size: 24px;
}

.hizmetler .services-section {
    position: relative;
    padding: 80px 0;
    background: #f7f9fc;
    overflow: hidden;
}

/* TABS */

.hizmetler .services-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hizmetler .tab-btn {
    background: #fff;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 16px 32px;
    border-radius: 22px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .45s ease;
    box-shadow: 0 4px 15px rgba(16, 24, 40, .03);
}

.hizmetler .tab-btn:hover {
    background: var(--accent)1f;
    border: 2px solid var(--accent)1f;
    transform: translateY(-3px);
}

.hizmetler .tab-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(34, 81, 149, .18);
}

@media(max-width:992px) {
    .hizmetler .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .hizmetler .service-content h3{
        font-size:18px;
    }
    .hizmetler .service-number{
        font-size:30px;
    }
}
.service-card .icon, .service-card .icon img{
    width:50px;
    z-index:1;
}
.service-card:hover .icon img {
    filter: brightness(0) invert(1);
}
/* =============================================================================
   HİZMET DETAY 
============================================================================= */
.ecosystem-images.hizmet-detay {
    padding-left: 0;
    padding-bottom: 0;
}

.hizmet-detay .main-image {
    max-width: 90%;
}

.hizmet-detay .section-title,
.hizmet-detay .section-text {
    max-width: 100%;
}

.hizmet-detay .section-title {
    font-size: 27px;
}

.hizmet-detay .services-top {
    align-items: center;
    margin-bottom: 22px;
}
@media(max-width:992px){
    .hizmet-detay .services-top{
        align-items:start;
    }
    .services-top{
        gap:0;
    }
}

/* =============================================================================
   DIGITAL 
============================================================================= */
.digital .side-img {
    height: 210px;
    border-radius: 20px;
    background: white;
}

.digital .section-head .-row {
    max-width: 600px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.content-inner.digital {
    background: #f7f7f7;
}
.section-head.digital{
    padding:80px 0;
}
@media(max-width:992px){
    .-row.digital{
        flex-direction:column;
        gap: 20px !important;
    }
    .section-head.digital{
        padding-top:0;
    }
    .digital .side-img{
        height:auto;
        width:100%;
    }
}

/* =============================================================================
   GALLERY 
============================================================================= */
.gallery-section .gallery-item img {
    transition: transform 0.3s ease;
    width: 100%;
}

.gallery-section .gallery-item img:hover {
    transform: scale(1.03);
    cursor: pointer;
}

/* =============================================================================
   SOZLESME 
============================================================================= */
.sozlesme h2 {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 22px;
    max-width: 100%;
}

.sozlesme h2 span {
    display: block;
    font-size: 18px;
    color: var(--accent);
}

.sozlesme p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-black);
    margin-bottom: 30px;
    max-width: 100%;
}