/*!
 * Diş Kliniği Scripti v1 - Randevu Sayfası CSS
 * Modern ve sade tasarım - Diğer sayfalarla %100 uyumlu
 */

/* 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;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.hero-buttons .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.hero-buttons .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

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

.modern-appointment-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-appointment-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: 80%;
    animation-delay: 2s;
}

.modern-particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.modern-particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}

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

/* Appointment Form Section */
.appointment-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.appointment-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: none;
}

.appointment-form-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.appointment-form-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-form-title i {
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

.appointment-form-body {
    padding: 2.5rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.form-section-title i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Form Controls */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
    background: white;
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.btn-outline-secondary {
    border: 2px solid #6c757d;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: #6c757d;
    border-color: #6c757d;
    transform: translateY(-2px);
}

/* Working Hours Card */
.working-hours-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: none;
    margin-top: 3rem;
}

.working-hours-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
    border-radius: 15px 15px 0 0;
}

.working-hours-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.working-hours-title i {
    margin-right: 0.75rem;
}

.working-hours-body {
    padding: 2rem;
    text-align: center;
}

.working-hours-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #495057;
}

.working-hours-info {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

/* Animations */
@keyframes pulse {
    0% {
        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);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 
            0 25px 50px rgba(0, 123, 255, 0.3),
            0 0 0 30px rgba(0, 123, 255, 0.15),
            0 0 0 60px rgba(0, 123, 255, 0.08);
    }
    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);
    }
}

@keyframes floatParticle {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 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;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .modern-appointment-icon {
        width: 150px;
        height: 150px;
    }
    
    .modern-appointment-icon i {
        font-size: 3rem;
    }
    
    .appointment-form-body {
        padding: 1.5rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .form-section-title {
        font-size: 1.1rem;
    }
    
    .appointment-form-title {
        font-size: 1.5rem;
    }
    
    .working-hours-body {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .modern-hero-title {
        font-size: 2rem;
    }
    
    .modern-hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .modern-appointment-icon {
        width: 120px;
        height: 120px;
    }
    
    .modern-appointment-icon i {
        font-size: 2.5rem;
    }
    
    .appointment-form-body {
        padding: 1rem;
    }
    
    .form-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .appointment-form-title {
        font-size: 1.25rem;
    }
    
    .working-hours-body {
        padding: 1rem;
    }
}