.page-header{
  position:relative;
  padding:0;
  min-height:600px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:transparent;
}

.page-header::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to right,
      rgba(2,6,23,0.85) 0%,
      rgba(2,6,23,0.78) 40%,
      rgba(2,6,23,0.68) 70%,
      rgba(2,6,23,0.55) 100%
    ),
    url('/assets/images/shareyourexperience.png') center/ cover no-repeat;
  animation:heroZoom 18s ease-in-out infinite alternate;
  z-index:0;
  transform-origin:center;
}

.page-header .container{
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.page-header-card{
  text-align:center;
  color:#ffffff;
  padding:120px 20px;
  max-width:900px;
  margin:0 auto;
}

@keyframes heroZoom{
  0%{ transform:scale(1) translateY(0px); }
  100%{ transform:scale(1.08) translateY(-15px); }
}

.page-header-card h1{
  font-size:60px;
  font-weight:900;
  margin:0 0 18px;
  animation:fadeUp 1.2s ease forwards;
  text-shadow:0 10px 30px rgba(0,0,0,0.45);
}

.page-header-card p{
  font-size:20px;
  max-width:760px;
  margin:0 auto;
  color:rgba(255,255,255,0.92);
  animation:fadeUp 1.6s ease forwards;
  text-shadow:0 8px 22px rgba(0,0,0,0.35);
}

@keyframes fadeUp{
  0%{ opacity:0; transform:translateY(30px); }
  100%{ opacity:1; transform:translateY(0); }
}


.surveys-section{
    padding:40px 0 80px;
    background:transparent;
}

.surveys-section .container{
    max-width:1200px;
    margin:0 auto;
}

.survey-intro{
    text-align:center;
    font-size:18px;
    color:#64748b;
    margin-bottom:40px;
}

.surveys-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

.survey-card{
    background:#ffffff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 20px 60px rgba(0,0,0,0.06);
    transition:all 0.3s ease;
    text-align:center;
}

.survey-card:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 70px rgba(0,0,0,0.08);
}

.survey-icon{
    margin-bottom:20px;
}

.survey-icon i{
    font-size:48px;

 color:  #2F6FA3 ;
}

.survey-card h3{
    font-size:22px;
    margin-bottom:14px;
    color: #334155;
    font-weight:600;
}

.survey-card p{
    font-size:16px;
    line-height:1.7;
    color:#475569;
    margin-bottom:18px;text-align:center;
}

.survey-info{
    font-size:14px;
    color:#64748b;
    margin-bottom:20px;
    display:flex;
    align-items:center;
    gap:10px;justify-content:center;
}

.survey-info i{
    color:#2F6FA3;
}

.survey-benefits{
    padding:80px 0;
    background:transparent;
}

.survey-benefits .container{
    max-width:1200px;
    margin:0 auto;
}

.survey-benefits h2{
    font-size:40px;
    margin-bottom:50px;
    color: #334155;
    font-weight:700;
    text-align:center;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

.benefit-item{
    background:#ffffff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 20px 60px rgba(0,0,0,0.06);
    transition:all 0.3s ease;
    text-align:center;
}

.benefit-item:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 70px rgba(0,0,0,0.08);
}

.benefit-item i{
    font-size:40px;
    color:#2F6FA3;
    margin-bottom:20px;
}

.benefit-item h3{
    font-size:20px;
    margin-bottom:12px;
    color: #334155;
    font-weight:600;
}

.benefit-item p{
    font-size:15px;
    color:#475569;
    line-height:1.6;
    margin:0;
}

.survey-form-section{
    padding:40px 0 90px;
    background:transparent;
}

.survey-form-section .container{
    max-width:1200px;
    margin:0 auto;
}

.survey-instructions{
    background:#ffffff;
    border-radius:20px;
    padding:28px 30px;
    box-shadow:0 20px 60px rgba(0,0,0,0.06);
    color:#475569;
    line-height:1.8;
}

.survey-instructions h2{
    font-size:24px;
    font-weight:700;
    color: #334155;
    margin:0 0 12px;
}

.survey-form{
    margin-top:22px;
}

.form-section{
    background:#ffffff;
    border-radius:20px;
    padding:32px 30px;
    box-shadow:0 20px 60px rgba(0,0,0,0.06);
    margin-bottom:18px;
}

.form-section h3{
    margin:0 0 14px;
    font-size:20px;
    font-weight:500;
    color: #334155;
}

.required{
    color:#ef4444;
    font-weight:800;
}

.form-group{
    margin-top:10px;
}

.form-group label{
    display:block;
    font-size:14px;
    font-weight:700;
    color: #334155;
    margin:0 0 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea{
    width:100%;
    max-width:100%;
    border-radius:12px;
    border:1px solid rgba(15,23,42,0.14);
    padding:12px 14px;
    font-size:15px;
    color: #334155;
    outline:none;
    transition:border-color .2s ease, box-shadow .2s ease;
    background:#ffffff;
}

.form-group textarea{
    min-height:140px;
    resize:vertical;
    line-height:1.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:rgba(37,99,235,0.55);
    box-shadow:0 0 0 4px rgba(37,99,235,0.14);
}

.checkbox-group,
.radio-group{
    margin-top:8px;
}

.checkbox-group label,
.radio-group label{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:15px;
    color:#475569;
    line-height:1.6;
    cursor:pointer;
}

.checkbox-group input[type="checkbox"],
.radio-group input[type="radio"]{
    margin-top:4px;
    accent-color:#2563eb;margin-bottom:10px;
}

.alert{
    border-radius:14px;
    padding:14px 16px;
    font-weight:600;
    margin:14px 0;
}

.alert-success{
    background:rgba(16,185,129,0.12);
    border:1px solid rgba(16,185,129,0.25);
    color:#065f46;
}

.alert-error{
    background:rgba(239,68,68,0.10);
    border:1px solid rgba(239,68,68,0.22);
    color:#7f1d1d;
}

.text-center{
    text-align:center;
}

.mt-4{
    margin-top:16px;
}

.form-actions{
    text-align:center;
    margin-top:18px;
}


@media (max-width:992px){
    .page-header-card{
        min-height:480px;
        padding:70px 26px;
    }

    .surveys-grid{
        grid-template-columns:1fr;
    }

    .benefits-grid{
        grid-template-columns:1fr 1fr;
    }

    .survey-form-section .container{
        max-width:920px;
        padding:0 16px;
    }
}

@media (max-width:576px){
    .page-header-card{
        min-height:420px;
        padding:60px 18px;
        border-radius:22px;
    }

    .page-header-card h1{
        font-size:36px;
    }

    .page-header-card p{
        font-size:16px;
    }

    .survey-benefits h2{
        font-size:28px;
        margin-bottom:34px;
    }

    .benefits-grid{
        grid-template-columns:1fr;
    }

    .survey-card{
        padding:30px;
        text-align:center;
    }

    .survey-icon{
        display:flex;
        justify-content:center;
    }

    .form-section{
        padding:26px 18px;
    }

    .survey-instructions{
        padding:22px 18px;
    }
}

@media (max-width:992px){
  .page-header{ min-height:520px; }
  .page-header-card{ padding:90px 20px; }
  .page-header-card h1{ font-size:44px; }
}

@media (max-width:576px){
  .page-header{ min-height:460px; }
  .page-header-card{ padding:70px 18px; }
  .page-header-card h1{ font-size:36px; }
  .page-header-card p{ font-size:16px; }
}

@media (prefers-reduced-motion: reduce){
  .page-header::before{ animation:none !important; }
  .page-header-card h1,
  .page-header-card p{ animation:none !important; }
}.page-header--compact{
  min-height: 180px !important;
  padding: 30px 0 !important;
}
.page-header--compact .page-header-card{
  padding: 18px 20px;
}

.submit-wrapper{
  position:relative;
}

.submit-tooltip{
  position:absolute;
  bottom:120%;
  left:50%;
  transform:translateX(-50%);
  background:#0f172a;
  color:#ffffff;
  padding:8px 12px;
  font-size:13px;
  border-radius:8px;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
  z-index:10;
}

.submit-tooltip::after{
  content:"";
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  border-width:6px;
  border-style:solid;
  border-color:#0f172a transparent transparent transparent;
}
