/* Landing Page Specific Styles */

/* Service Card Hover Effect */
.service-card:hover .icon-box {
    background-color: #137fec;
    color: white;
    transition: all 0.3s ease;
}

/* Service Card Enhancement */
.service-card {
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Navigation Enhancements */
nav a:hover {
    color: #137fec;
}

/* Hero Section Animations */
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    animation: slideInRight 0.8s ease-out;
}

.floating-card {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Section Animations */
.section-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Stat Display */
.stat-item {
    animation: fadeInUp 0.6s ease-out;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #137fec;
}

/* Service Grid Hover */
.service-grid-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(19, 127, 236, 0.2);
}

/* About Section Image */
.about-image {
    animation: slideInLeft 0.8s ease-out;
}

.about-content {
    animation: slideInRight 0.8s ease-out;
}

/* Experience Badge Animation */
.experience-badge {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-button {
    transition: all 0.3s ease;
    position: relative;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(19, 127, 236, 0.3);
}

.cta-button-secondary {
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    transform: translateY(-2px);
}

/* WhatsApp Button */
.whatsapp-btn {
    transition: all 0.3s ease;
}

.whatsapp-btn svg {
    transition: color 0.3s ease;
}

.whatsapp-btn:hover svg {
    color: #25d366;
}

/* Instagram Button */
.instagram-btn {
    transition: all 0.3s ease;
}

.instagram-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Contact Info Cards */
.contact-card {
    animation: fadeInUp 0.6s ease-out;
}

.contact-card:hover {
    transform: translateY(-4px);
}

/* Footer Animation */
.footer-link:hover {
    color: #137fec;
}

/* Testimonial Carousel */
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Rating Stars */
.rating-star {
    color: #fbbf24;
    font-size: 1.25rem;
}

/* Feature List */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
    color: #137fec;
}

.feature-text {
    flex: 1;
}

/* Doctor Profile */
.doctor-profile {
    animation: slideInLeft 0.8s ease-out;
}

.doctor-info {
    animation: slideInRight 0.8s ease-out;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(19, 127, 236, 0.05);
    border-radius: 0.5rem;
}

.dark .certification-item {
    background-color: rgba(19, 127, 236, 0.1);
}

/* Badge Animations */
.badge-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Hero Badge */
.hero-badge {
    animation: slideInLeft 0.6s ease-out;
}

/* Section Title */
.section-title {
    animation: fadeInUp 0.6s ease-out;
}

.section-subtitle {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(19, 127, 236, 0.25);
}

.pricing-card.featured {
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Counter Animation */
.counter {
    font-size: 2rem;
    font-weight: 700;
    color: #137fec;
}

/* Timeline */
.timeline-item {
    animation: fadeInUp 0.6s ease-out;
    padding-left: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background-color: #137fec;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #137fec;
}

.dark .timeline-item::before {
    border-color: #0f172a;
    box-shadow: 0 0 0 2px #137fec;
}

/* Responsive Image */
.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(to right, #137fec, #0d5ab0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-image {
        margin-top: 2rem;
    }

    .about-image {
        margin-bottom: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-grid-item:hover {
        transform: translateY(-4px);
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Print Styles Override */
@media print {
    .cta-button,
    .cta-button-secondary {
        background-color: #137fec;
        color: white;
    }
}
