/* Premium ThetaHealing Style - Nurşah Okçu Akademi */

/* Course Cards */
.course-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(124,77,255,0.2);
}

.course-card.featured {
    background: linear-gradient(135deg, #7C4DFF 0%, #E91E63 100%);
    color: white;
}

.course-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #FFD700;
    color: #1a0033;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.course-card.featured .course-badge {
    background: white;
    color: #7C4DFF;
}

.course-card h4 {
    font-size: 1.8rem;
    margin: 20px 0;
    font-weight: 700;
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.course-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.course-features i {
    color: #4CAF50;
    margin-right: 10px;
}

.course-card.featured .course-features i {
    color: #FFD700;
}

.course-price {
    margin: 20px 0;
    text-align: center;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    display: block;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF0000;
    display: block;
}

.course-card.featured .old-price {
    color: rgba(255,255,255,0.7);
}

.course-card.featured .new-price {
    color: #FFD700;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
}

.testimonial-card .stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

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

.testimonial-author p {
    margin: 0;
    color: #999;
    font-size: 0.9rem;
}

/* Blog Cards Premium */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(124,77,255,0.2);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #7C4DFF, #E91E63);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.blog-date span {
    font-size: 1.5rem;
    line-height: 1;
}

.blog-date small {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    flex: 1;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 10px;
    color: var(--dark-purple);
}

/* CTA Section Premium */
.cta-section {
    background: linear-gradient(135deg, #1a0033 0%, #330066 50%, #4d0099 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,215,0,0.1)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.cta-wrapper {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.btn-cta {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a0033;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,215,0,0.4);
    color: #1a0033;
}

/* Contact Section Premium */
.contact-section {
    background: #f8f9fa;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-info h3 {
    color: var(--dark-purple);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7C4DFF, #E91E63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-item h5 {
    margin: 0 0 5px;
    color: #333;
}

.contact-item p {
    margin: 0;
    color: #666;
}

/* Service Cards Enhanced */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124,77,255,0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scale(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(124,77,255,0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7C4DFF, #E91E63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h4 {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.service-card p {
    position: relative;
    z-index: 1;
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-price .duration {
    color: #999;
    font-size: 0.9rem;
}

/* Premium Buttons */
.btn-primary-theta {
    background: linear-gradient(45deg, #7C4DFF, #E91E63);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(124,77,255,0.3);
}

.btn-primary-theta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124,77,255,0.4);
    color: white;
}

.btn-secondary-theta {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    color: #1a0033;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255,215,0,0.3);
}

.btn-secondary-theta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.4);
    color: #1a0033;
}

/* Enhanced Footer */
.footer-theta {
    background: linear-gradient(135deg, #1a0033 0%, #330066 100%);
    color: white;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-theta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer-theta .container {
    position: relative;
    z-index: 1;
}

.footer-theta h4, .footer-theta h5 {
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-theta a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-theta a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.footer-theta .social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-theta .social-links a:hover {
    background: #FFD700;
    color: #1a0033;
    transform: translateY(-3px) rotate(360deg);
}

.newsletter-form .input-group {
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form input {
    border: none;
    padding: 15px 20px;
    background: rgba(255,255,255,0.9);
}

.newsletter-form button {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    color: #1a0033;
    padding: 15px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

/* Scroll Animations */
[data-aos] {
    transition-property: transform, opacity;
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
    transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
    transition-delay: 0.1s;
}

/* Premium Hover Effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

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

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

/* Responsive Enhancements */
@media (max-width: 991px) {
    .hero-title .title-large {
        font-size: 3rem;
    }
    
    .hero-cta-box {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .stats-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-card {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title .title-large {
        font-size: 2.5rem;
    }
    
    .hero-title .title-small {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .course-card,
    .testimonial-card,
    .contact-info {
        padding: 30px 20px;
    }
    
    .footer-theta {
        padding: 60px 0 20px;
    }
}