/* ==========================================
   PRECISION AXIS FRAMEWORK
   Component Styles
========================================== */

/* ==========================================
   HERO
========================================== */
.pa-slide{
    position:relative;
    height:760px;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.pa-slide__media{
    position:absolute;
    inset:0;
    display:block;
}

.pa-slide__media img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

.pa-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(7,18,40,.78) 0%, rgba(7,18,40,.38) 55%, rgba(7,18,40,.2) 100%);
}

.pa-hero{
    position:relative;
    padding:0;
    margin:0;
}

.heroSwiper{
    position:relative;
}

.pa-hero-content{
    position:absolute;
    inset:0;
    z-index:3;
    display:flex;
    align-items:center;
}

.pa-hero-content .pa-container{
    width:100%;
}

.pa-subtitle{
    display:block;
    font-size:20px;
    margin-bottom:16px;
    color:#dbeafe;
    font-weight:500;
}

.pa-hero-content h1{
    font-family:var(--heading);
    font-size:64px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:22px;
    color:#fff;
    max-width:700px;
}

.pa-hero-content p{
    font-size:20px;
    line-height:1.7;
    margin-bottom:36px;
    color:#e2e8f0;
    max-width:560px;
}

.pa-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:var(--accent);
    color:#fff;
    padding:16px 36px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.pa-btn:hover{
    background:#b91c1c;
    color:#fff;
    transform:translateY(-3px);
}


.heroSwiper .swiper-pagination{
    bottom:28px;
}


.heroSwiper .swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:rgba(255,255,255,.5);
    opacity:1;
}

.heroSwiper .swiper-pagination-bullet-active{
    background:#fff;
    transform:scale(1.2);
}

/* ==========================================
   SUB COMPANIES
========================================== */

.pa-companies{
    padding:78px 0 84px;
    background:#fff;
}

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

.pa-section-title span{
    display:block;
    color:var(--accent);
    font-size:15px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.pa-section-title h2{
    font-family:var(--heading);
    font-size:44px;
    color:var(--dark);
    font-weight:800;
    line-height:1.18;
}

.pa-company-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:20px;
}

.pa-company-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:14px;
    padding:24px 18px 20px;
    box-shadow:0 10px 24px rgba(15,23,42,.04);
    transition:var(--transition);
    min-height:260px;
}

.pa-company-card--link{
    color:inherit;
    text-decoration:none;
}

.pa-company-card--link:hover,
.pa-company-card--link:focus-visible{
    color:inherit;
}

.pa-company-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 36px rgba(15,23,42,.1);
    border-color:#d3dce8;
}

.pa-company-card__logo{
    width:100%;
    min-height:86px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:12px;
}

.pa-company-card__logo img{
    width:auto;
    max-width:150px;
    max-height:76px;
    object-fit:contain;
}

.pa-company-card h3{
    font-family:var(--heading);
    color:var(--dark);
    font-size:15px;
    line-height:1.35;
    margin-bottom:8px;
    text-transform:uppercase;
}

.pa-company-card p{
    color:#475569;
    font-size:13px;
    line-height:1.55;
    margin:0;
    max-width:100%;
}

/* ==========================================
   FOOTER
========================================== */

.pa-footer{
    position:relative;
    margin-top:0;
    background:linear-gradient(155deg, #081a3d 0%, #0a2d66 52%, #0c3a84 100%);
    color:#d9e8ff;
    overflow:hidden;
}

.pa-footer__shape{
    position:absolute;
    border-radius:50%;
    pointer-events:none;
}

.pa-footer__shape--one{
    width:360px;
    height:360px;
    right:-140px;
    top:-90px;
    background:radial-gradient(circle, rgba(214,40,40,.24) 0%, rgba(214,40,40,0) 72%);
}

.pa-footer__shape--two{
    width:320px;
    height:320px;
    left:-120px;
    bottom:-140px;
    background:radial-gradient(circle, rgba(125,211,252,.16) 0%, rgba(125,211,252,0) 72%);
}

.pa-footer .pa-container{
    position:relative;
    z-index:2;
}

.pa-footer__top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:42px 0 32px;
    border-bottom:1px solid rgba(203,227,255,.2);
}

.pa-footer__kicker{
    display:inline-block;
    margin-bottom:10px;
    color:#fda4af;
    font-size:13px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    font-weight:700;
}

.pa-footer__top h2{
    margin:0 0 10px;
    color:#fff;
    font-family:var(--heading);
    font-size:36px;
    line-height:1.15;
}

.pa-footer__top p{
    margin:0;
    max-width:700px;
    color:#c7dcfb;
    font-size:16px;
    line-height:1.7;
}

.pa-footer__cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 24px;
    border-radius:10px;
    background:var(--accent);
    color:#fff;
    font-size:14px;
    font-weight:700;
    white-space:nowrap;
    box-shadow:0 12px 24px rgba(214,40,40,.28);
    transition:var(--transition);
}

.pa-footer__cta:hover{
    background:#b91c1c;
    color:#fff;
    transform:translateY(-2px);
}

.pa-footer__grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1.2fr;
    gap:28px;
    padding:34px 0;
}

.pa-footer__brand p{
    margin:14px 0 0;
    color:#c9defd;
    font-size:15px;
    line-height:1.75;
    max-width:420px;
}

.pa-footer__logo{
    display:inline-flex;
    align-items:center;
}

.pa-footer__logo img{
    width:auto;
    height:auto;
    max-width:200px;
    max-height:62px;
    object-fit:contain;
}

.pa-footer h3{
    margin:0 0 14px;
    color:#fff;
    font-family:var(--heading);
    font-size:20px;
    line-height:1.2;
}

.pa-footer__links,
.pa-footer__meta{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.pa-footer__links a,
.pa-footer__meta a,
.pa-footer__meta span{
    color:#d2e4ff;
    font-size:15px;
    line-height:1.6;
    transition:var(--transition);
}

.pa-footer__links a:hover,
.pa-footer__meta a:hover{
    color:#fff;
}

.pa-footer__meta li{
    display:flex;
    align-items:flex-start;
    gap:9px;
}

.pa-footer__meta i{
    margin-top:4px;
    color:#fda4af;
    font-size:14px;
}

.pa-footer__social{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:16px;
}

.pa-footer__social a{
    width:36px;
    height:36px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.12);
    color:#fff;
    transition:var(--transition);
}

.pa-footer__social a:hover{
    background:var(--accent);
    transform:translateY(-2px);
}

.pa-footer__bottom{
    padding:18px 0 26px;
    border-top:1px solid rgba(203,227,255,.2);
}

.pa-footer__bottom .container,
.pa-footer__bottom .row{
    height:100%;
}

.pa-footer__bottom .bottom-left,
.pa-footer__bottom .bottom-right{
    display:flex;
    align-items:center;
    min-height:100%;
}

.pa-footer__bottom .bottom-right{
    justify-content:flex-end;
    text-align:right;
}

.pa-footer__bottom .widget{
    margin:0;
}

.pa-footer__bottom .textwidget p{
    margin:0;
    color:#b6cff5;
    font-size:13px;
    line-height:1.6;
}

.pa-footer__bottom .textwidget a{
    color:#d2e4ff;
}

.pa-footer__bottom .textwidget a:hover{
    color:#fff;
}

.pa-footer--compact{
    background:linear-gradient(155deg, #0a234f 0%, #0a2d66 100%);
}

.pa-footer--compact .pa-footer__shape{
    opacity:.55;
}

.pa-footer--compact .pa-footer__grid{
    grid-template-columns:1.45fr 1fr 1.2fr;
    padding:28px 0;
}

.pa-footer--compact .pa-footer__brand p{
    margin-top:10px;
    max-width:460px;
}

.pa-footer--compact .pa-footer__bottom{
    padding:14px 0 20px;
}

.pa-back-to-top{
    position:fixed;
    right:24px;
    bottom:24px;
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(155deg, #0a2d66 0%, #0c3a84 100%);
    color:#fff;
    box-shadow:0 12px 24px rgba(10,45,102,.34);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(12px);
    transition:var(--transition);
    z-index:1100;
}

.pa-back-to-top i{
    font-size:18px;
    line-height:1;
}

.pa-back-to-top:hover{
    background:linear-gradient(155deg, #c81e2a 0%, #a4161f 100%);
    transform:translateY(-2px);
}

.pa-back-to-top:focus-visible{
    outline:none;
    box-shadow:0 0 0 3px rgba(255,255,255,.75), 0 0 0 6px rgba(200,30,42,.55);
}

.pa-back-to-top.is-visible{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
}
