
/* =========================
   HERO
========================= */

.quote-hero{
    background:linear-gradient(rgba(11,31,58,.85),rgba(11,31,58,.85)),url("/static/images/hero.jpg") center/cover;
    
    color:white;
    text-align:center;

    padding:100px 20px;
}

.quote-hero h1{
    font-size:52px;
    margin-bottom:20px;
}

.quote-hero p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
}

/* =========================
   CONTAINER
========================= */

.container{
    max-width:1300px;
    margin:auto;
    padding:70px 20px;
}

/* =========================
   GRID
========================= */

.quote-grid{
    display:grid;
    grid-template-columns:400px 1fr;
    gap:30px;
}

.card{
    background:white;
    border-radius:12px;
    padding:35px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

/* =========================
   INFO PANEL
========================= */

.info-card h2{
    color:#0b1f3a;
    margin-bottom:20px;
}

.info-card p{
    color:#666;
    line-height:1.8;
}

.feature{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.feature-icon{
    min-width:45px;
    height:45px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;
    background:#ff7a00;
    color:white;
    font-weight:bold;
}

/* =========================
   FORM
========================= */

.form-card h2{
    color:#0b1f3a;
    margin-bottom:25px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

input,
select,
textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:8px;
    margin-bottom:15px;
    font-size:15px;
}

input:focus,
select:focus,
textarea:focus{
    outline:none;
    border-color:#ff7a00;
}

textarea{
    resize:vertical;
    min-height:140px;
}

.submit-btn{
    width:100%;
    border:none;
    background:#ff7a00;
    color:white;
    padding:15px;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

/* =========================
   PROCESS
========================= */

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    color:#0b1f3a;
    font-size:36px;
}

.process{
    margin-top:80px;
}

.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.step{
    background:white;
    padding:30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 25px rgba(0,0,0,.06);
}

.step-number{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#ff7a00;
    color:white;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:auto;
    margin-bottom:15px;

    font-size:22px;
    font-weight:bold;
}

/* =========================
   FAQ
========================= */

.faq{
    margin-top:90px;
}

.faq-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.faq-item{
    background:white;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.faq-item h3{
    color:#0b1f3a;
    margin-bottom:10px;
}

/* =========================
   CTA
========================= */

.cta{
    margin-top:90px;
    background:#0b1f3a;
    color:white;
    text-align:center;
    padding:70px 20px;
    border-radius:15px;
}

.cta h2{
    margin-bottom:15px;
    font-size:36px;
}

.cta p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.cta-btn{
    display:inline-block;
    margin-top:25px;
    text-decoration:none;
    background:#ff7a00;
    color:white;
    padding:14px 28px;
    border-radius:6px;
}