.survey-page{
    padding:40px 0 60px;
    background:#f8fafc;
}

/* ==================================================
   SURVEY SECTION (Homepage)
================================================== */

.survey-links-section{
    background:var(--survey-bg);
    padding:50px 0;
}

/* ==================================================
   SECTION HEADER
================================================== */

.section-header{
    position:relative;
    margin-bottom:30px;
}

.section-header::after{
    content:'';
    position:absolute;
    top:50%;
    left:0;
    right:0;
    height:3px;
    background:var(--survey-primary);
    transform:translateY(-50%);
}

.section-label{
    position:relative;
    z-index:2;
    display:inline-flex;
    align-items:center;
    padding:12px 28px;
    background:var(--survey-primary);
    color:#fff;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
    clip-path:polygon(
        0 0,
        92% 0,
        100% 100%,
        0 100%
    );
}

/* ==================================================
   SLIDER
================================================== */

.survey-slider{
    width:100%;
    overflow:hidden;
    position:relative;
    padding:10px 0;
}

.survey-track{
    display:flex;
    align-items:center;
    gap:20px;
}

.static-track{
    justify-content:center;
    flex-wrap:wrap;
}

.auto-scroll{
    width:max-content;
    flex-wrap:nowrap;
    animation:surveyScroll 25s linear infinite;
}

.survey-slider:hover .auto-scroll{
    animation-play-state:paused;
}

@keyframes surveyScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* ==================================================
   ITEM
================================================== */

.survey-item{
    flex-shrink:0;
    width:280px;
    min-height:120px;
    padding:22px;
    border:1px solid var(--survey-border);
    border-radius:14px;
    background:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    text-decoration:none;
    transition:all .3s ease;
}

.survey-item:hover{
    transform:translateY(-4px);
    box-shadow:var(--survey-shadow);
}

.survey-item-icon{
    width:60px;
    height:60px;
    margin-bottom:14px;
}

.survey-item-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:transform .3s ease;
}

.survey-item:hover img{
    transform:scale(1.05);
}

.survey-item-title{
    font-size:15px;
    font-weight:600;
    color:var(--survey-text);
    line-height:1.5;
}


/* =========================================
   HERO
========================================= */

/* ==========================================
   HERO (SERAGAM GLOBAL)
========================================== */

.survey-hero{
    background:linear-gradient(
        135deg,
        var(--primary),
        #1e40af
    );

    border-radius:24px;
    padding:50px;
    color:#fff;
    margin-bottom:30px;

    overflow:hidden;
    position:relative;
}

.survey-hero::before{
    content:'';

    position:absolute;

    right:-80px;
    top:-80px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:rgba(255,255,255,.08);
}

.hero-content{
    max-width:700px;
    position:relative;
    z-index:2;
}

.hero-label{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:8px 16px;

    border-radius:999px;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-size:13px;
    font-weight:600;

    margin-bottom:18px;
}

.hero-content h1{
    font-size:42px;
    font-weight:700;
    color:#fff;
    margin-bottom:14px;
}

.hero-content p{
    margin:0;
    color:rgba(255,255,255,.92);

    font-size:16px;
    line-height:1.8;
}

/* =========================================
   SELECTOR
========================================= */

.survey-selector-card{
    max-width:800px;
    margin:0 auto 40px;
    background:#fff;
    border:1px solid var(--border);
    padding:24px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.survey-label{
    display:block;
    margin-bottom:12px;
    font-weight:700;
}

.survey-dropdown{
    width:100%;
    height:56px;
    border:1px solid var(--border);
    border-radius:14px;
    padding:0 18px;
    font-size:15px;
    outline:none;
}

.survey-dropdown:focus{
    border-color:var(--primary);
}

/* =========================================
   FRAME
========================================= */

.survey-frame-wrapper{
    max-width:1000px;
    margin:0 auto;
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.survey-frame-header{
    padding:28px;
    text-align:center;
    border-bottom:1px solid var(--border);
}

.survey-frame-header h2{
    margin-bottom:10px;
    font-size:24px;
    font-weight:700;
}

.survey-frame-header p{
    color:var(--muted);
    line-height:1.8;
}

.survey-frame-body{
    padding:20px;
    display:flex;
    justify-content:center;
}

.survey-frame-body iframe{
    width:100%;
    height:900px;
    border:none;
    border-radius:14px;
}

.survey-empty{
    text-align:center;
    padding:50px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .survey-hero{
        padding:50px 25px;
    }

    .survey-hero h1{
        font-size:28px;
    }

    .survey-frame-body iframe{
        height:700px;
    }
}