/* Thank You Page Styles */

/* Hero Section */
.thank-you-hero {
    padding: 160px 40px 160px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--text-color);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.checkmark-icon {
    margin-bottom: 30px;
    color: var(--accent-color);
    animation: scaleIn 0.5s ease-out forwards;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    animation: fadeUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.thank-you-hero p {
    font-size: 1.5rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Tablet and small desktop */
@media (max-width: 1024px) {
    .thank-you-hero {
        padding: 140px 40px 70px;
    }
    
    .thank-you-hero h1 {
        font-size: 3.8rem;
    }
    
    .thank-you-hero p {
        font-size: 1.3rem;
    }

}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
    .thank-you-hero {
        padding: 120px 20px 60px;
    }
    
    .thank-you-hero h1 {
        font-size: 2.8rem;
    }
    
    .thank-you-hero p {
        font-size: 1.1rem;
    }

}

/* Mobile portrait */
@media (max-width: 480px) {
    .thank-you-hero {
        padding: 100px 20px 50px;
    }
    
    .thank-you-hero h1 {
        font-size: 2.4rem;
    }
    
    .thank-you-hero p {
        font-size: 1rem;
    }
    
   
}

/* Very small mobile screens */
@media (max-width: 375px) {
    .thank-you-hero h1 {
        font-size: 2rem;
    }
    
    .thank-you-hero p {
        font-size: 0.95rem;
    }
    
   
}