/* ========== THANK YOU PAGE STYLES ========== */

/* Hero Section */
.ty-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 1.5rem;
}

/* Container */
.ty-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(26, 74, 111, 0.1);
}

/* Badge */
.ty-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0a2b3e, #1a4a6f);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Icon Wrapper */
.ty-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0a2b3e, #1a4a6f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(26, 74, 111, 0.3);
}

.ty-icon-wrapper i {
    font-size: 3rem;
    color: white;
}

/* Heading */
.ty-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0a2b3e;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Message */
.ty-message {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Divider */
.ty-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0a2b3e, #1a4a6f);
    margin: 1.5rem auto;
    border-radius: 3px;
}

/* Submessage */
.ty-submessage {
    font-size: 1rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Info Box */
.ty-info-box {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.ty-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #4a5568;
    background: #f7fafc;
    padding: 0.5rem 1rem;
    border-radius: 40px;
}

.ty-info-item i {
    color: #1a4a6f;
    font-size: 0.9rem;
}

/* Back Button */
.ty-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #0a2b3e, #1a4a6f);
    color: white;
    text-decoration: none;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.ty-btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 74, 111, 0.3);
    color: white;
    text-decoration: none;
}

/* Background Elements */
.ty-bg-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#1a4a6f 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.05;
    pointer-events: none;
}

.ty-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 74, 111, 0.03), rgba(10, 43, 62, 0.05));
    pointer-events: none;
}

.ty-bg-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.ty-bg-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
}

/* Responsive */
@media (max-width: 768px) {
    .ty-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .ty-heading {
        font-size: 1.8rem;
    }
    
    .ty-message {
        font-size: 1rem;
    }
    
    .ty-info-box {
        gap: 1rem;
    }
    
    .ty-info-item {
        font-size: 0.8rem;
    }
    
    .ty-btn-back {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .ty-container {
        padding: 1.5rem;
    }
    
    .ty-heading {
        font-size: 1.5rem;
    }
    
    .ty-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .ty-icon-wrapper i {
        font-size: 2rem;
    }
    
    .ty-info-box {
        flex-direction: column;
        align-items: center;
    }
}