/* Professional Hero Section for Dr. Selim Demir */
/* ============================================== */

.hero-section {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
}

/* Background Pattern */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
}

/* Left Side - Doctor Info */
.hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.doctor-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.doctor-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 1.2rem;
    color: #0077B6;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.doctor-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: #03045E;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #03045E 0%, #0077B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #495057;
    margin-bottom: 25px;
    line-height: 1.6;
}

.credentials-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.credentials-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #495057;
    font-size: 1.05rem;
}

.credentials-list i {
    color: #00B4D8;
    font-size: 1.2rem;
    width: 24px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    color: white;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.4);
    color: white;
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: white;
    color: #0077B6;
    border: 2px solid #0077B6;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    background: #0077B6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

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

.trust-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0077B6;
    display: block;
    margin-bottom: 5px;
}

.trust-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Side - Doctor Image */
.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.doctor-image-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

/* Decorative Elements */
.image-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    transform: rotate(6deg);
    z-index: -1;
}

.doctor-photo {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 30px;
    background: white;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: center top;
}

/* Floating Cards */
.expertise-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.expertise-card-1 {
    top: 20px;
    left: -30px;
    animation-delay: 0s;
}

.expertise-card-2 {
    bottom: 40px;
    right: -20px;
    animation-delay: 1s;
}

.expertise-card i {
    color: #00B4D8;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.expertise-card h4 {
    font-size: 0.9rem;
    color: #03045E;
    margin: 0;
    font-weight: 600;
}

.expertise-card p {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
}

/* Awards Section */
.awards-row {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    background: white;
    padding: 20px 30px;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.award-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    border-right: 1px solid #e0e0e0;
}

.award-item:last-child {
    border-right: none;
}

.award-item i {
    color: #FFB700;
    font-size: 1.5rem;
}

.award-item span {
    color: #495057;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 40px;
    }
    
    .doctor-image-wrapper {
        max-width: 400px;
    }
    
    .expertise-card {
        display: none;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .trust-indicators {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .doctor-name {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .doctor-photo {
        height: 400px;
        margin-bottom: 0;
    }
    
    .doctor-image-wrapper {
        margin-bottom: 50px;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
    }
    
    .awards-row {
        position: static;
        transform: none;
        margin: 30px auto 0;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 20px;
        gap: 15px;
        bottom: auto;
        left: auto;
        width: 90%;
        max-width: 400px;
        padding: 15px;
    }
    
    .doctor-image-wrapper {
        margin-bottom: 0;
    }
    
    .hero-image {
        margin-bottom: 20px;
    }
    
    .award-item {
        border-right: none;
        border-bottom: none;
        padding: 5px 10px;
        font-size: 0.85rem;
    }
    
    .award-item i {
        font-size: 1.2rem;
    }
    
    .award-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .doctor-name {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .doctor-badge {
        font-size: 0.85rem;
        padding: 6px 15px;
    }
}