/* Reset margins and paddings */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

/* Modern Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    padding-top: 80px; /* Header yüksekliği kadar padding */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
    transform: scale(1.1);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: #fbbf24;
}

.hero-subtitle-small {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
    max-width: 700px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-cta .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

.hero-cta .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    color: white;
}

.hero-cta .btn-success {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    color: white;
}

.hero-cta .btn-success:hover {
    background: linear-gradient(135deg, #22c55e 0%, #0f766e 100%);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fbbf24;
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Modern Section Styles */
.modern-section {
    padding: 5rem 0;
    position: relative;
    background: #f8fafc;
}

.section-top-shadow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.modern-section:first-of-type {
    background: white;
}

.modern-section:nth-child(even) {
    background: #f8fafc;
}

.modern-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.modern-card, .service-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-card:hover, .service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-image, .service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-image img, .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 3rem;
    opacity: 0.8;
}

.modern-card:hover .card-image img, .service-card:hover .service-image img {
    transform: scale(1.05);
}

.card-overlay, .service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    padding: 1.5rem 1rem 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 80px;
}

.card-overlay-item {
    text-align: center;
    color: white;
}

.card-overlay-item:first-child {
    text-align: left;
}

.card-overlay-item:last-child {
    text-align: right;
}

.card-overlay-label {
    font-size: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    margin-bottom: 0.125rem;
    opacity: 0.8;
    color: white;
}

.card-overlay-value {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    color: white;
}

.modern-card h3, .service-card .service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0.75rem 1rem 0.25rem 1rem;
    line-height: 1.3;
}

.modern-card p, .service-card .service-description {
    color: #666;
    margin: 0 1rem 0.75rem 1rem;
    line-height: 1.4;
    font-size: 0.875rem;
    flex-grow: 1;
}

.card-button, .service-content {
    padding: 0 1rem 0.75rem 1rem;
    text-align: center;
}

.card-button .btn, .service-content .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    background: #6c757d;
    border-color: #6c757d;
    color: white;
}

.card-button .btn:hover, .service-content .btn:hover {
    background: #5a6268;
    border-color: #5a6268;
    color: white;
}

#loadMoreBtn {
    display: block;
    margin: 3rem auto 0 auto;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

#loadMoreBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#loadMoreBtn:active {
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden-service {
    display: none;
}

/* Doctor Cards Styles */
.doctor-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.doctor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.doctor-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.doctor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #6c757d;
    font-size: 2rem;
}

.doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.doctor-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 2.5rem;
    border-radius: 50%;
}

.doctor-info {
    text-align: center;
}

.doctor-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.doctor-hospital {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.doctor-experience {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.doctor-experience i {
    font-size: 0.75rem;
}

.doctor-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.doctor-specialties {
    margin-bottom: 1.5rem;
}

.doctor-specialties h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.specialty-tag {
    background: #007bff;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.specialty-placeholder {
    background: #6c757d;
    opacity: 0.8;
}

.doctor-credentials {
    margin-bottom: 1.5rem;
}

.doctor-credentials h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.credentials-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    border: 1px solid #e9ecef;
}

.credential-item i {
    color: #007bff;
    font-size: 0.875rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.credential-item span {
    color: #495057;
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: 500;
}

.doctor-actions {
    margin-top: auto;
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
}

.doctor-actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
}

.doctor-actions .btn-primary {
    background: #007bff;
    color: white;
}

.doctor-actions .btn-primary:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.doctor-actions .btn-success {
    background: #28a745;
    color: white;
}

.doctor-actions .btn-success:hover {
    background: #1e7e34;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Empty State */
.empty-state {
    padding: 3rem 1rem;
}

.empty-state i {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.empty-state h4 {
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.empty-state p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto;
}

/* View All Doctors Button */
.btn-outline-primary {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-primary:hover {
    background: #007bff;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

/* Modern CTA Section */
.modern-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-feature i {
    font-size: 1.5rem;
    color: #fbbf24;
}

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

.cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-success {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
}

.cta-buttons .btn-success:hover {
    background: linear-gradient(135deg, #22c55e 0%, #0f766e 100%);
    color: white;
}

.cta-buttons .btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 60px 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle-small {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .hero-stat {
        padding: 1rem;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .hero-stat-label {
        font-size: 0.75rem;
    }

    .modern-grid, .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modern-card, .service-card {
        margin-bottom: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    .cta-feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .modern-section {
        padding: 3rem 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        margin-bottom: 1rem;
    }

    .faq-item h3 {
        font-size: 1.25rem;
    }

    #loadMoreBtn {
        width: 100%;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle-small {
        font-size: 0.875rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .hero-badge {
        font-size: 0.625rem;
        padding: 0.25rem 0.5rem;
    }

    .hero-cta .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }

    .hero-stats {
        gap: 0.75rem;
    }

    .hero-stat {
        padding: 0.75rem;
    }

    .hero-stat-number {
        font-size: 1.75rem;
    }

    .hero-stat-label {
        font-size: 0.625rem;
    }
}

/* FAQ Section */
.faq-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
} 

/* Responsive Doctor Cards */
@media (max-width: 1200px) {
    .doctor-card {
        padding: 1.5rem;
    }
    
    .doctor-avatar {
        width: 70px;
        height: 70px;
    }
    
    .doctor-name {
        font-size: 1.25rem;
    }
    
    .doctor-credentials {
        margin-bottom: 1rem;
    }
    
    .credential-item {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .doctor-card {
        padding: 1.25rem;
    }
    
    .doctor-avatar {
        width: 60px;
        height: 60px;
    }
    
    .doctor-name {
        font-size: 1.125rem;
    }
    
    .doctor-hospital {
        font-size: 0.875rem;
    }
    
    .doctor-experience {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .specialty-tags {
        gap: 0.375rem;
    }
    
    .specialty-tag {
        font-size: 0.625rem;
        padding: 0.25rem 0.5rem;
    }
    
    .doctor-actions {
        gap: 0.5rem;
    }
    
    .doctor-actions .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .credential-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .credential-item span {
        font-size: 0.8rem;
    }
    
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .doctor-card {
        padding: 1rem;
    }
    
    .doctor-avatar {
        width: 50px;
        height: 50px;
    }
    
    .doctor-name {
        font-size: 1rem;
    }
    
    .doctor-hospital {
        font-size: 0.8rem;
    }
    
    .doctor-experience {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .specialty-tag {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
    
    .doctor-actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .credential-item {
        padding: 0.375rem;
        gap: 0.375rem;
    }
    
    .credential-item span {
        font-size: 0.75rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }
} 