* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f5f8ff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* Decorative Background Elements */
body::before {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 200px;
    opacity: 0.03;
    transform: rotate(15deg);
    color: #5170FF;
    z-index: 1;
    pointer-events: none;
}

body::after {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 200px;
    opacity: 0.03;
    transform: rotate(-15deg);
    color: #FD8F50;
    z-index: 1;
    pointer-events: none;
}

.thank-you-container {
    max-width: 700px;
    width: 100%;
    background: white;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(81, 112, 255, 0.15);
    padding: 50px 40px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(81, 112, 255, 0.1);
}

/* Success Icon */
.success-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #5170FF, #FD8F50);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 30px rgba(81, 112, 255, 0.3);
    transition: transform 0.3s ease;
}

.success-icon-wrapper.animate {
    animation: scaleIn 0.5s ease-out 0.2s both;
}

.success-icon {
    width: 50px;
    height: 50px;
    position: relative;
}

.success-icon svg {
    width: 100%;
    height: 100%;
    stroke: white;
    stroke-width: 3;
}

/* Typography */
h1 {
    color: #1e293b;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #5170FF, #FD8F50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    color: #5a6a7e;
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.4;
}

/* Message Box */
.message-box {
    background: #f8faff;
    border-radius: 20px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(81, 112, 255, 0.1);
}

.main-message {
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.main-message strong {
    color: #FD8F50;
    font-weight: 700;
}

/* Urgent Section */
.urgent-section {
    background: #fff9e6;
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid #ffe6b3;
}

.urgent-section h3 {
    color: #FD8F50;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.urgent-section p {
    color: #5a6a7e;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Contact Options */
.contact-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-button svg {
    width: 20px;
    height: 20px;
}

.contact-button.phone {
    background: #e3f2fd;
    color: #2196F3;
}

.contact-button.phone:hover {
    background: #bbdefb;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(33, 150, 243, 0.2);
}

.contact-button.whatsapp {
    background: #e8f5e9;
    color: #25D366;
}

.contact-button.whatsapp:hover {
    background: #c8e6c9;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.2);
}

.response-time {
    font-size: 0.9rem;
    color: #FD8F50 !important;
    font-weight: 600;
}

/* Next Steps */
.next-steps {
    margin: 40px 0;
}

.next-steps h3 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step {
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #5170FF, #FD8F50);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 10px;
    box-shadow: 0 5px 15px rgba(81, 112, 255, 0.2);
}

.step p {
    color: #5a6a7e;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Home Button */
.home-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 16px 45px;
    background: linear-gradient(135deg, #5170FF, #3a5ae0);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(81, 112, 255, 0.3);
}

.home-button svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.home-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(81, 112, 255, 0.4);
}

.home-button:active {
    transform: translateY(-1px);
}

/* Trust Badge */
.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(81, 112, 255, 0.1);
    color: #5a6a7e;
    font-size: 0.9rem;
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    color: #FD8F50;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .thank-you-container {
        padding: 40px 25px;
        margin: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .success-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .success-icon {
        width: 40px;
        height: 40px;
    }

    .contact-options {
        flex-direction: column;
        gap: 10px;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
    }

    .steps-grid {
        gap: 10px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .step p {
        font-size: 0.8rem;
    }

    .home-button {
        padding: 14px 35px;
        font-size: 1rem;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .thank-you-container {
        padding: 30px 20px;
        margin: 10px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .message-box {
        padding: 20px;
    }

    .main-message {
        font-size: 1rem;
    }

    .urgent-section {
        padding: 20px;
    }

    .urgent-section h3 {
        font-size: 1.2rem;
    }

    .urgent-section p {
        font-size: 0.95rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .step {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }

    .step-number {
        margin: 0;
    }

    .home-button {
        padding: 14px 30px;
        width: 100%;
    }

    body::before,
    body::after {
        font-size: 120px;
    }
}

@media (max-width: 360px) {
    h1 {
        font-size: 1.6rem;
    }

    .thank-you-container {
        padding: 25px 15px;
    }
}