/* Product Verification Page Styles */
body{
    background: #fff;
}
/* Hero Section */
.verification-hero {
    position: relative;
    height: 34.8vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.verification-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verification-hero-content {
    z-index: 2;
    text-align: left;
    color: white;
    position: absolute;
    top: 13.2vw;
    left: 19.2vw;
}

.hero-logo img {
    width: 13.6vw;
    margin-bottom: 2.29vw;
}

.hero-title {
    font-size: 3.4375vw;
    margin: 0;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 0.85;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

/* Verification Form Section */
.verification-form-section {
    padding: 6.09vw 0;
}

.verification-container {
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-weight: bold;
    font-size: 2.82vw;
    color: #000000;
    line-height: 0.85;
}

.product-showcase {
    margin-top: 4.63vw;
    margin-bottom: 3.33vw;
}

.product-image {
    width: 22.92vw;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.verify-form {
    margin: 0;
    max-width: 47.92vw;
    height: 3.17vw;
    background: #EBEBEB;
    border-radius: 1.67vw;
    margin: 0 auto;
    line-height: 1;
    overflow: hidden;
    position: relative;
}

.verify-input-group {
    width: 100%;
    height: 100%;
}

.verification-input {
    flex: 1;
    width: 100%;
    height: 100%;
    border: none;
    background: #EBEBEB;
    line-height: 1;
    font-weight: 400;
    font-size: 1.08vw;
    padding-left: 2.92vw;
    transition: all 0.3s ease;
    outline: none;
    color: #FD5000;
}

.verification-input::placeholder {
    color: #000000;
    opacity: 0.3;
}

.submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 11.67vw;
    background: #FD5000;
    border-radius: 1.67vw;
    font-weight: 500;
    font-size: 1.25vw;
    color: #fff;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-align: center;
    border: none;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, button, input{
    letter-spacing: 0.25px;
}

.submit-btn:hover {
    font-size: 1.35vw;
}

/* Instructions Section */
.instructions-section {
    padding-top: 1.35vw;
    padding-bottom: 4.16vw;
}

.instructions-container {
    max-width: 62.5vw;
    margin: 0 auto;
    padding: 0;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(26.04vw, 1fr));
    gap: 2.5vw;
    margin-top: 2.5vw;
}

.method-card {
    background: white;
    border-radius: 1.04vw;
    overflow: hidden;
    box-shadow: 0 0.52vw 1.56vw rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.method-card:hover {
    transform: translateY(-0.26vw);
}

.method-video {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.method-content {
    padding: 1.66vw;
}

.method-title {
    font-weight: 900;
    font-size: 1.58vw;
    color: #FD5000;
    line-height: 1.2;
    margin-top: 0.5vw;
    margin-bottom: 1.2vw;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 0.83vw;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 0.42vw;
}

.step-label {
    display: inline-block;
    color: white;
    padding: 0.42vw 0.83vw;
    border-radius: 1.67vw;
    font-size: 1.14vw;
    text-transform: uppercase;
    width: fit-content;
    background: linear-gradient(137deg, #FD5000, #FF7917);
}

.step-text {
    margin: 0;
    font-weight: 400;
    font-size: 1vw;
    color: #000000;
    line-height: 1.2;
    margin: 0.2vw 0;
}

.form-message{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #000000d9;
    width: 100%;
    height: 100%;
}

.form-message-inbox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 39vw;
    padding-top: 6.66vw;
    padding-bottom: 3.08vw;
    border-radius: 0.78vw;
}
.form-message-icon{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
.form-message-icon img{
    width: 6.35vw;
}
.form-message-content{
    color: #000000;
    line-height: 1.5;
    font-size: 1.15vw;
    margin-bottom: 2.92vw;
    padding: 0 5vw;
}
.form-message-btn-container{
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 1.3vw;
}
.form-message-btn{
    width: 10.69vw;
    display: block;
    margin: 0;
    background: #FD5000;
    color: #fff;
    text-align: center;
    padding: 0.8vw 0;
    border-radius: 2.08vw;
    cursor: pointer;
}
/* Responsive Design */

@media (max-width: 1200px) {
    section {
        margin: 0 4vw;
    }
    .verification-hero{
        margin: 0;
    }
    /* .verification-form-section{
        padding: 6.09vw 3rem;
    } */
    .verification-form-section {
        padding: 6.67vw 0;
    }
    .instructions-section{
        margin-bottom: 4vw;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 5.21vw;
    }
    
    .section-title {
        font-size: 4.17vw;
    }
    
    .input-group {
        flex-direction: column;
        gap: 2.08vw;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 8vw;
    }
    
    .verification-form-section,
    .instructions-section {
        padding: 8.33vw 0;
    }
    .form-message-inbox{
        width: 91.46vw;
        padding-top: 15.72vw;
        padding-bottom: 5.19vw;
    }
    .form-message-icon img{
        width: 18.12vw;
    }
    .form-message-content{
        font-size: 3.72vw;
        margin-bottom: 6.14vw;
        padding: 0 6.66vw;
        line-height: 1.42;
    }
    .form-message-btn{
        font-size: 3.64vw;
        padding: 1.63vw 0;
        width: 29.32vw;
        border-radius: 4.09vw;
    }
    .verification-hero{
        height: 140vw;
    }

    .verification-hero-content{
        top: 23.46vw;
        left: 0;
        transform: none;
        text-align: center;
        width: 100%;
    }
    .hero-logo img{
        width: 31.73vw;
        margin-bottom: 5.86vw;
    }
    .hero-title{
        font-size: 7.2vw;
        width: 100%;
    }

    .verification-form-section, .instructions-section{
        padding-top: 20.13vw;
        padding-bottom: 0;
        margin: 0 4.62vw;
    }

    .section-title{
        font-size: 6.4vw;
        margin-bottom: 11.06vw;    
    }
    .product-showcase{
        margin: 0 0 8.66vw 0;
    }
    .product-image{
        width: 49.33vw;
    }
    .verify-form{
        width: 100%;
        height: 8.13vw;
        border-radius: 4.1vw;
        max-width: 100%;
    }
    .verification-input{
        font-size: 2.93vw;
        padding-left: 5.06vw;
    }
    .submit-btn{
        font-size: 3.73vw;
        width: 24.53vw;
        border-radius: 13vw;
    }
    .instructions-section{
        padding-top: 20vw;
        padding-bottom: 12.66vw;
    }
    .method-content{
        padding: 3vw;
    }
    .method-title{
        font-size: 4.8vw;
        margin-top: 1vw;
        margin-bottom: 3vw;
    }
    .step-text{
        font-size: 3.72vw;
        line-height: 1.3;
    }
    .instructions-container{
        max-width: 100%;
    }

    .step-label{
        width: 12vw;
        height: 5.33vw;
        border-radius: 3vw;
        align-items: center;
        display: flex;
        justify-content: center;
        font-size: 2.93vw;
    }
}

