/* Thank You Page Styles */

/* Pricing Options for Street Dance Thank You */
.pricing-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.price-card {
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    position: relative;
}

.price-card.featured {
    background: #fff;
    border-color: orangered;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.popular-badge {
    background: #ff0000;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.price-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 15px 0 10px;
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: orangered;
    margin-bottom: 10px;
}

.savings {
    background: #28a745;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.price-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 5px 0;
}

.class-info {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    margin: 25px 0;
}

.class-info h3 {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.class-info ul {
    margin: 0;
    padding-left: 20px;
    color: #666;
}

.class-info li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.class-info strong {
    color: #333;
}

/* Simplified Street Dance Thank You Styles */
.almost-there {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin: 20px 0;
    text-align: center;
}

.secure-spot {
    font-size: 1.3rem;
    color: #666;
    text-align: center;
    margin: 20px 0;
}

.pricing-simple {
    text-align: center;
    margin: 30px 0;
}

.price-line {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 10px 0;
}

.price-line.featured {
    font-size: 2rem;
    font-weight: 900;
    color: orangered;
}

.or-text {
    font-size: 1.2rem;
    color: #999;
    margin: 15px 0;
}

.benefits-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    margin: 0;
}

.cta-section {
    text-align: center;
    margin: 40px 0;
}

.book-now-btn {
    background: orangered;
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border: 3px solid #000;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background: #CC4125;
    color: white;
    border-color: #000;
    transform: translateY(-1px);
}

.book-now-btn .urgency {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
    opacity: 0.9;
}

/* Review Section */
.review-section {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
    border-left: 4px solid orangered;
}

.review-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 20px;
    font-weight: 500;
}

.review-author {
    font-size: 1rem;
    color: orangered;
    font-weight: 700;
    margin-top: 15px;
}

/* Class Schedule */
.class-schedule {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    margin: 25px 0;
    text-align: center;
}

.class-schedule h3 {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.schedule-list p {
    margin: 8px 0;
    color: #666;
    font-size: 1rem;
}

.schedule-list strong {
    color: #333;
}

.urgency-text {
    color: #ff0000;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 15px;
    text-transform: uppercase;
}

/* Three Box Layout */
.cta-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.review-box {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
    border-left: 6px solid orangered;
    position: relative;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.review-box::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 4rem;
    color: orangered;
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.class-details-box {
    background: #e8f5e8;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #28a745;
}

.thank-you-main {
    min-height: calc(100vh - 80px);
    padding: 60px 20px;
    background: #faf9f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.thank-you-card {
    background: #faf9f7;
    border: 3px solid #000000;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 40px;
    transform: rotate(-0.5deg);
    transition: transform 0.3s ease;
}

.thank-you-card:hover {
    transform: rotate(0deg);
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 50%;
    margin-bottom: 30px;
    animation: checkmark 0.8s ease-out;
}

.success-icon svg {
    color: white;
    animation: drawCheck 0.6s ease-out 0.3s both;
}

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

@keyframes drawCheck {
    0% {
        stroke-dasharray: 100;
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dasharray: 100;
        stroke-dashoffset: 0;
    }
}

.thank-you-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.thank-you-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.thank-you-content {
    text-align: left;
    margin: 40px 0;
}

.thank-you-content h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 300;
}

.next-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.next-steps li:hover {
    transform: translateX(5px);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.15);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4545 100%);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.step-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.contact-info-box {
    background: #ffffff;
    border: 3px solid orangered;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 8px 8px 0px rgba(255, 69, 0, 0.1);
}

.contact-info-box h3 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 400;
}

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

.contact-methods {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #ff6b35;
    border-radius: 8px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #ff6b35;
    color: white;
}

.contact-method svg {
    width: 20px;
    height: 20px;
}

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

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: orangered;
    color: white;
    border: 3px solid orangered;
}

.btn-primary:hover {
    background: #ffffff;
    color: orangered;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 69, 0, 0.3);
}

.btn-secondary {
    background: #ffffff;
    color: #000000;
    border: 3px solid #000000;
}

.btn-secondary:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.popular-themes {
    background: #faf9f7;
    border: 3px solid #000000;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.1);
    transform: rotate(0.5deg);
    transition: transform 0.3s ease;
}

.popular-themes:hover {
    transform: rotate(0deg);
}

.popular-themes h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.popular-themes h3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -0.2em;
    right: -0.2em;
    height: 50%;
    background-color: orangered;
    z-index: -1;
    opacity: 0.9;
}

.popular-themes > p {
    color: #666;
    margin-bottom: 30px;
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.theme-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #ffffff;
    border: 3px solid orangered;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 80px;
    box-shadow: 4px 4px 0px rgba(255, 69, 0, 0.2);
}

.theme-card:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px rgba(255, 69, 0, 0.3);
    background: orangered;
}

.theme-name {
    color: orangered;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Josefin Sans', sans-serif;
    transition: color 0.3s ease;
}

.theme-card:hover .theme-name {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .thank-you-main {
        padding: 40px 15px;
    }
    
    .thank-you-card {
        padding: 30px 20px;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .thank-you-subtitle {
        font-size: 1rem;
    }
    
    .next-steps li {
        padding: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .step-content strong {
        font-size: 1rem;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .contact-method {
        width: 100%;
        justify-content: center;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .theme-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .popular-themes {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .thank-you-title {
        font-size: 1.75rem;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
    }
    
    .success-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .theme-grid {
        grid-template-columns: 1fr;
    }
}