/* Thanks Page Specific Styles */
.thanks-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 40px;
}

.thanks-icon svg {
    width: 100px;
    height: 100px;
    animation: checkmarkAnimation 0.6s ease-in-out;
}

@keyframes checkmarkAnimation {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thanks-content h1 {
    font-size: 3rem;
    color: #2C5F41;
    margin-bottom: 30px;
    font-weight: 700;
}

.thanks-message {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    text-align: left;
}

.lead {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
}

.next-steps h2 {
    color: #2C5F41;
    margin-bottom: 30px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #4F9A94;
}

.step-number {
    background: linear-gradient(45deg, #2C5F41, #4F9A94);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2C5F41;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

.contact-reminder {
    background: #e3f2fd;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #4F9A94;
}

.contact-reminder h3 {
    color: #2C5F41;
    margin-bottom: 15px;
}

.contact-reminder p {
    color: #666;
    margin-bottom: 20px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2C5F41;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 10px 20px;
    background: white;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: #2C5F41;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 95, 65, 0.3);
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.related-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.related-content h2 {
    color: #2C5F41;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.related-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #4F9A94;
}

.related-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.related-card h3 {
    color: #2C5F41;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.related-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-link {
    display: inline-block;
    color: #2C5F41;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #2C5F41;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.card-link:hover {
    background: #2C5F41;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .thanks-section {
        padding: 100px 0 60px;
    }
    
    .thanks-content h1 {
        font-size: 2.5rem;
    }
    
    .thanks-message {
        padding: 30px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 15px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .cta-button,
    .action-buttons .secondary-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .related-content {
        padding: 30px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .thanks-content h1 {
        font-size: 2rem;
    }
    
    .thanks-icon svg {
        width: 80px;
        height: 80px;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .contact-reminder {
        padding: 20px;
    }
    
    .phone-link {
        font-size: 1.1rem;
    }
}