/* Components Combined CSS - Body-inline stillerden taşındı (CLS düzeltmesi) */

/* ===== hakkimda-styles ===== */
.main-container-full {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 auto !important;
}

.main-content-full .widget,
.main-content-full-width .widget,
.main-container-full .widget,
.full-width-widget-area .widget {
    width: auto !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.main-content-full .widget .widget-content,
.main-content-full-width .widget .widget-content,
.main-container-full .widget .widget-content,
.full-width-widget-area .widget .widget-content {
    margin: 0 auto !important;
    width: auto !important;
    max-width: 1200px !important;
    box-sizing: border-box !important;
}

.main-content-full .container,
.main-content-full-width .container,
.main-container-full .container,
.full-width-widget-area .container {
    max-width: 1200px !important;
    width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

.about-hero-section {
    background: #4f45e4;
    padding: 4rem 0;
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
}

.about-hero-section .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero-section .page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    position: relative !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.hero-buttons .btn-light {
    background-color: #fff;
    color: #4f46e5;
}

.hero-buttons .btn-light:hover {
    background-color: #f9fafb;
}

.hero-buttons .btn::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.2), transparent) !important;
    transition: left 0.5s ease !important;
}

.hero-buttons .btn:hover::before {
    left: 100% !important;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3) !important;
    background: linear-gradient(135deg, #f0f0ff 0%, #d4d4ff 100%) !important;
}

.hero-buttons .btn-light:focus,
.hero-buttons .btn-light:active,
.hero-buttons .btn-light:visited,
.hero-buttons .btn-light.active {
    background-color: #fff !important;
    color: #4f46e5 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    border-color: #fff;
    outline: 2px solid transparent;
}

.hero-buttons .btn-primary {
    background-color: #ffffff;
    color: #4f46e5;
    border-color: #ffffff;
}

.hero-buttons .btn-primary:hover,
.hero-buttons .btn-primary:focus,
.hero-buttons .btn-primary:active,
.hero-buttons .btn-primary:visited {
    background-color: #f0f0f0;
    color: #4f46e5;
    border-color: #f0f0f0;
    outline: 2px solid transparent;
    box-shadow: none;
}

.about-profile-section {
    margin-bottom: 0;
}

.profile-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.profile-image {
    flex: 0 0 33.333333%;
}

.profile-image img {
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.profile-text {
    flex: 0 0 66.666667%;
}

.profile-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.profile-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.profile-description p {
    margin-bottom: 1rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    background-color: #eef2ff;
    color: #4f46e5;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.about-timeline-section {
    margin-bottom: 4rem;
}

.about-timeline-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #e5e7eb;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #4f46e5;
    border: 3px solid #a5b4fc;
}

.timeline-content {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.timeline-header h4 {
    font-weight: 700;
    font-size: 16px;
    color: #1f2937;
}

.timeline-date {
    background-color: #eef2ff;
    color: #4f46e5;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}

.timeline-institution {
    color: #4b5563;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: #6b7280;
}

.about-approach-section {
    margin-bottom: 4rem;
    background-color: #f9fafb;
    padding: 3rem 0;
}

.about-approach-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.approach-card {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.approach-card-indigo { border-top: 4px solid #6366f1; }
.approach-card-purple { border-top: 4px solid #8b5cf6; }
.approach-card-blue { border-top: 4px solid #3b82f6; }
.approach-card-green { border-top: 4px solid #10b981; }

.approach-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.approach-card-indigo .approach-icon { color: #6366f1; }
.approach-card-purple .approach-icon { color: #8b5cf6; }
.approach-card-blue .approach-icon { color: #3b82f6; }
.approach-card-green .approach-icon { color: #10b981; }

.approach-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.approach-content p {
    color: #6b7280;
}

.why-choose-me {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.why-choose-me h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #4f46e5;
}

.benefits-list li p {
    margin: 0;
    color: #4b5563;
}

.about-certifications-section {
    margin-bottom: 4rem;
}

.about-certifications-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.certification-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.certification-card {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #4f46e5;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.certification-icon {
    font-size: 2rem;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.certification-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.certification-date {
    font-size: 0.875rem;
    color: #4f46e5;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.certification-description {
    color: #6b7280;
    margin: 0;
}

.about-personal-note-section {
    margin-bottom: 4rem;
    background-color: #f9fafb;
    padding: 3rem 0;
}

.personal-note-content {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
}

.personal-note-icon {
    flex-shrink: 0;
    font-size: 3rem;
    color: #4f46e5;
    margin-right: 1.5rem;
    opacity: 0.5;
}

.personal-note-text blockquote {
    font-size: 16px;
    color: #4b5563;
    font-style: italic;
    margin: 0 0 1rem 0;
    padding: 0;
    border: none;
}

.personal-note-signature {
    text-align: right;
    font-weight: 600;
    color: #1f2937;
}

.about-appointment-section {
    margin-bottom: 0;
    background: #4f45e4;
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}

.about-appointment-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-appointment-section p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.appointment-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 16px;
}

.about-appointment-section .btn:hover,
.about-appointment-section .btn:focus,
.about-appointment-section .btn:active,
.about-appointment-section .btn:visited {
    background-color: #ffffff;
    color: #4f45e4;
    border-color: #ffffff;
    outline: 2px solid transparent;
    box-shadow: none;
}

.about-appointment-section .btn-primary {
    background-color: #ffffff;
    color: #4f45e4;
    border-color: #ffffff;
}

.appointment-buttons .btn-primary {
    background-color: #ffffff;
    color: #4f45e4;
    border-color: #ffffff;
}

.about-appointment-section .appointment-buttons .btn,
.about-appointment-section .appointment-buttons .btn.btn-primary,
.about-appointment-section .appointment-buttons .btn.btn-primary:visited,
.about-appointment-section .appointment-buttons .btn.btn-lg {
    border-radius: 0.5rem !important;
    font-weight: 700 !important;
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%) !important;
    color: #4f45e4 !important;
    border: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.about-appointment-section .appointment-buttons .btn::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.2), transparent) !important;
    transition: left 0.5s ease !important;
}

.about-appointment-section .appointment-buttons .btn:hover::before {
    left: 100% !important;
}

.about-appointment-section .appointment-buttons .btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3) !important;
    background: linear-gradient(135deg, #f0f0ff 0%, #d4d4ff 100%) !important;
}

.about-appointment-section .btn-primary:hover,
.about-appointment-section .btn-primary:focus,
.about-appointment-section .btn-primary:active,
.about-appointment-section .btn-primary:visited {
    background-color: #f0f0f0;
    color: #4f45e4;
    border-color: #f0f0f0;
    outline: 2px solid transparent;
    box-shadow: none;
}

@media (max-width: 768px) {
    .profile-content {
        flex-direction: column;
    }

    .profile-image, .profile-text {
        flex: 0 0 100%;
    }

    .hero-buttons, .appointment-buttons {
        flex-direction: column;
    }

    .personal-note-content {
        flex-direction: column;
        text-align: center;
    }

    .personal-note-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .personal-note-signature {
        text-align: center;
    }
}

/* ===== psikolog-about-custom ===== */
.psikolog-about-section {
    padding: 4rem 0;
    background-color: white;
}

.psikolog-about-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.psikolog-about-image {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 400px;
}

.psikolog-rounded-image {
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

.psikolog-about-content {
    width: 100%;
}

.psikolog-section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.psikolog-text {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.psikolog-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.psikolog-credential {
    display: flex;
    align-items: center;
}

.psikolog-credential-icon {
    padding: 0.5rem;
    border-radius: 9999px;
    margin-right: 0.75rem;
}

.psikolog-icon-indigo {
    background-color: #eef2ff;
    color: #4f46e5;
}

.psikolog-icon-purple {
    background-color: #f5f3ff;
    color: #7c3aed;
}

.psikolog-icon-blue {
    background-color: #e0f2fe;
    color: #075985;
}

.psikolog-icon-green {
    background-color: #ecfdf5;
    color: #10b981;
}

.psikolog-credential-text {
    color: #374151;
}

.psikolog-button {
    background-color: #4f46e5;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.psikolog-button i {
    margin-right: 0;
}

.psikolog-button:hover {
    background-color: #4338ca;
}

@media (min-width: 768px) {
    .psikolog-about-flex {
        flex-direction: row;
        align-items: flex-start;
    }

    .psikolog-about-image {
        width: 50%;
        margin-bottom: 0;
        padding-right: 3rem;
    }

    .psikolog-about-content {
        width: 50%;
    }
}

/* ===== psikolog-services ===== */
.psikolog-services-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.psikolog-services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.psikolog-services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.psikolog-service-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.psikolog-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.psikolog-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.psikolog-service-icon i {
    font-size: 1.25rem;
}

.psikolog-icon-red {
    background-color: #fee2e2;
    color: #dc2626;
}

.psikolog-icon-orange {
    background-color: #fff7ed;
    color: #ea580c;
}

.psikolog-service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.psikolog-service-text {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.psikolog-service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    text-decoration: none;
}

.psikolog-service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.psikolog-service-link:hover i {
    transform: translateX(3px);
}

.psikolog-section-subtitle {
    color: #4b5563;
    max-width: 36rem;
    margin: 0 auto;
}

.psikolog-link-indigo { color: #4f46e5; }
.psikolog-link-purple { color: #7c3aed; }
.psikolog-link-blue { color: #075985; }
.psikolog-link-green { color: #047857; }
.psikolog-link-red { color: #b91c1c; }
.psikolog-link-orange { color: #c2410c; }
.psikolog-link-teal { color: #0f766e; }
.psikolog-link-pink { color: #be185d; }
.psikolog-link-yellow { color: #a16207; }

@media (min-width: 768px) {
    .psikolog-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .psikolog-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== psikolog-faq ===== */
.psikolog-faq-section {
    padding: 4rem 0;
    background-color: white;
}

.psikolog-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.psikolog-faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.psikolog-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.psikolog-faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background-color: #f9fafb;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.psikolog-faq-question:hover {
    background-color: #f3f4f6;
}

.psikolog-faq-question span {
    font-weight: 500;
    color: #1f2937;
}

.psikolog-faq-question i {
    color: #4f46e5;
    transition: transform 0.3s ease;
}

.psikolog-faq-question.active i {
    transform: rotate(180deg);
}

.psikolog-faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: white;
}

.psikolog-faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.psikolog-faq-answer p {
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

.psikolog-faq-more {
    text-align: center;
    margin-top: 3rem;
}

.psikolog-faq-more .psikolog-button,
.psikolog-blog-more .psikolog-button {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #fff;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3), 0 4px 6px -2px rgba(79, 70, 229, 0.15);
    font-size: 1rem;
}

.psikolog-faq-more .psikolog-button i,
.psikolog-blog-more .psikolog-button i {
    margin-right: 0.5rem;
}

.psikolog-faq-more .psikolog-button:hover,
.psikolog-blog-more .psikolog-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.3), 0 10px 10px -5px rgba(79, 70, 229, 0.15);
}

/* ===== psikolog-blog ===== */
.psikolog-blog-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.psikolog-blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.psikolog-blog-slider {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0.5rem;
    margin: 0 -0.5rem;
}

.psikolog-blog-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    margin-bottom: 1rem;
}

.psikolog-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.psikolog-blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.psikolog-blog-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.psikolog-blog-card:hover .psikolog-blog-thumbnail {
    transform: scale(1.05);
}

.psikolog-blog-content {
    padding: 1.5rem;
}

.psikolog-blog-category {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.psikolog-category-indigo { color: #4f46e5; }
.psikolog-category-purple { color: #7c3aed; }
.psikolog-category-blue { color: #075985; }
.psikolog-category-green { color: #10b981; }
.psikolog-category-red { color: #dc2626; }

.psikolog-blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.5rem 0 0.75rem 0;
}

.psikolog-blog-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.psikolog-blog-title a:hover {
    color: #4f46e5;
}

.psikolog-blog-excerpt {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.psikolog-blog-link {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: #4f46e5;
    text-decoration: none;
}

.psikolog-blog-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.psikolog-blog-link:hover i {
    transform: translateX(3px);
}

.psikolog-blog-more {
    text-align: center;
    margin-top: 3rem;
}

/* .psikolog-blog-more .psikolog-button — yukaridaki faq-more ile birlestirildi */

.psikolog-blog-container {
    position: relative;
    padding: 0;
}

.psikolog-blog-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.psikolog-blog-nav:hover {
    background-color: #4f46e5;
    color: white;
}

.psikolog-blog-prev { left: 0; }
.psikolog-blog-next { right: 0; }

@media (min-width: 768px) {
    .psikolog-blog-slider {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .psikolog-blog-card {
        width: 100%;
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .psikolog-blog-slider {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 1.5rem;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .psikolog-blog-nav {
        display: flex;
    }

    .psikolog-blog-slider::-webkit-scrollbar {
        display: none;
    }

    .psikolog-blog-card {
        width: calc(33.333% - 1rem);
        min-width: calc(33.333% - 1rem);
        max-width: calc(33.333% - 1rem);
        flex: 0 0 calc(33.333% - 1rem);
    }

    .psikolog-blog-container {
        padding: 0 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* ===== psikolog-appointment ===== */
.psikolog-appointment-section {
    padding: 6rem 0;
    background-color: #4f46e5;
    color: white;
    position: relative;
    overflow: hidden;
}

.psikolog-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
    position: relative;
    z-index: 1;
}

.psikolog-appointment-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.5px;
}

.psikolog-title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.psikolog-title-decoration span {
    height: 1px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.3);
}

.psikolog-title-decoration i {
    font-size: 1.25rem;
    margin: 0 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.psikolog-appointment-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.psikolog-appointment-cards-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .psikolog-appointment-cards-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 2.5rem;
    }

    .psikolog-hours-card {
        flex: 0 0 30%;
        max-width: 300px;
    }

    .psikolog-contact-card {
        flex: 1;
    }
}

.psikolog-appointment-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.psikolog-appointment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.psikolog-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    position: relative;
}

.psikolog-card-icon::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.psikolog-card-icon i {
    font-size: 1.75rem;
    color: white;
}

.psikolog-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.psikolog-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.psikolog-hours-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.psikolog-hours-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.psikolog-day-badge {
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.psikolog-day-badge.closed {
    background-color: rgba(239, 68, 68, 0.4);
    color: white;
}

.psikolog-hours-details {
    flex: 1;
}

.psikolog-day-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: white;
}

.psikolog-time {
    display: block;
    color: #ffffff;
    font-size: 0.875rem;
}

.psikolog-time.closed {
    color: white;
    font-weight: 500;
}

.psikolog-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.psikolog-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

@media (min-width: 768px) {
    .psikolog-contact-info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .psikolog-contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (min-width: 992px) {
    .psikolog-contact-info {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }

    .psikolog-contact-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .psikolog-contact-item {
        flex: 1;
        width: 100%;
    }
}

.psikolog-contact-item {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0.5rem;
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.psikolog-contact-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.psikolog-contact-icon {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.psikolog-contact-icon i,
.psikolog-contact-icon svg {
    color: #fff;
    fill: #fff;
    font-size: 1rem;
}
.psikolog-contact-icon svg[fill="currentColor"] {
    fill: #fff;
}

.psikolog-contact-details {
    flex: 1;
}

.psikolog-contact-title {
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: white;
    font-size: 0.875rem;
}

.psikolog-contact-text {
    color: #ffffff;
    margin: 0;
    font-size: 0.875rem;
    word-break: break-word;
}

.psikolog-appointment-cta-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.psikolog-cta-text {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    display: inline-block;
}

.psikolog-appointment-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .psikolog-appointment-cta {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

/* CTA buton tanimlari theme-combined.css'te — buradan silindi */

@media (max-width: 768px) {
    .psikolog-appointment-section {
        padding: 5rem 0 4rem;
    }

    .psikolog-appointment-title {
        font-size: 2rem;
    }

    .psikolog-appointment-card {
        padding: 1.5rem;
    }

    .psikolog-card-icon {
        width: 60px;
        height: 60px;
    }

    .psikolog-card-icon::after {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .psikolog-section-subtitle {
        font-size: 0.75rem;
    }

    .psikolog-appointment-title {
        font-size: 1.75rem;
    }

    .psikolog-appointment-text {
        font-size: 1rem;
    }

    .psikolog-cta-button {
        width: 100%;
    }
}

/* ===== psikolog-contact ===== */
.psikolog-contact-section {
    padding: 4rem 0;
    background-color: var(--contact-bg-color, #374151);
    color: white;
}

.psikolog-contact-row {
    display: flex;
    flex-direction: column;
}

.psikolog-contact-left,
.psikolog-contact-right {
    width: 100%;
    background-color: transparent;
}

.psikolog-contact-left {
    margin-bottom: 3rem;
}

.psikolog-contact-section .psikolog-contact-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.psikolog-info-section {
    margin-bottom: 2rem;
    display: block;
    width: 100%;
}

.psikolog-info-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.psikolog-address-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    display: block;
}

.psikolog-address-link:hover {
    color: #4f46e5;
}

.psikolog-info-content {
    display: flex;
    flex-direction: column;
}

.psikolog-address-name {
    color: #6366f1;
    font-weight: 500;
}

.psikolog-address-line {
    color: #e5e7eb;
}

.psikolog-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.psikolog-info-icon {
    background-color: #4f46e5;
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.psikolog-info-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.psikolog-info-link:hover {
    color: #a5b4fc;
}

.psikolog-social-icons {
    display: flex;
    gap: 1rem;
}

.psikolog-social-icon {
    background-color: #4f46e5;
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.psikolog-instagram:hover { background-color: #c13584; }
.psikolog-twitter:hover { background-color: #1da1f2; }
.psikolog-linkedin:hover { background-color: #0077b5; }
.psikolog-youtube:hover { background-color: #ff0000; }

.psikolog-contact-form-container {
    background-color: transparent;
    padding: 2rem;
}

.psikolog-contact-form {
    display: grid;
    gap: 1rem;
}

.psikolog-form-group {
    display: flex;
    flex-direction: column;
}

.psikolog-form-label {
    margin-bottom: 0.5rem;
    color: white;
}

.psikolog-form-input,
.psikolog-form-select,
.psikolog-form-textarea {
    padding: 0.75rem;
    background-color: #4b5563;
    border: none;
    border-radius: 0.5rem;
    color: white !important;
    width: 100%;
    -webkit-text-fill-color: white !important;
}

.psikolog-form-input::placeholder,
.psikolog-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.psikolog-form-input:focus,
.psikolog-form-select:focus,
.psikolog-form-textarea:focus {
    outline: 2px solid transparent;
    border-color: #a5b4fc;
    box-shadow: 0 0 0 2px rgba(165, 180, 252, 0.3);
}

.psikolog-form-button {
    background-color: #4f46e5;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
    width: 100%;
}

.psikolog-form-button:hover {
    background-color: #4338ca;
}

.no-border {
    border: none !important;
}

.psikolog-form-response {
    margin: 1rem 0;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.form-sending { color: #6b7280; margin: 0; }
.form-success { color: #10b981; margin: 0; }
.form-error { color: #ef4444; margin: 0; }

@media (min-width: 768px) {
    .psikolog-contact-flex {
        flex-direction: row;
        gap: 2rem;
    }

    .psikolog-contact-section .psikolog-contact-info,
    .psikolog-contact-form-container {
        flex: 1;
    }

    .psikolog-contact-section .psikolog-contact-info {
        margin-bottom: 0;
        padding-right: 2rem;
    }

    .psikolog-contact-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .psikolog-contact-left,
    .psikolog-contact-right {
        width: 48%;
    }

    .psikolog-contact-left {
        margin-bottom: 0;
    }
}

/* ===== psikolog-emergency ===== */
.psikolog-emergency-section {
    padding: 4rem 0;
    background-color: var(--emergency-bg-color, #dc2626);
    color: white;
}

.psikolog-emergency-header {
    text-align: center;
    margin-bottom: 3rem;
}

.psikolog-emergency-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.psikolog-emergency-subtitle {
    max-width: 36rem;
    margin: 0 auto;
    color: #ffffff;
}

.psikolog-emergency-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.psikolog-emergency-card {
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}

.psikolog-emergency-icon {
    background-color: white;
    color: #dc2626;
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.psikolog-emergency-icon svg {
    stroke: #dc2626;
    fill: none;
    width: 28px;
    height: 28px;
}
.psikolog-emergency-icon svg[fill="currentColor"] {
    fill: #dc2626;
    stroke: none;
}

.psikolog-emergency-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.psikolog-emergency-card-text {
    margin-bottom: 1rem;
    color: #ffffff;
}

.psikolog-emergency-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: block;
}

.psikolog-emergency-tips {
    max-width: 48rem;
    margin: 3rem auto 0 auto;
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.psikolog-tips-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.psikolog-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.psikolog-tips-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.psikolog-tips-item:last-child {
    margin-bottom: 0;
}

.psikolog-tips-icon {
    background-color: white;
    color: #dc2626;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.psikolog-tips-icon svg {
    width: 12px;
    height: 12px;
    fill: #dc2626;
}

@media (min-width: 768px) {
    .psikolog-emergency-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
