/*!
 * Diş Kliniği Scripti v1 - Hakkımızda Sayfası CSS
 * Modern ve sade tasarım
 */

/* Modern Hero Section */
.modern-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.modern-hero-content {
    position: relative;
    z-index: 2;
}

.modern-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.modern-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

.modern-hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-dental-icon {
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 20px 40px rgba(0, 123, 255, 0.2),
        0 0 0 20px rgba(0, 123, 255, 0.1),
        0 0 0 40px rgba(0, 123, 255, 0.05);
    animation: pulse 4s ease-in-out infinite;
}

.modern-dental-icon i {
    font-size: 4rem;
    color: white;
}

.modern-hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.modern-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 6s ease-in-out infinite;
}

.modern-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.modern-particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: -1.5s;
}

.modern-particle:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: -3s;
}

.modern-particle:nth-child(4) {
    bottom: 20%;
    right: 25%;
    animation-delay: -4.5s;
}

.modern-particle:nth-child(5) {
    top: 80%;
    left: 30%;
    animation-delay: -2s;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 20px 40px rgba(0, 123, 255, 0.2),
            0 0 0 20px rgba(0, 123, 255, 0.1),
            0 0 0 40px rgba(0, 123, 255, 0.05);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 25px 50px rgba(0, 123, 255, 0.3),
            0 0 0 25px rgba(0, 123, 255, 0.15),
            0 0 0 50px rgba(0, 123, 255, 0.08);
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.8;
    }
}

/* Content Sections */
.about-content {
    padding-right: 2rem;
}

.about-image img {
    transition: all 0.3s ease;
    border-radius: 20px;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Mission Cards */
.mission-card {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: rgba(0, 123, 255, 0.2);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

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

.mission-text {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: rgba(0, 123, 255, 0.2);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.team-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-specialty {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-experience {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Facility Cards */
.facility-card {
    padding: 2rem 1rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: rgba(0, 123, 255, 0.2);
}

.facility-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.facility-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.facility-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Statistics */
.stat-item {
    padding: 2rem 1rem;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    backdrop-filter: blur(10px);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-hero {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .modern-hero-title {
        font-size: 2.5rem;
    }
    
    .modern-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .modern-dental-icon {
        width: 150px;
        height: 150px;
    }
    
    .modern-dental-icon i {
        font-size: 3rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .mission-card,
    .facility-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .team-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .modern-hero-title {
        font-size: 2rem;
    }
    
    .modern-hero-subtitle {
        font-size: 1rem;
    }
    
    .modern-dental-icon {
        width: 120px;
        height: 120px;
    }
    
    .modern-dental-icon i {
        font-size: 2.5rem;
    }
}

/* Statistics Section - Modern Cards */
.stat-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0;
}
