
/* ---- Base & hero ---- */
.freesample-index-index .fs-hero {
    background: linear-gradient(180deg, #1565c0 0%, #1e88e5 100%);
    color: #fff;
    padding: 48px 16px 64px;
    text-align: center;
}
.freesample-index-index .column.main {
    margin-top: 0;
}
.freesample-index-index .page-title-wrapper .page-title {
    color: #fff !important;
    text-transform: capitalize;
}
.page-title-wrap {
    margin-bottom: 0;
    background: linear-gradient(180deg, #1565c0 0%, #1e88e5 100%);
    position: relative;
    color: #fff !important;
}
.fs-hero__inner {
    max-width: 100%;
    margin: 0 auto;
}
.fs-hero__title {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.fs-hero__desc {
    margin: 0 auto;
    max-width: 100%;
    opacity: 0.92;
    font-size: 16px;
    line-height: 1.6;
}

/* ---- Feature cards ---- */
.fs-features {
    max-width: 1650px;
    margin: 40px auto 24px;
    padding: 0 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.fs-feature {
    background: #fff;
    border: 1px solid #e5e8ef;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(21, 101, 192, 0.12);
    padding: 18px 16px;
    text-align: center;
}
.fs-feature__icon {
    width: 44px; height: 44px;
    margin: 4px auto 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #e3f2fd 0%, #bbdefb 60%, #90caf9 100%);
    position: relative;
}
.fs-feature__icon::after {
    /* default quick-response icon: a "bolt" shape using CSS */
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 16px; height: 16px;
    transform: translate(-50%, -50%) rotate(-20deg);
    background:
      linear-gradient(135deg, #1565c0 0%, #1e88e5 60%);
    clip-path: polygon(40% 0, 100% 40%, 60% 40%, 100% 100%, 0 60%, 40% 60%);
}
.fs-feature__icon--price::after {
    /* price tag icon */
    clip-path: polygon(10% 25%, 55% 0, 90% 35%, 35% 60%, 10% 45%);
}
.fs-feature__icon--quality::after {
    /* shield icon */
    clip-path: polygon(50% 0, 85% 20%, 85% 60%, 50% 100%, 15% 60%, 15% 20%);
}
.fs-feature__title {
    font-weight: 700;
    margin-bottom: 4px;
    color: #0f172a;
    font-size: 18px;
}
.fs-feature__desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

/* ---- Form card ---- */
.freesample-form-wrap {
    max-width: 900px;
    margin: 60px auto 24px;
    padding: 0 0px;
    border: 1px solid #b6cef4;
    border-radius: 10px !important;
}
.fs-card {
    background: #fff;
    border: 1px solid #e5e8ef;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(21, 101, 192, 0.12);
    padding: 22px;
}
.fs-card-header h2 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}
.fs-sub {
    color: #64748b;
    margin: 0 0 18px;
    font-size: 14px;
}

/* ---- Form grid & controls ---- */
.fs-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0f172a;
}
.req { color: #d32f2f; }

.fs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 16px;
}
.fs-col-1 { grid-column: 1 / -1; }

.fs-form input[type="text"],
.fs-form input[type="email"],
.fs-form input[type="number"],
.fs-form select,
.fs-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0px 14px;
    font-size: 14px;
    outline: none;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.fs-form textarea {
    min-height: 96px;
}

.fs-form input::placeholder,
.fs-form textarea::placeholder {
    color: #94a3b8;
}

/* Focus ring to match screenshot */
.fs-form input:focus,
.fs-form select:focus,
.fs-form textarea:focus {
    border-color: #1e88e5;
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.16);
    background: #fff;
}

/* ---- Custom select arrow ---- */
.fs-select {
    position: relative;
}
.fs-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    padding-right: 40px;
}
.fs-select::after {
    content: '';
    position: absolute;
    right: 14px; top: 50%;
    width: 0; height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid #334155;
    transform: translateY(-50%);
    pointer-events: none;
}

/* ---- Submit button ---- */
.fs-actions { margin-top: 22px; }
.fs-actions .action.primary {
    background: #1e88e5;
    border: none;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: .2px;
    transition: background .15s ease, transform .06s ease;
}
.fs-actions .action.primary:hover { background: #1565c0; }
.fs-actions .action.primary:active { transform: translateY(1px); }

/* ---- Responsive ---- */
@media (max-width: 980px) {
    .fs-features { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .fs-grid { grid-template-columns: 1fr; }
    .fs-card { padding: 18px; }
    .fs-hero { padding: 36px 12px 52px; }
}
``

