*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Urbanist', sans-serif;
}
main{
    background: white;
    background-image: url(../assets/giftcardbg-w.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: cover;
    padding-bottom: 60px;
}
@media screen and (max-width:1600px) {
    main{ background-size: 200%; }
}
@media screen and (max-width:950px) {
    main{ background-size: 300%; }
}
@media screen and (max-width:520px) {
    main{ background-size: 500%; }
}
html{
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

/* ── Hero ── */
.quote-hero {
    padding: 130px 50px 60px;
    text-align: center;
    color: #fff;
}
.quote-hero img {
    max-width: 260px;
    margin: 0 auto 32px;
    display: block;
}
.quote-hero h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.quote-hero h1 svg { flex-shrink: 0; }
.quote-hero p {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    max-width: 600px;
    margin: 0 auto 24px;
    color: #95E5FF;
}
.quote-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 16px;
}
.quote-badges li {
    background-color: #ffffff18;
    border: 1px solid #95E5FF60;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #95E5FF;
}

/* ── Form container ── */
.formcontainer {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: -20px;
}
form {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 60px 70px;
    max-width: 760px;
    margin: 0 auto;
    font-family: "Urbanist", sans-serif;
    border-radius: 30px;
    box-shadow: 0 8px 40px rgba(0,61,90,0.12);
}
.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #003D5A;
    margin-bottom: 32px;
    text-align: center;
}
fieldset {
    border: none;
    margin-bottom: 8px;
}
fieldset legend {
    font-size: 18px;
    font-weight: 700;
    color: #003D5A;
    padding-top: 28px;
    padding-bottom: 8px;
    width: 100%;
    border-bottom: 2px solid #00AEEF40;
    margin-bottom: 16px;
}
fieldset div.fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
select,
textarea {
    width: 100%;
    border: 1px solid #00000040;
    border-radius: 8px;
    padding: 11px 14px;
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    border-color: #00AEEF;
}
input[type="file"] {
    width: 100%;
    font-family: 'Urbanist', sans-serif;
    font-size: 13px;
    padding: 8px 0;
    color: #555;
}
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23003D5A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
textarea {
    resize: vertical;
    min-height: 100px;
}

/* ── Yes/No groups ── */
.yn-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 4px;
}
.yn-label {
    font-size: 14px;
    font-weight: 600;
    color: #003D5A;
}
.yn-options {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.yn-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #333;
}
.yn-options input[type="radio"] {
    width: 16px;
    height: 16px;
    padding: 0;
    margin: 0;
    accent-color: #003D5A;
    cursor: pointer;
    flex-shrink: 0;
}

/* ── Conditional sections ── */
.conditional-section {
    display: none;
    background-color: #f0f9ff;
    border: 1px solid #95E5FF80;
    border-radius: 12px;
    padding: 20px;
    margin-top: 12px;
    margin-bottom: 4px;
}
.conditional-section .sub-legend {
    font-size: 13px;
    font-weight: 700;
    color: #003D5A;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.conditional-section .fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Form notes ── */
.form-note {
    font-style: italic;
    color: #005AA9;
    font-size: 13px;
    margin-bottom: 14px;
    font-weight: 500;
    line-height: 150%;
}
.field-label {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 2px;
}

/* ── Submit button ── */
.submit-wrap {
    margin-top: 32px;
    text-align: center;
}
form button[type="submit"] {
    display: inline-flex;
    background-color: #0cc0df;
    color: #082F42;
    border: none;
    padding: 16px 48px;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    font-family: "Urbanist", sans-serif;
    font-weight: 700;
    line-height: 130%;
    transition: background-color 0.3s;
}
form button[type="submit"]:hover {
    background-color: #0ab1ce;
}

/* ── Disclaimer area ── */
.disclaimer-area {
    position: relative;
    width: 100%;
    max-width: 760px;
    margin: 32px auto 0;
    padding: 0 20px;
    text-align: center;
}
.disclaimer-area ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.disclaimer-area li {
    font-size: 12px;
    font-style: italic;
    color: #fff;
    font-weight: 500;
}

/* ── Footer ── */
footer{
    position: relative;
    width: 100%;
    max-width: 9990px;
    margin: auto;
    height: auto;
    background-color: #003D5A;
    color: #95E5FF;
}
.footergrid{
    display: flex;
    width: 100%;
    max-width: 1440px;
    margin: auto;
    justify-content: space-between;
    padding: 50px;
}
.footermenu{
    display: flex;
    justify-content: center;
    width: auto;
    height: 90px;
}
.footermenu ul li a {
    text-decoration: none;
    color: #95E5FF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}
.footermenu ul li a:hover {
    color: #0cbfdfc5;
    transition: 0.5s;
}
.footermenu ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 70px;
}
.footerimglogo{
    display: flex;
    justify-content: center;
    width: auto;
    padding: 0;
}
.footerimglogo img{
    display: block;
    margin: auto;
    margin-top: 0;
    width: 248px;
}
.adress{
    display: flex;
    justify-content: right;
    width: auto;
}
.adress p{
    width: auto;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
}
.footersocials{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
}
.footersocials p{
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}
.footersocials ul {
    list-style: none;
    display: flex;
    gap: 16px;
    margin-top: 16px;
}
.footersocials svg{
    fill: #95E5FF;
}
.footersocials svg:hover{
    fill: #fff;
    transition: 0.2s;
}
.rights{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: auto;
    padding: 20px 50px;
    border-top: 1px solid #95E5FF30;
    font-size: 12px;
    font-weight: 500;
    color: #95E5FF80;
}
.rights ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
.rights ul li a {
    text-decoration: none;
    color: #95E5FF80;
    font-size: 12px;
}
.rights ul li a:hover {
    color: #95E5FF;
}

/* ── Responsive ── */
@media screen and (max-width: 900px) {
    .quote-hero { padding: 120px 24px 48px; }
    .quote-hero h1 { font-size: 28px; }
    .quote-hero p { font-size: 16px; }
    form { padding: 32px 24px; }
    .footergrid{
        flex-direction: column;
        align-items: center;
        gap: 32px;
        text-align: center;
    }
    .footermenu{ height: auto; }
    .footermenu ul{ height: auto; gap: 8px; }
    .rights{ flex-direction: column; gap: 12px; text-align: center; }
}
@media screen and (max-width: 600px) {
    .quote-badges{ gap: 10px; }
    .quote-badges li{ font-size: 12px; padding: 6px 14px; }
    form{ border-radius: 16px; }
}
