:root{
    --primary-red:#d71920;
    --primary-blue:#0b2f55;
    --gold:#f0b84b;
    --text-light:#f8fafc;
    --muted:#d7dee8;
}

body{
    font-family:"Inter",sans-serif;
    overflow-x:hidden;
}

.hero-section{
    position:relative;
    background:
    linear-gradient(90deg, rgba(8,25,45,.88) 0%, rgba(8,25,45,.78) 48%, rgba(8,25,45,.55) 100%),
    url('https://images.unsplash.com/photo-1517935706615-2717063c2225?auto=format&fit=crop&w=1600&q=80');
    background-size:cover;
    background-position:center;
    min-height:780px;
    padding:90px 0 150px;
    color:#fff;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(215,25,32,.95);
    padding:12px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:.2px;
    box-shadow:0 10px 30px rgba(215,25,32,.28);
}

.hero-title{
    font-size:64px;
    line-height:1.05;
    font-weight:800;
    margin:28px 0 20px;
    max-width:720px;
}

.hero-title .accent{
    color:var(--primary-red);
    display:block;
    margin-top:8px;
}

.hero-divider{
    width:88px;
    height:4px;
    background:var(--gold);
    border-radius:999px;
    margin:18px 0 24px;
}

.hero-subtitle{
    max-width:660px;
    color:var(--muted);
    font-size:20px;
    line-height:1.8;
    margin-bottom:34px;
}

.hero-buttons .btn{
    min-width:230px;
    height:58px;
    border-radius:50px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    box-shadow:0 14px 34px rgba(0,0,0,.18);
}

.btn-primary-custom{
    background:var(--primary-red);
    border:2px solid var(--primary-red);
    color:#fff;
}

.btn-primary-custom:hover{
    background:#bf1017;
    border-color:#bf1017;
    color:#fff;
}

.btn-outline-custom{
    background:#fff;
    border:2px solid #e5e7eb;
    color:#0f172a;
}

.btn-outline-custom:hover{
    background:#f8fafc;
    color:#0f172a;
    border-color:#d1d5db;
}

.consultation-card{
    background:rgba(255,255,255,.96);
    border-radius:24px;
    padding:34px;
    box-shadow:0 30px 70px rgba(3,15,28,.25);
    color:#0f172a;
    backdrop-filter:blur(8px);
}

.consultation-card .card-header{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:18px;
}

.consultation-card .icon{
    width:64px;
    height:64px;
    border-radius:50%;
    background:#102a56;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

.consultation-card h3{
    margin:0;
    font-size:30px;
    font-weight:800;
}

.consultation-card p{
    color:#4b5563;
    margin-bottom:22px;
    line-height:1.7;
}

.feature-list{
    list-style:none;
    padding:0;
    margin:0;
}

.feature-list li{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 0;
    border-bottom:1px solid #e5e7eb;
    font-weight:600;
    color:#111827;
}

.feature-list li:last-child{
    border-bottom:none;
}

.feature-list i{
    color:var(--primary-red);
    font-size:18px;
}

.schedule-btn{
    margin-top:24px;
    width:100%;
    height:58px;
    border:none;
    border-radius:16px;
    background:var(--primary-red);
    color:#fff;
    font-size:18px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    box-shadow:0 16px 34px rgba(215,25,32,.24);
}

.schedule-btn:hover{
    background:#bf1017;
}

.licensed-note{
    margin-top:22px;
    padding-top:18px;
    border-top:1px solid #e5e7eb;
    display:flex;
    align-items:center;
    gap:12px;
    color:#374151;
    font-weight:600;
}

.licensed-note i{
    color:var(--gold);
    font-size:22px;
}

.trust-wrapper{
    position:relative;
    margin-top:-72px;
    z-index:5;
}

.trust-bar{
    background:#fff;
    border-radius:22px;
    box-shadow:0 24px 60px rgba(15,23,42,.12);
    padding:26px 18px;
}

.trust-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:8px 18px;
    height:100%;
}

.trust-item + .trust-item{
    border-left:1px solid #e5e7eb;
}

.trust-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#fff5f5;
    color:var(--primary-red);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    border:1px solid #ffd7d9;
    flex-shrink:0;
}

.trust-item h5{
    margin:0;
    font-size:24px;
    font-weight:800;
    color:#111827;
}

.trust-item p{
    margin:6px 0 0;
    color:#6b7280;
    font-size:14px;
    line-height:1.5;
}

@media (max-width: 1399px){
    .hero-title{font-size:58px;}
}

@media (max-width: 1199px){
    .hero-section{padding:80px 0 140px;}
    .hero-title{font-size:52px;}
    .consultation-card{padding:28px;}
    .trust-item + .trust-item{border-left:none;}
}

@media (max-width: 991px){
    .hero-section{
    min-height:auto;
    padding:70px 0 120px;
    text-align:center;
    }

    .hero-title{
    font-size:46px;
    margin-left:auto;
    margin-right:auto;
    }

    .hero-divider{
    margin-left:auto;
    margin-right:auto;
    }

    .hero-subtitle{
    margin-left:auto;
    margin-right:auto;
    }

    .hero-buttons{
    justify-content:center;
    }

    .consultation-card{
    margin-top:42px;
    }

.trust-wrapper{
    margin-top:-56px;
    }
}

@media (max-width: 767px){
    .hero-section{
    padding:56px 0 110px;
    }

    .hero-title{
    font-size:38px;
    }

    .hero-subtitle{
    font-size:18px;
    }

    .hero-buttons .btn{
    width:100%;
    min-width:unset;
    }

    .consultation-card h3{
    font-size:26px;
    }

    .trust-bar{
    padding:20px 14px;
    }

    .trust-item{
    padding:14px 10px;
    }
}

@media (max-width: 575px){
    .hero-title{
    font-size:34px;
    }

    .hero-badge{
    font-size:12px;
    padding:10px 16px;
    }

    .consultation-card{
    padding:24px;
    }

    .consultation-card .icon{
    width:56px;
    height:56px;
    font-size:24px;
    }
}
    
.why-us-section {
    background: #f7f9fc;
}

.why-us {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 40px;
    background: rgba(220, 38, 38, .08);
    color: #d61f26;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 14px;
}

.section-title {
    font-size: 50px;
    font-weight: 800;
    color: #102542;
    line-height: 1.2;
    margin-top: 20px;
}

.section-title span {
    color: #d61f26;
}

.why-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    transition: .35s;
    border: 1px solid #eef1f4;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.icon-box {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    background: linear-gradient(135deg, #d61f26, #ff5252);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    margin-bottom: 25px;
}

.icon-box i{
     color: white;
    font-size: 30px;
}
.why-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #102542;
    margin-bottom: 15px;
}

.why-card p {
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

.bottom-banner {
    margin-top: 80px;
    background: linear-gradient(135deg, #102542, #17375f);
    border-radius: 25px;
    padding: 50px;
    color: white;
    overflow: hidden;
    position: relative;
}

.bottom-banner::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    right: -120px;
    top: -120px;
}

.bottom-banner h3 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.bottom-banner p {
    color: rgba(255, 255, 255, .85);
    line-height: 1.9;
    margin: 0;
}

.btn-consult {
    background: #d61f26;
    color: white;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: .3s;
}

.btn-consult:hover {
    background: #b7161d;
    color: white;
    transform: translateY(-3px);
}

@media(max-width:991px) {

    .section-title {
        font-size: 38px;
    }

    .bottom-banner {
        text-align: center;
    }
}

@media(max-width:576px) {

    .why-us {
        padding: 70px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .section-description {
        font-size: 16px;
    }

    .why-card {
        padding: 28px;
    }

    .bottom-banner {
        padding: 35px;
    }

    .bottom-banner h3 {
        font-size: 28px;
    }
}
  
.expertise {
    padding: 100px 0;
    background:#f5f7fb;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(214, 31, 38, .08);
    color: #d61f26;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    color: #0f2745;
    margin-top: 20px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    transition: .35s;
    border: 1px solid #edf0f3;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #d61f26;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #d61f26, #ff5959);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    padding: 0;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #102542;
    margin-bottom: 20px;
}

.service-card p {
    color: #6b7280;
    line-height: 1.9;
    margin: 0;
}

@media(max-width:991px) {

    .section-title {
        font-size: 38px;
    }
}

@media(max-width:576px) {

    .expertise {
        padding: 70px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .section-description {
        font-size: 16px;
    }

    .service-card {
        padding: 28px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }

}

 .help-section {
    padding: 100px 0;
    background: #fff;
}

.section-badge {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: rgba(214, 31, 38, .08);
    color: #d61f26;

    padding: 10px 22px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;
}

.section-title {

    font-size: 48px;
    font-weight: 800;
    color: #102542;

    margin: 20px 0;
}

.help-image {

    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    min-height: 650px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.help-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.help-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(rgba(16, 37, 66, .15),
            rgba(16, 37, 66, .35));
}

.help-card {
    display: flex;
    gap: 20px;
    background: #fff;    
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .3s;
    border: 1px solid #edf1f4;
}

.help-card:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.icon-box {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #d61f26, #ff5b5b);
    color: #fff;
    font-size: 28px;
}

.help-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: #102542;
}

.help-card p {
    margin: 8px 0 0;
    color: #6b7280;
    line-height: 1.8;
}

@media(max-width:991px) {
    .help-image {
        min-height: 450px;
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media(max-width:576px) {
    .help-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .icon-box {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 22px;
    }

    .help-card {
        padding: 18px;
    }

}

.consultation-section {
    padding: 100px 0;
    background:#f5f7fb;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(214, 31, 38, .08);
    color: #d61f26;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #102542;
    margin-top: 20px;
    margin-bottom: 20px;
}

.section-description {
    max-width: 850px;
    margin: auto;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.9;
}

.process-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    position: relative;
    transition: .35s;
    border: 1px solid #edf0f3;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,#d61f26,#ff5757);
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.process-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #102542;
    margin-bottom: 15px;
}

.process-card p {
    color: #6b7280;
    line-height: 1.9;
    margin: 0;
}

.commitment-box {
    margin-top: 70px;
    background: linear-gradient(135deg,#102542,#17375f);
    border-radius: 30px;
    padding: 50px;
    color: white;
    position: relative;
    overflow: hidden;
}

.commitment-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
    right: -100px;
    top: -100px;
}

.commitment-box h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.commitment-box p {
    color: rgba(255,255,255,.85);
    line-height: 1.9;
    margin: 0;
}

@media(max-width:991px){
    .section-title{
        font-size:38px;
    }

    .commitment-box{
        text-align:center;
    }
}

@media(max-width:576px){
    .consultation-section{
        padding:70px 0;
    }

    .section-title{
        font-size:30px;
    }

    .process-card{
        padding:28px;
    }

    .commitment-box{
        padding:35px;
    }

    .commitment-box h3{
        font-size:28px;
    }
}


.process-section{
    padding:100px 0;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#ffe9ea;
    color:#d61f26;
    padding:10px 22px;
    border-radius:40px;
    font-weight:600;
}

.section-title{
    font-size:50px;
    font-weight:800;
    color:#0d2240;
    margin:20px 0 15px;
}

.section-text{
    max-width:760px;
    margin:auto;
    color:#6b7280;
    line-height:1.9;
}

.process-timeline{
    display:flex;
    flex-wrap: wrap;
    justify-content:space-between;
    position:relative;
    margin-top:70px;
    margin-bottom:60px;
}

.process-timeline::before{
    content:"";
    position:absolute;
    top:30px;
    left:7%;
    width:86%;
    height:3px;
    background:#d7dde6;
    z-index:0;
}

.step{
    position:relative;
    text-align:center;
    width:14.28%;
    z-index:2;
}

.step-circle{
    width:60px;
    height:60px;
    margin:auto;
    border-radius:50%;
    background:#d61f26;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
    font-size:20px;
    box-shadow:0 15px 30px rgba(214,31,38,.25);
}

.step-title{
    margin-top:15px;
    font-size:14px;
    font-weight:600;
    color:#0d2240;
    line-height:1.5;
}

.process-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    border:1px solid #edf0f3;
    box-shadow:0 20px 50px rgba(0,0,0,.05);
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-5px);
    box-shadow:0 30px 60px rgba(0,0,0,.12);
}

.process-card h4{
    font-size:24px;
    color:#0d2240;
    margin-bottom:20px;
    font-weight:700;
}

.process-card p{
    margin:0;
    color:#6b7280;
    line-height:1.9;
}

@media(max-width:991px){
    .process-timeline{
        overflow-x:auto;
        justify-content:center;
        gap:35px;
        padding-bottom:20px;
    }

    .process-timeline::before{
        display:none;
    }

    .step{
        min-width:140px;
    }

    .section-title{

        font-size:38px;
    }

}

@media(max-width:576px){
    .process-section{
        padding:70px 0;
    }

    .section-title{
        font-size:30px;
    }

    .process-card{
        padding:25px;
    }

    .step-circle{
        width:50px;
        height:50px;
        font-size:18px;
    }
}

.pricing-section{
    padding:100px 0;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#ffecec;
    color:#d91d22;
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
}

.section-title{
    font-size:48px;
    font-weight:800;
    color:#102542;
    margin:20px 0;
}

.section-description{
    color:#6b7280;
    font-size:17px;
    line-height:1.9;
}

.feature-card{
    background:#fff;
    border-radius:20px;
    padding:28px;
    height:100%;
    border:1px solid #edf0f3;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

.icon-box{
    width:65px;
    height:65px;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#d91d22,#ff5d5d);
    color:#fff;
    font-size:28px;
    margin-bottom:22px;
}

.feature-card h5{
    font-weight:700;
    color:#102542;
    margin-bottom:12px;
}

.feature-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){
    .section-title{
        font-size:36px;
    }

    .promise-box{
        text-align:center;
    }
}

@media(max-width:576px){
    .pricing-section{
        padding:70px 0;
    }

    .section-title{
        font-size:30px;
    }
}
