/* =========================================
   GÜNEŞ PSİKOLOJİK DANIŞMANLIK - ANA STİL DOSYASI
   ========================================= */

:root {
    --brand-orange: #E67E22; 
    --brand-orange-hover: #D35400; 
    --brand-cream: #FAF2E0;
    --text-dark: #2C3E50; 
    --text-light: #596275; 
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--brand-cream);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
    cursor: pointer;
}
.btn-whatsapp {
    background-color: #25D366; 
    color: white;
}
.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
}
.btn-doktor {
    background-color: var(--brand-orange);
    color: white;
}
.btn-doktor:hover {
    background-color: var(--brand-orange-hover);
    transform: translateY(-2px);
}

/* --- YENİ ÜST MENÜ (Logo ve Yazı Yan Yana) --- */
.site-header {
    background-color: #FFFFFF; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.04); 
    position: sticky; 
    top: 0;
    z-index: 100;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 15px; /* Logo ve yazı arasındaki boşluk */
}
.nav-logo {
    max-height: 55px; 
    width: auto;
    transition: transform 0.3s ease;
}
.nav-logo:hover {
    transform: scale(1.05);
}
.nav-brand-text {
    color: var(--brand-orange);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}
.nav-btn {
    background-color: transparent;
    color: var(--brand-orange);
    border: 2px solid var(--brand-orange);
    padding: 8px 24px;
    border-radius: 30px; 
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.nav-btn:hover {
    background-color: var(--brand-orange);
    color: #FFFFFF;
}

/* --- MODERN GİRİŞ (HERO) BÖLÜMÜ --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 20px 80px 20px;
    animation: fadeUp 0.8s ease-out forwards;
}
.hero-content {
    flex: 1.2;
}
.hero-badge {
    display: inline-block;
    background-color: rgba(230, 126, 34, 0.1); 
    color: var(--brand-orange);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 3.2rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 30px;
}
.philosophy {
    color: var(--text-light);
    font-size: 1.1rem;
    border-left: 4px solid var(--brand-orange);
    padding-left: 15px;
    margin-bottom: 30px;
    line-height: 1.8;
}
.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image-box {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.image-backdrop {
    position: absolute;
    top: 25px;
    right: -25px;
    width: 90%;
    height: 100%;
    background-color: var(--brand-orange);
    border-radius: 20px;
    opacity: 0.15; 
    z-index: 0;
}
.modern-pic {
    position: relative;
    z-index: 1;
    max-width: 420px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border: 8px solid #FFFFFF; 
    animation: float 4s ease-in-out infinite;
}

/* --- HAKKINDA BÖLÜMÜ --- */
.about-section {
    padding: 20px 0 60px 0;
    opacity: 0; 
    animation: fadeUp 0.8s ease-out 0.3s forwards; 
}
.about-card {
    background-color: #FFFFFF; 
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05); 
    border-top: 5px solid var(--brand-orange); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-card:hover {
    transform: translateY(-8px); 
    box-shadow: 0 25px 50px rgba(0,0,0,0.1); 
}
.section-title {
    color: var(--brand-orange);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}
.about-intro {
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.about-more p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.hidden { display: none; }
.visible {
    display: block;
    animation: fadeIn 0.5s ease-in-out; 
}
.btn-toggle {
    background: none;
    border: none;
    color: var(--brand-orange);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0;
    display: block;
    margin: 20px auto 0 auto;
    font-family: var(--font-main);
    transition: color 0.3s ease;
}
.btn-toggle:hover {
    color: var(--brand-orange-hover);
    text-decoration: underline;
}

/* --- HİZMETLERİMİZ BÖLÜMÜ --- */
.services-section {
    padding: 60px 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-card {
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); 
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent; 
}
.service-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
    border-bottom: 4px solid var(--brand-orange); 
}
.service-icon, .service-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}
.service-card:hover .service-icon, .service-card:hover .service-card-icon {
    transform: scale(1.1); 
}
.service-card h3 {
    color: var(--brand-orange);
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- GALERİ VE SWIPER BÖLÜMÜ --- */
.gallery-section {
    padding: 60px 0;
    text-align: center;
    overflow: hidden; 
}
.gallery-header {
    margin-bottom: 40px;
}
.gallery-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px; 
    position: relative; /* OKLARIN VE İPUCUNUN DIŞARI KAÇMASINI ENGELLER */
}
.swiper-slide {
    width: 600px; /* Genişliği artırdık (Yatay fotoğraflar için) */
    aspect-ratio: 16 / 9; /* Tam 16:9 sinematik yatay oran */
    height: auto; /* Yüksekliği orana göre otomatik ayarlar */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    opacity: 0.4; 
    transition: all 0.3s ease;
    transform: scale(0.9); 
}
.swiper-slide-active {
    opacity: 1;
    transform: scale(1); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 2;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.swiper-button-next, .swiper-button-prev {
    color: var(--brand-orange) !important; 
    background-color: rgba(255,255,255,0.8); 
    padding: 30px; 
    border-radius: 50%;
    font-weight: bold;
}
.swiper-pagination-bullet-active {
    background-color: var(--brand-orange) !important;
}

.mobile-swipe-hint {
    display: none;
}

/* --- FOOTER (ALT BİLGİ) --- */
.site-footer {
    background-color: var(--text-dark); 
    color: #ffffff;
    padding: 60px 0 0 0;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 40px;
    margin-bottom: 40px;
}
.footer-title {
    color: var(--brand-orange);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-desc {
    color: #cbd5e1; 
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%; 
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background-color: var(--brand-orange);
    transform: translateY(-3px); 
}
.contact-list {
    list-style: none;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #cbd5e1;
    font-size: 0.95rem;
}
.contact-list li i {
    color: var(--brand-orange);
    margin-top: 5px;
    font-size: 1.1rem;
}
.contact-list a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-list a:hover {
    color: var(--brand-orange);
}
.map-container {
    border-radius: 10px;
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.footer-bottom {
    background-color: #1a252f; 
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* --- ANİMASYONLAR --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); } 
    100% { transform: translateY(0px); }
}

/* --- MOBİL UYUM (RESPONSIVE) --- */
@media (max-width: 768px) {
    .header-flex { height: 70px; }
    .logo-area { gap: 10px; }
    .nav-logo { max-height: 40px; }
    .nav-brand-text { font-size: 0.85rem; max-width: 140px; }
    .nav-btn { padding: 6px 12px; font-size: 0.8rem; }
    
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 20px;
    }
    .hero-image-box {
        justify-content: center;
        margin-bottom: 20px;
    }
    .image-backdrop {
        right: -10px; 
        top: 15px;
    }
    .hero-title { font-size: 2.2rem; }
    .hero-badge { margin: 0 auto 20px auto; }
    .philosophy {
        border-left: none;
        padding-left: 0;
    }
    .cta-buttons { justify-content: center; }
    
    .about-card { padding: 25px; }
    
    .swiper-button-next, .swiper-button-prev {
        display: none !important; 
    }
    .swiper-slide {
        width: 85%; /* Mobilde ekranın %85'ini kaplasın */
        aspect-ratio: 16 / 9; /* Mobilde de 16:9 kırpılmadan yatay kalsın */
        height: auto; 
    }
    }
    
    /* İpucu Animasyonu - Artık tam yerinde (Ofis resimlerinin üstünde) çıkacak */
    .mobile-swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: absolute;
        bottom: 30px; 
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        background: linear-gradient(90deg, rgba(250,242,224,0) 0%, rgba(230,126,34,0.85) 50%, rgba(250,242,224,0) 100%);
        color: white;
        padding: 8px 50px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        pointer-events: none; 
        transition: opacity 0.5s ease; 
        animation: swipeHintAnim 2.5s infinite ease-in-out; 
    }
    @keyframes swipeHintAnim {
        0% { transform: translate(-50%, 0); }
        50% { transform: translate(-45%, 0); } 
        100% { transform: translate(-50%, 0); }
    }
    .hint-icon {
        font-size: 1.2rem;
        animation: arrowPulse 1.5s infinite;
    }
    @keyframes arrowPulse {
        0% { transform: translateX(0); opacity: 0.5; }
        50% { transform: translateX(4px); opacity: 1; }
        100% { transform: translateX(0); opacity: 0.5; }
    }
    
    .footer-grid {
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 30px;
    }
    .contact-list li {
        justify-content: center;
        flex-direction: column; 
        align-items: center;
        gap: 5px;
    }
    .social-links { justify-content: center; }
}