/* Additional Component Styles */

/* Services Page Specific Styles */
.services-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #4a9b8e 0%, #3d8277 100%);
    color: white;
}

.services-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-hero-text {
    text-align: left;
}

.services-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: left;
}

.services-hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 100%;
    margin: 0;
    text-align: left;
    line-height: 1.8;
}

.services-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
}

.hero-before-after-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-before-after-item:hover {
    transform: translateY(-5px);
}

.hero-before-after-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f0f0f0;
}

.hero-before-after-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.hero-before-after-item:hover .hero-before-after-image {
    transform: scale(1.1);
}


.services-section {
    padding: 80px 0;
    background: white;
}

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

.service-card.detailed {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card.detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #4a9b8e;
}

.service-card.detailed .service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card.detailed .service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card.detailed .service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a9b8e;
    font-weight: bold;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a9b8e;
    text-align: center;
    padding: 1rem;
    background: #f8fffe;
    border-radius: 8px;
    border: 2px solid #e8f5f3;
}

/* Treatment Process Detailed */
.treatment-process-section {
    padding: 80px 0;
    background: #f8fffe;
}

.process-steps-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-step-detailed {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.process-step-detailed:hover {
    transform: translateY(-5px);
}

.process-step-detailed .step-number {
    width: 60px;
    height: 60px;
    background: #4a9b8e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #4a9b8e;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: #4a9b8e;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4a9b8e;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: #4a9b8e;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a9b8e;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a9b8e 0%, #3d8277 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

.cta-actions .btn {
    min-width: 200px;
}

/* Navigation Active State */
.nav-link.active {
    color: #4a9b8e;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Logo Link */
.logo a {
    text-decoration: none;
    display: block;
}

/* Form Enhancements */
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4a9b8e;
    box-shadow: 0 0 0 3px rgba(74, 155, 142, 0.1);
}

/* Button Enhancements */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

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

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

/* Responsive Enhancements */
@media (max-width: 768px) {
    .services-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-hero-text {
        text-align: center;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .services-hero-description {
        text-align: center;
    }
    
    .hero-before-after {
        max-width: 100%;
        gap: 0.75rem;
    }
    
    .hero-before-after-image-wrapper {
        height: 250px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps-detailed {
        grid-template-columns: 1fr;
    }
    
    .process-step-detailed {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 100px 0 60px;
    }
    
    .services-hero-content {
        gap: 1.5rem;
    }
    
    .services-hero-title {
        font-size: 2rem;
    }
    
    .hero-before-after {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-before-after-image-wrapper {
        height: 200px;
    }
    
    .service-card.detailed {
        padding: 1.5rem;
    }
    
    .process-step-detailed {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-price {
        font-size: 2.5rem;
    }
}

/* Verruca Treatment Page Styles */
.verruca-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #4a9b8e 0%, #3d8277 100%);
    color: white;
    text-align: center;
}

.verruca-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.verruca-hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.verruca-hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.what-are-verrucae {
    padding: 80px 0;
    background: white;
}

.verrucae-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-card {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #4a9b8e;
}

.info-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4a9b8e;
}

.info-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.symptoms-list {
    list-style: none;
    padding: 0;
}

.symptoms-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.symptoms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4a9b8e;
    font-weight: bold;
}

.treatment-methods {
    padding: 80px 0;
    background: #f8fffe;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.method-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.method-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4a9b8e;
}

.method-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.method-features {
    list-style: none;
    text-align: left;
}

.method-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.method-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a9b8e;
    font-weight: bold;
}

.verruca-process {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #4a9b8e;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: #4a9b8e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: #f8fffe;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.timeline-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #4a9b8e;
}

.timeline-description {
    color: #666;
    line-height: 1.6;
}

.prevention-aftercare {
    padding: 80px 0;
    background: #f8fffe;
}

.prevention-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.prevention-tips,
.aftercare-tips {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.tips-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4a9b8e;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a9b8e;
    font-weight: bold;
}

.aftercare-visual {
    position: sticky;
    top: 2rem;
}

.aftercare-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.aftercare-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #4a9b8e;
}

.aftercare-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.aftercare-icon {
    font-size: 1.5rem;
    color: #4a9b8e;
    flex-shrink: 0;
}

.aftercare-text {
    color: #666;
    margin: 0;
}

/* Responsive Design for Verruca Page */
@media (max-width: 768px) {
    .verruca-hero-title {
        font-size: 2.5rem;
    }
    
    .verruca-hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .prevention-content {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .verruca-hero {
        padding: 100px 0 60px;
    }
    
    .verruca-hero-title {
        font-size: 2rem;
    }
    
    .info-card,
    .method-card,
    .prevention-tips,
    .aftercare-tips,
    .aftercare-card {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 18pt;
        margin-bottom: 10pt;
    }
    
    .service-card {
        break-inside: avoid;
        margin-bottom: 20pt;
    }
}
