/* ==========================================================================
   The Crash Claim — Complete CSS
   ========================================================================== */

:root {
    --navy: #0b2947;
    --navy-dark: #071b30;
    --blue: #1461a6;
    --gold: #f4a428;
    --gold-dark: #d98c12;
    --gray-50: #f7f8fa;
    --gray-100: #eef1f5;
    --gray-300: #d7dde5;
    --gray-600: #5b6b7c;
    --text: #1c2b3a;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 20px 50px rgba(11, 41, 71, .12);
    --max-width: 1180px;
    --font-head: 'Poppins', Arial, sans-serif;
    --font-body: 'Roboto', Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    background: var(--navy);
    color: #fff;
    padding: 10px 16px;
    z-index: 1000;
}

.skip-link:focus {
    left: 12px;
    top: 12px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    color: var(--navy);
    line-height: 1.25;
    margin: 0 0 16px;
}

/* ==========================================================================
   TRANSPARENT HEADER
   ========================================================================== */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: transparent;
}

.site-header.transparent {
    background: transparent;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
}

.logo-text:hover {
    text-decoration: none;
}

.header-phone .phone-link {
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.header-phone .phone-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    text-decoration: none;
}

.header-phone .phone-link i {
    color: var(--gold);
    font-size: 1rem;
}

/* ==========================================================================
   HERO WITH BACKGROUND IMAGE - FIXED LAYOUT
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: url('a20c6a3b-slip-fall-section01-bg.webp') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(11, 41, 71, 0.92) 0%, rgba(7, 27, 48, 0.88) 100%); */
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Side */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 480px;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero-text h1 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}

.hero-text h1 br {
    display: block;
}

.hero-text .lead {
    color: #cfd9e6;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 460px;
}

/* Right Side - Form */
.hero-right {
    width: 100%;
    max-width: 440px;
    justify-self: end;
}

/* ============================================================
   FORM CARD - TRANSPARENT WITH #A5A6AB COLOR
   ============================================================ */

.form-card {
    background: rgba(165, 166, 171, 0.75);
    border-radius: var(--radius);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    padding: 28px 30px 24px;
    border: none;

}

.form-header {
    text-align: center;
    margin-bottom: 18px;
}

.form-badge {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 900;
    color: black;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.form-card h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #74A50A;
    margin-bottom: 2px;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.form-card .form-sub {
    font-size: 0.85rem;
    color: #35353D;
    font-weight: 900;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
}

.field {
    display: flex;
    flex-direction: column;
}

.field.full-width {
    grid-column: 1 / -1;
}

.field label {
    font-size: 0.7rem;
    font-weight: 700;
    color: black;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.field label .required {
    color: #e73f3f;
    font-weight: 700;
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid black;

    font-family: var(--font-body);
    font-size: 0.85rem;
    background: #FFFFFF;
    color: black;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.field input::placeholder,
.field select::placeholder {
    color: rgba(92, 86, 86, 0.55);
    font-size: 0.82rem;
}



.field select {
    color: rgba(92, 86, 86, 0.55);
    background: #FFFFFF;
}

.field select option {
    color: rgba(92, 86, 86, 0.55);
    background: #fff;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 2px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    color: #fff;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.radio-group input {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
}

.consent-text {
    font-size: 0.71rem;
    color: black;
    line-height: 1.6;
    margin: 4px 0 2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.consent-text a {
    color: rgba(197, 23, 23, 0.932);
    text-decoration: underline;
}

.consent-text a:hover {
    color: #fff;
}

.consent-text.full-width {
    grid-column: 1 / -1;
}

.btn-submit {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #231603;
    font-family: var(--font-head);
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
    text-transform: uppercase;
}

.btn-submit.full-width {
    grid-column: 1 / -1;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(217, 140, 18, .35);
}

.form-message {
    display: none;
    background: rgba(232, 246, 236, 0.9);
    border: 1px solid #b6e3c3;
    color: #1c6b32;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 10px 14px;
    border-radius: 6px;
    text-align: center;
}

.form-message.full-width {
    grid-column: 1 / -1;
}

.form-message.is-visible {
    display: block;
}

/* ==========================================================================
   RESPONSIVE - KEEP 2 COLUMNS ON LAPTOP
   ========================================================================== */

/* Default: 2 columns for screens larger than 1024px */
@media (min-width: 1025px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-left {
        padding-top: 10px;
    }

    .hero-right {
        max-width: 440px;
    }
}

/* Medium laptop screens (1024px - 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
    .hero-grid {
        gap: 30px;
    }

    .hero-right {
        max-width: 400px;
    }

    .hero-image-wrapper {
        max-width: 400px;
    }

    .hero-image {
        max-height: 320px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .form-card {
        padding: 24px 24px 20px;
    }

    .form-grid {
        gap: 10px 14px;
    }

    .field input[type="text"],
    .field input[type="tel"],
    .field input[type="email"],
    .field select {
        padding: 7px 10px;
        font-size: 0.8rem;
    }
}

/* Small laptop screens (1367px - 1600px) */
@media (min-width: 1367px) and (max-width: 1600px) {
    .hero-grid {
        gap: 40px;
    }

    .hero-right {
        max-width: 420px;
    }
}

/* ==========================================================================
   RESPONSIVE - SWITCH TO COLUMN ON TABLET AND MOBILE
   ========================================================================== */

/* Tablet - switch to 1 column at 1024px and below */
@media (max-width: 1022px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        align-items: center;
        text-align: center;
        padding-top: 0;
    }

    .hero-text .lead {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-right {
        justify-self: center;
        max-width: 500px;
    }

    .hero-image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-image {
        max-height: 300px;
    }

    .hero-text h1 br {
        display: inline;
    }

    .hero-text .lead br {
        display: none;
    }

    .feelings-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feelings-list li {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 12px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .header-phone .phone-link {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 60px;
    }

    .hero-right {
        max-width: 100%;
    }

    .form-card {
        padding: 24px 18px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .field.full-width {
        grid-column: 1 / -1;
    }

    .form-card h2 {
        font-size: 1.3rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .radio-group {
        gap: 16px;
    }

    .hero-image-wrapper {
        max-width: 280px;
    }

    .hero-image {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 130px 0 40px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text .lead {
        font-size: 0.95rem;
    }

    .form-card {
        padding: 18px 14px;
    }

    .form-badge {
        font-size: 0.65rem;
    }

    .form-card h2 {
        font-size: 1.1rem;
    }

    .phone-cta a {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   TRUST BADGES
   ========================================================================== */

.trust-row {
    padding: 60px 0 70px;
    background: var(--gray-50);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.trust-card {
    text-align: center;
    padding: 32px 24px;
    background: #fff;
    border: 1px solid #9696ac;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.trust-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.trust-card h3 {
    color: black;
    font-size: 1.15rem;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 12px;
}

.trust-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #74A50A;
    border-radius: 2px;
}
.trust-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}
/* ==========================================================================
   FEELINGS SECTION - EXACT MATCH TO IMAGE
   ========================================================================== */

.feelings-section {
    background: url('injured-man-on-sofa.webp') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 70px 0;
    position: relative;
}

.feelings-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1d1d1df5;
    z-index: 1;
}

.feelings-grid {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.feelings-content {
    max-width: 900px;
    text-align: center;
    width: 100%;
}

.feelings-content h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* LIST ITEMS IN ROW (HORIZONTAL) */
.feelings-list {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feelings-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cfd9e6;
    font-size: 1.05rem;
    font-weight: 400;
}

.feelings-list li::before {
    content: "—";
    color:  #74A50A;
    font-weight: 700;
    font-size: 1.2rem;
}

.feelings-tagline {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 30px;
}

.btn-outline {
    display: inline-block;
    border: 2px solid  #74A50A;
    color: #74A50A;
    font-family: var(--font-head);
    font-weight: 700;
    padding: 14px 40px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}



.phone-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    
    margin-top: 5px;
}

.phone-icon {
    font-size: 1.2rem;
    color: var(--gold);
}

.phone-number {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-size: 27px;
    font-weight: 700;
    color:  #74A50A;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.phone-number:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* ==========================================================================
   RESPONSIVE - FEELINGS SECTION
   ========================================================================== */

@media (max-width: 768px) {
    .feelings-section {
        padding: 50px 0;
    }

    .feelings-content h3 {
        font-size: 1.6rem;
    }

    .feelings-list {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .feelings-list li {
        font-size: 1rem;
    }

    .feelings-tagline {
        font-size: 1.1rem;
    }

    .btn-outline {
        padding: 12px 30px;
        font-size: 0.75rem;
    }

    .phone-number {
        font-size: 1.5rem;
    }
    
    .phone-icon {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .feelings-content h3 {
        font-size: 1.3rem;
    }

    .feelings-list li {
        font-size: 0.9rem;
    }

    .feelings-tagline {
        font-size: 1rem;
    }

    .btn-outline {
        padding: 10px 24px;
        font-size: 0.7rem;
    }

    .phone-number {
        font-size: 1.3rem;
    }
    
    .phone-icon {
        font-size: 1.1rem;
    }
}
/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    padding: 46px 0 30px;
}

.footer-inner {
    text-align: center;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 10px;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    display: inline-block;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-bottom: 18px;
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    text-decoration: none;
}

.footer-copy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 22px;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 980px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid var(--gray-300);
}

/* ==========================================================================
   RESPONSIVE - FOOTER
   ========================================================================== */

@media (max-width: 768px) {
    .footer-links {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo-img {
        height: 40px;
    }
}
/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1022px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        align-items: center;
        text-align: center;
        padding-top: 0;
    }

    .hero-text .lead {
        max-width: 100%;
    }

    .hero-right {
        justify-self: center;
    }

    .hero-image-wrapper {
        max-width: 320px;
    }

    .hero-text h1 br {
        display: inline;
    }

    .hero-text .lead br {
        display: none;
    }

    .feelings-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feelings-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 12px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .header-phone .phone-link {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 60px;
    }

    .form-card {
        padding: 24px 18px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .field.full-width {
        grid-column: 1 / -1;
    }

    .form-card h2 {
        font-size: 1.3rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .radio-group {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 130px 0 40px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text .lead {
        font-size: 0.95rem;
    }

    .form-card {
        padding: 18px 14px;
    }

    .form-badge {
        font-size: 0.65rem;
    }

    .form-card h2 {
        font-size: 1.1rem;
    }

    .phone-cta a {
        font-size: 1.4rem;
    }
}



/* ===== SMS OTP STYLES ===== */
/* .sms-otp-field {
    margin: 16px 0;
} */

.sms-otp-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
}

.sms-otp-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.sms-otp-row input {
    flex: 1;
    min-width: 0;
    padding: 9px 10px;
    border: 1px solid #d1d5db;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sms-otp-row input:focus {
    outline: none;
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.sms-otp-row input:disabled,
.sms-otp-row input[readonly] {
    background-color: #f3f4f6;
    cursor: not-allowed;
}

.sms-otp-row button {
    padding: 9px 10px;
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    min-width: 100px;
}

.sms-otp-row button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
}

.sms-otp-row button#sendPhoneOtpBtn {
    background: #1d4ed8;
    color: #ffffff;
}

.sms-otp-row button#sendPhoneOtpBtn:hover:not(:disabled) {
    background: #1e40af;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.sms-otp-row button#verifyPhoneOtpBtn {
    background: #22c55e;
    color: #ffffff;
}

.sms-otp-row button#verifyPhoneOtpBtn:hover:not(:disabled) {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.sms-otp-status {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.4;
    color: #6b7280;
    min-height: 20px;
    transition: color 0.3s;
}

.sms-otp-status.success {
    color: #15803d;
}

.sms-otp-status.error {
    color: #b91c1c;
}

.sms-otp-status.info {
    color: #6b7280;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 520px) {
    .sms-otp-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sms-otp-row button {
        width: 100%;
        padding: 12px 16px;
        min-width: unset;
    }
    
    .sms-otp-row input {
        width: 100%;
    }
}
