/* ==========================================================================
   Psikolog Aynur Çoban - CSS Stilleri
   Sakin ve profesyonel psikoloji teması
   ========================================================================== */

/* CSS Custom Properties (Renk Paleti - React Versiyonu) */
:root {
    --primary-color: #0d9488;          /* Teal-600 */
    --secondary-color: #2dd4bf;        /* Teal-400 */
    --accent-color: #0f766e;           /* Teal-700 */
    --gradient-start: #134e4a;         /* Teal-900 */
    --gradient-end: #1e3a8a;           /* Blue-900 */
    --background-color: #FFFFFF;       /* Saf Beyaz */
    --neutral-light: #f0fdfa;          /* Teal-50 */
    --text-primary: #0f172a;           /* Slate-900 */
    --text-secondary: #475569;         /* Slate-600 */
    --text-light: rgba(255, 255, 255, 0.8);
    
    --font-heading: 'Inter', 'Poppins', sans-serif;
    --font-body: 'Inter', 'Lato', sans-serif;
    
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Genel Stil Ayarları */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background-color);
    overflow-x: hidden;
}

/* Scroll Davranışı */
html {
    scroll-behavior: smooth;
}

/* Bootstrap Özelleştirmeleri */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 1rem 2rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover, .btn-primary:focus {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 1rem 2rem;
    transition: var(--transition);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.3);
}

/* Tipografi */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Navbar Stilleri */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    font-weight: 700;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-primary) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    background-color: var(--neutral-light);
    color: var(--primary-color) !important;
}

/* Carousel/Slider Stilleri */
.slider-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
}

.carousel-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(92, 133, 166, 0.8), rgba(121, 168, 162, 0.6));
    z-index: 1;
}

/* Hero Overlay - Modern Gradient */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 78, 74, 0.85), rgba(30, 58, 138, 0.65));
    z-index: 1;
}

.slider-content, .hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(45, 212, 191, 0.3);
}

/* Hero Title */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Hero Description */
.hero-description {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 500px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-secondary-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Profile */
.hero-profile {
    position: relative;
    display: inline-block;
}

.profile-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.profile-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 6px solid white;
}

.profile-badge i {
    font-size: 2rem;
    color: white;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    margin-top: 8px;
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

.slider-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slider-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.slider-content .lead {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.85;
}

/* Carousel Controls */
.carousel-control-prev, .carousel-control-next {
    opacity: 0.7;
    transition: var(--transition);
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #ffffff;
}

.carousel-indicators button.active {
    background-color: #ffffff;
}

/* İletişim CTA Bölümü */
.contact-cta-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.5;
}

.contact-cta-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

.contact-cta-icon {
    font-size: 4rem;
    color: var(--secondary-color);
}

.contact-cta-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.contact-cta-description {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
    line-height: 1.7;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Çözüm Odaklı Bölüm */
.solution-section {
    background: var(--neutral-light);
}

.solution-content h2.section-title {
    color: var(--primary-color);
}

.solution-image {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.solution-image img {
    transition: var(--transition);
}

.solution-image:hover img {
    transform: scale(1.05);
}

.solution-overlay {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.solution-icon {
    font-size: 2rem;
    color: white;
}

.btn-success {
    background: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
}

.btn-success:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hizmetlerim Bölümü */
.service-card {
    border: 1px solid #eaeaea;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    cursor: pointer;
    background: var(--background-color);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card .card-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card .card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Hizmet Türleri Kartları */
.service-type-card {
    border: none;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.service-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-type-icon {
    font-size: 4rem;
    color: var(--accent-color);
}

.service-type-card .card-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Hakkımda Bölümü */
#hakkimda img {
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

/* İletişim Bölümü */
.contact-info-item {
    padding: 2rem 1rem;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
}

/* Form Stilleri */
.form-control, .form-select {
    border: 1px solid #ced4da;
    border-radius: var(--border-radius);
    padding: 12px 16px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(92, 133, 166, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Modal Stilleri */
.modal-content {
    border: none;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background-color: var(--neutral-light);
    border-bottom: 1px solid #eaeaea;
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
    padding: 1.5rem 2rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    background-color: #fafafa;
    border-top: 1px solid #eaeaea;
    border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
    padding: 1.5rem 2rem;
}

/* Privacy ve Terms Content */
.privacy-content h6, .terms-content h6 {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--neutral-light);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

footer h5, footer h6 {
    color: #ffffff;
    font-family: var(--font-heading);
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: var(--transition);
}

.text-light-50:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Form Check Özelleştirmeleri */
.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(80, 163, 162, 0.25);
}

/* Alert Özelleştirmeleri */
.alert-info {
    background-color: rgba(92, 133, 166, 0.1);
    border-color: rgba(92, 133, 166, 0.2);
    color: var(--primary-color);
    border-radius: var(--border-radius);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        gap: 2rem;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .profile-image {
        width: 280px;
        height: 280px;
    }
    
    .profile-badge {
        width: 80px;
        height: 80px;
        bottom: -0.5rem;
        right: -0.5rem;
    }
    
    .profile-badge i {
        font-size: 1.5rem;
    }
    
    .slider-content h1 {
        font-size: 2.5rem;
    }
    
    .slider-content h2 {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-type-icon {
        font-size: 3rem;
    }
    
    .contact-icon, .contact-cta-icon {
        font-size: 2rem;
    }
    
    .modal-body, .modal-footer {
        padding: 1.5rem 1rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contact-cta-content {
        padding: 2rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
        font-size: 1rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 1rem 0;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .profile-image {
        width: 220px;
        height: 220px;
    }
    
    .profile-badge {
        width: 60px;
        height: 60px;
    }
    
    .profile-badge i {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-cta-description {
        font-size: 1rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Smooth Scroll ve Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading Animasyonu */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Hover Efektleri */
.btn:hover {
    transform: translateY(-2px);
}

.card:hover {
    transform: translateY(-5px);
}

/* Scroll to Top Button (gelecekteki kullanım için hazır) */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Özel Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.border-primary-custom {
    border-color: var(--primary-color) !important;
}

/* Print Stilleri */
@media print {
    .navbar, .modal, footer, .btn, .carousel-control-prev, .carousel-control-next, .carousel-indicators {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }
    
    .container {
        width: 100% !important;
        max-width: none !important;
    }
}