/**
 * Ergoterapi.com.tr Custom Styles
 * Custom CSS for ergotherapy website
 */

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Service Cards */
.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.btn-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.btn-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Feature Boxes */
.feature-box {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 15px;
}

.feature-box h3 {
    color: #333;
    margin-bottom: 10px;
}

.feature-box p {
    color: #666;
}

/* Team Cards */
.team-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid #667eea;
}

.team-card h4 {
    color: #333;
    margin-bottom: 5px;
}

.team-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card p {
    color: #666;
}

/* Testimonial Cards */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    color: #333;
    font-weight: 600;
}

/* Blog Cards */
.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h4 {
    color: #333;
    margin-bottom: 10px;
}

.blog-content h4 a {
    color: #333;
    text-decoration: none;
}

.blog-content h4 a:hover {
    color: #667eea;
}

.blog-content p {
    color: #666;
    margin-bottom: 15px;
}

/* Service Sections */
.service-section {
    padding: 60px 0;
}

.service-section h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.service-section h3 {
    color: #667eea;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-list li {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list strong {
    color: #333;
}

/* Principle Cards */
.principle-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.principle-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.principle-card p {
    color: #666;
}

/* Comparison Cards */
.comparison-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.comparison-card h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.comparison-card li:last-child {
    border-bottom: none;
}

/* Process Steps */
.process-step {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: #333;
    margin-bottom: 10px;
}

.process-step p {
    color: #666;
}

/* Outcome Cards */
.outcome-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.outcome-card h3 {
    color: #667eea;
    margin-bottom: 10px;
}

.outcome-card p {
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Section Titles */
.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 10px 0;
    color: #666;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
    color: #fff;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: #fff;
    color: #667eea;
}

.btn-light {
    background: #fff;
    color: #667eea;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-light:hover {
    background: #f8f9fa;
    color: #764ba2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .service-section h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .service-card,
    .team-card,
    .testimonial-card,
    .blog-card {
        padding: 20px;
    }
}

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

.service-card,
.team-card,
.testimonial-card,
.blog-card {
    animation: fadeIn 0.5s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
