
/* =========================================================
   REGAL ABOUT PAGE
   Spacious / Premium / Responsive
   Works with the existing about_v2 HTML
========================================================= */

:root{
    --regal-red:#ed1c24;
    --regal-dark:#0d1013;
    --regal-dark-2:#14181c;
    --regal-text:#17191b;
    --regal-muted:#747b82;
    --regal-line:rgba(20,24,28,.14);
    --regal-white:#f7f7f4;
    --content-width:1316px;
}

/* ---------- BASE ---------- */

.about-v2{
    width:100%;
    overflow:hidden;
    background:#fff;
    color:var(--regal-text);
}

.about-v2 *{
    box-sizing:border-box;
}

.about-v2 p{
    font-size:16px;
    line-height:1.85;
    margin:0;
}

.about-wrap-v2{
    width:min(calc(100% - 80px),var(--content-width));
    margin:0 auto;
}

/* ---------- SHARED SECTION MARKER ---------- */

.section-marker-v2{
    display:flex;
    align-items:center;
    gap:18px;
    min-height:42px;
    margin-bottom:72px;
    color:#1b1e21;
}

.section-marker-v2 span{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border:1px solid var(--regal-line);
    color:var(--regal-red);
    font-size:17px;
    font-weight:700;
}

.section-marker-v2 b{
    font-size:10px;
    letter-spacing:3px;
    white-space:nowrap;
}

.section-marker-v2 i{
    width:64px;
    height:1px;
    background:var(--regal-red);
}

.section-marker-v2 small{
    margin-left:auto;
    color:#9a9da0;
    font-size:9px;
    letter-spacing:2px;
}

/* ---------- INTRO ---------- */

.about-intro-v2{
    position:relative;
    padding:125px 0 135px;
    background:
        linear-gradient(90deg,rgba(20,24,28,.045) 1px,transparent 1px),
        linear-gradient(rgba(20,24,28,.035) 1px,transparent 1px),
        #f5f5f2;
    background-size:82px 82px;
}

.about-intro-v2::after{
    content:"";
    position:absolute;
    width:480px;
    height:480px;
    right:-180px;
    top:80px;
    border:1px solid rgba(237,28,36,.10);
    border-radius:50%;
    pointer-events:none;
}

.intro-grid-v2{
    display:grid;
    grid-template-columns:minmax(0,1.08fr) minmax(400px,.72fr);
    gap:110px;
    align-items:center;
}

.intro-title-v2{
    position:relative;
    padding-left:48px;
}

.intro-title-v2::before{
    content:"";
    position:absolute;
    left:0;
    top:15px;
    width:4px;
    height:205px;
    background:var(--regal-red);
}

.eyebrow-v2{
    color:#8a9095;
    font-size:10px !important;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:22px !important;
}

.intro-title-v2 h1,
.profile-copy-v2 h2,
.story-content-v2 h2,
.services-heading-v2 h2,
.faq-grid-v2 h2,
.contact-box-v2 h2{
    font-family:"Bebas Neue",Impact,sans-serif;
    font-weight:400;
    letter-spacing:.5px;
    line-height:.88;
    margin:0;
}

.intro-title-v2 h1{
    font-size:clamp(78px,8vw,142px);
    color:#111416;
}

.intro-title-v2 h1 em,
.profile-copy-v2 h2 em,
.story-content-v2 h2 em,
.services-heading-v2 h2 em,
.faq-grid-v2 h2 em,
.contact-box-v2 h2 em{
    color:var(--regal-red);
    font-style:normal;
}

.intro-lead-v2{
    max-width:650px;
    margin-top:38px !important;
    color:#626970;
}

.intro-card-v2{
    position:relative;
    padding:42px 44px;
    min-height:300px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    background:#111518;
    color:#fff;
    border-left:5px solid var(--regal-red);
    box-shadow:0 24px 55px rgba(0,0,0,.12);
    transition:transform .4s ease,box-shadow .4s ease;
}

.intro-card-v2:hover{
    transform:translateY(-8px);
    box-shadow:0 32px 70px rgba(0,0,0,.18);
}

.card-top-v2,
.card-bottom-v2{
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.card-top-v2 span,
.card-bottom-v2{
    font-size:9px;
    letter-spacing:2px;
    color:#92999f;
}

.card-top-v2 strong{
    color:var(--regal-red);
    font-size:24px;
}

.card-rule-v2{
    width:100%;
    height:1px;
    margin:35px 0;
    background:rgba(255,255,255,.14);
}

.intro-card-v2 p{
    color:#d5d8da;
    max-width:480px;
}

/* ---------- PROFILE ---------- */

.about-profile-v2{
    padding:135px 0 145px;
    background:#f5f5f2;
}

.profile-layout-v2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:115px;
    align-items:start;
}

.profile-copy-v2{
    padding-left:48px;
    border-left:4px solid var(--regal-red);
}

.profile-copy-v2 h2{
    font-size:clamp(68px,6vw,108px);
    margin-bottom:42px;
}

.profile-copy-v2 p{
    max-width:640px;
    color:#646b71;
}

.profile-copy-v2 p + p{
    margin-top:28px;
}

.profile-data-v2{
    border-top:1px solid var(--regal-line);
}

.data-row-v2{
    display:grid;
    grid-template-columns:115px 1fr;
    column-gap:25px;
    row-gap:8px;
    padding:27px 5px;
    border-bottom:1px solid var(--regal-line);
    transition:padding-left .3s ease,background .3s ease;
}

.data-row-v2:hover{
    padding-left:18px;
    background:#fafafa;
}

.data-row-v2 > span{
    grid-row:span 2;
    color:#a0a5a9;
    font-size:9px;
    font-weight:700;
    letter-spacing:2px;
}

.data-row-v2 strong{
    font-size:15px;
    letter-spacing:.5px;
}

.data-row-v2 strong b{
    color:var(--regal-red);
}

.data-row-v2 small{
    color:#858b90;
    font-size:13px;
}

/* ---------- STORY ---------- */

.about-story-v2{
    padding:140px 0 155px;
    background:#101417;
    color:#fff;
    position:relative;
}

.about-story-v2::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.5;
    background:
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px);
    background-size:82px 82px;
    pointer-events:none;
}

.about-story-v2 .about-wrap-v2{
    position:relative;
}

.section-marker-v2.dark{
    color:#fff;
}

.section-marker-v2.dark span{
    border-color:rgba(255,255,255,.15);
}

.section-marker-v2.dark small{
    color:#70777d;
}

.story-grid-v2{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:115px;
    align-items:start;
}

.story-year-v2{
    min-height:390px;
    padding:45px 42px;
    border:1px solid rgba(255,255,255,.12);
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:rgba(255,255,255,.025);
}

.story-year-v2 span,
.story-year-v2 em{
    color:#858c92;
    font-size:10px;
    letter-spacing:3px;
    font-style:normal;
}

.story-year-v2 strong{
    display:block;
    margin:18px 0 10px;
    font-family:"Bebas Neue",Impact,sans-serif;
    font-size:clamp(90px,9vw,145px);
    line-height:.8;
    color:#fff;
}

.story-content-v2{
    max-width:760px;
}

.story-content-v2 h2{
    font-size:clamp(70px,6vw,108px);
    margin-bottom:45px;
}

.story-content-v2 p{
    color:#aeb4b9;
    max-width:720px;
}

.story-content-v2 p + p{
    margin-top:27px;
}

/* ---------- SERVICES ---------- */

.about-services-v2{
    padding:140px 0 150px;
    background:#0f1316;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.about-services-v2::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.45;
    background:
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px);
    background-size:82px 82px;
    pointer-events:none;
}

.about-services-v2 .about-wrap-v2{
    position:relative;
    z-index:1;
}

.about-services-v2 .section-marker-v2{
    color:#fff;
}

.about-services-v2 .section-marker-v2 span{
    border-color:rgba(255,255,255,.15);
}

.about-services-v2 .section-marker-v2 i{
    background:var(--regal-red);
}

.about-services-v2 .section-marker-v2 small,
.about-services-v2 .section-marker-v2 b{
    color:rgba(255,255,255,.45);
}

.services-heading-v2{
    display:grid;
    grid-template-columns:1fr .65fr;
    gap:100px;
    align-items:end;
    margin-bottom:70px;
}

.services-heading-v2 h2{
    font-size:clamp(70px,6vw,110px);
}

.services-heading-v2 p{
    color:#737a80;
    max-width:500px;
}

.services-list-v2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    border-top:1px solid var(--regal-line);
}

.services-list-v2 a{
    min-height:125px;
    display:grid;
    grid-template-columns:65px 1fr 40px;
    align-items:center;
    gap:25px;
    padding:25px 22px;
    color:#181b1e;
    text-decoration:none;
    border-bottom:1px solid var(--regal-line);
    transition:background .35s ease,color .35s ease,transform .35s ease;
}

.services-list-v2 a:nth-child(odd){
    border-right:1px solid var(--regal-line);
}

.services-list-v2 a:hover{
    color:#fff;
    background:#15191c;
    transform:translateX(6px);
}

.services-list-v2 a span{
    color:var(--regal-red);
    font-size:11px;
    letter-spacing:2px;
    font-weight:700;
}

.services-list-v2 a strong{
    font-size:17px;
    font-weight:700;
}

.services-list-v2 a i{
    color:var(--regal-red);
    font-size:20px;
    font-style:normal;
    text-align:right;
    transition:transform .3s ease;
}

.services-list-v2 a:hover i{
    transform:translate(5px,-5px);
}

/* ---------- FAQ ---------- */

.about-faq-v2{
    padding:140px 0 150px;
    background:#f3f3f0;
}

.faq-grid-v2{
    display:grid;
    grid-template-columns:.7fr 1.3fr;
    gap:120px;
    align-items:start;
}

.faq-grid-v2 h2{
    font-size:clamp(70px,6vw,105px);
}

.faq-grid-v2 > div:first-child p{
    margin-top:35px;
    max-width:390px;
    color:#737a80;
}

.faq-items-v2{
    border-top:1px solid var(--regal-line);
}

.faq-items-v2 details{
    border-bottom:1px solid var(--regal-line);
    padding:0;
}

.faq-items-v2 summary{
    position:relative;
    cursor:pointer;
    list-style:none;
    padding:30px 55px 30px 0;
    font-size:18px;
    font-weight:700;
}

.faq-items-v2 summary::-webkit-details-marker{
    display:none;
}

.faq-items-v2 summary::after{
    content:"+";
    position:absolute;
    right:5px;
    top:24px;
    width:30px;
    height:30px;
    display:grid;
    place-items:center;
    color:var(--regal-red);
    border:1px solid var(--regal-line);
    transition:transform .3s ease;
}

.faq-items-v2 details[open] summary::after{
    transform:rotate(45deg);
}

.faq-items-v2 details p{
    color:#70777d;
    max-width:700px;
    padding:0 50px 30px 0;
    animation:faqReveal .35s ease both;
}

@keyframes faqReveal{
    from{opacity:0;transform:translateY(-8px)}
    to{opacity:1;transform:translateY(0)}
}

/* ---------- CONTACT ---------- */

.about-contact-v2{
    padding:0 0 145px;
    background:#fff;
}

.contact-box-v2{
    min-height:310px;
    padding:60px 70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    background:#111518;
    color:#fff;
    border-top:5px solid var(--regal-red);
    position:relative;
    overflow:hidden;
}

.contact-box-v2::after{
    content:"";
    position:absolute;
    width:360px;
    height:360px;
    right:-150px;
    top:-170px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:50%;
}

.contact-box-v2 > div{
    position:relative;
    z-index:1;
}

.contact-box-v2 > div > span{
    font-size:9px;
    letter-spacing:3px;
    color:#858c92;
}

.contact-box-v2 h2{
    margin-top:22px;
    font-size:clamp(60px,5vw,95px);
}

.contact-box-v2 a{
    position:relative;
    z-index:1;
    min-width:230px;
    padding:20px 25px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:#fff;
    background:var(--regal-red);
    text-decoration:none;
    font-size:10px;
    font-weight:700;
    letter-spacing:2px;
    transition:transform .3s ease,background .3s ease;
}

.contact-box-v2 a:hover{
    transform:translateY(-5px);
    background:#c9161d;
}

.contact-box-v2 a b{
    font-size:18px;
}

/* ---------- REVEAL EFFECT ---------- */

.about-v2 .about-wrap-v2{
    animation:sectionFade .7s ease both;
}

@keyframes sectionFade{
    from{opacity:0;transform:translateY(20px)}
    to{opacity:1;transform:translateY(0)}
}

/* ---------- RESPONSIVE: LARGE TABLET ---------- */

@media (max-width:1100px){
    .about-wrap-v2{
        width:min(calc(100% - 64px),var(--content-width));
    }

    .intro-grid-v2,
    .profile-layout-v2{
        gap:70px;
    }

    .story-grid-v2{
        grid-template-columns:290px 1fr;
        gap:70px;
    }

    .faq-grid-v2{
        gap:70px;
    }

    .services-heading-v2{
        gap:60px;
    }
}

/* ---------- RESPONSIVE: TABLET ---------- */

@media (max-width:800px){
    .about-wrap-v2{
        width:calc(100% - 44px);
    }

    .about-intro-v2,
    .about-profile-v2,
    .about-story-v2,
    .about-services-v2,
    .about-faq-v2{
        padding-top:95px;
        padding-bottom:100px;
    }

    .about-contact-v2{
        padding-bottom:100px;
    }

    .section-marker-v2{
        margin-bottom:55px;
    }

    .intro-grid-v2,
    .profile-layout-v2,
    .story-grid-v2,
    .services-heading-v2,
    .faq-grid-v2{
        grid-template-columns:1fr;
        gap:55px;
    }

    .intro-title-v2{
        padding-left:30px;
    }

    .intro-title-v2::before{
        height:170px;
    }

    .intro-title-v2 h1{
        font-size:clamp(72px,13vw,115px);
    }

    .intro-card-v2{
        min-height:270px;
    }

    .story-year-v2{
        min-height:280px;
    }

    .services-list-v2{
        grid-template-columns:1fr;
    }

    .services-list-v2 a:nth-child(odd){
        border-right:0;
    }

    .contact-box-v2{
        padding:50px 45px;
        align-items:flex-start;
        flex-direction:column;
    }
}

/* ---------- RESPONSIVE: MOBILE ---------- */

@media (max-width:560px){
    .about-wrap-v2{
        width:calc(100% - 32px);
    }

    .about-intro-v2,
    .about-profile-v2,
    .about-story-v2,
    .about-services-v2,
    .about-faq-v2{
        padding-top:75px;
        padding-bottom:80px;
    }

    .about-contact-v2{
        padding-bottom:80px;
    }

    .section-marker-v2{
        gap:11px;
        margin-bottom:42px;
    }

    .section-marker-v2 span{
        width:40px;
        height:40px;
        font-size:14px;
    }

    .section-marker-v2 b{
        font-size:8px;
        letter-spacing:2px;
    }

    .section-marker-v2 i{
        width:35px;
    }

    .section-marker-v2 small{
        font-size:7px;
        letter-spacing:1px;
    }

    .intro-title-v2{
        padding-left:22px;
    }

    .intro-title-v2::before{
        width:3px;
        height:135px;
    }

    .intro-title-v2 h1{
        font-size:clamp(58px,18vw,88px);
    }

    .eyebrow-v2{
        font-size:8px !important;
        letter-spacing:2px;
    }

    .about-v2 p{
        font-size:16px;
        line-height:1.8;
    }

    .intro-lead-v2{
        margin-top:28px !important;
    }

    .intro-card-v2{
        padding:30px 26px;
        min-height:250px;
    }

    .profile-copy-v2{
        padding-left:22px;
    }

    .profile-copy-v2 h2,
    .story-content-v2 h2,
    .services-heading-v2 h2,
    .faq-grid-v2 h2{
        font-size:clamp(58px,16vw,82px);
    }

    .profile-copy-v2 h2{
        margin-bottom:30px;
    }

    .data-row-v2{
        grid-template-columns:85px 1fr;
        padding:23px 0;
        column-gap:14px;
    }

    .data-row-v2 > span{
        font-size:8px;
    }

    .data-row-v2 strong{
        font-size:13px;
    }

    .data-row-v2 small{
        font-size:12px;
        line-height:1.5;
    }

    .story-year-v2{
        min-height:230px;
        padding:30px;
    }

    .story-year-v2 strong{
        font-size:95px;
    }

    .services-heading-v2{
        margin-bottom:45px;
    }

    .services-list-v2 a{
        min-height:105px;
        grid-template-columns:45px 1fr 30px;
        gap:12px;
        padding:20px 10px;
    }

    .services-list-v2 a strong{
        font-size:14px;
    }

    .faq-items-v2 summary{
        padding:25px 45px 25px 0;
        font-size:15px;
    }

    .faq-items-v2 details p{
        padding-right:20px;
    }

    .contact-box-v2{
        min-height:330px;
        padding:40px 28px;
        gap:40px;
    }

    .contact-box-v2 h2{
        font-size:clamp(52px,15vw,76px);
    }

    .contact-box-v2 a{
        width:100%;
        min-width:0;
    }
}

/* ---------- REDUCED MOTION ---------- */

@media (prefers-reduced-motion:reduce){
    .about-v2 *,
    .about-v2 *::before,
    .about-v2 *::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        scroll-behavior:auto !important;
        transition-duration:.01ms !important;
    }
}


/* =========================================================
   DARK SECTION TYPOGRAPHY / EXTRA VISUAL DEPTH
========================================================= */

.about-intro-v2 .intro-title-v2 h1,
.about-intro-v2 .intro-lead-v2{
    color:#fff;
}

.about-intro-v2 .eyebrow-v2{
    color:rgba(255,255,255,.45);
}

.about-intro-v2 .intro-title-v2::before{
    background:var(--regal-red);
}

.about-services-v2 .services-heading-v2 h2{
    color:#fff;
}

.about-services-v2 .services-heading-v2 p{
    color:rgba(255,255,255,.55);
}

.about-services-v2 .services-list-v2{
    border-top-color:rgba(255,255,255,.14);
}

.about-services-v2 .services-list-v2 a{
    color:#fff;
    border-bottom-color:rgba(255,255,255,.14);
}

.about-services-v2 .services-list-v2 a:nth-child(odd){
    border-right-color:rgba(255,255,255,.14);
}

.about-services-v2 .services-list-v2 a span{
    color:var(--regal-red);
}

.about-services-v2 .services-list-v2 a:hover{
    background:#181d21;
}

.about-services-v2 .services-list-v2 a i{
    color:var(--regal-red);
}

/* Make the hero feel deeper without changing its layout */
.about-intro-v2{
    box-shadow:inset 0 -1px 0 rgba(255,255,255,.08);
}

.about-intro-v2::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:180px;
    background:linear-gradient(
        to top,
        rgba(237,28,36,.035),
        transparent
    );
    pointer-events:none;
}

/* A subtle dark transition between light and dark areas */
.about-profile-v2{
    position:relative;
}

.about-profile-v2::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:1px;
    background:rgba(0,0,0,.10);
}

/* Mobile dark sections retain their depth */
@media (max-width:560px){

    .about-intro-v2{
        padding-top:90px;
        padding-bottom:95px;
    }

    .about-services-v2{
        padding-top:90px;
        padding-bottom:100px;
    }

    .about-intro-v2::after{
        width:300px;
        height:300px;
        right:-180px;
    }
}

/* =========================================
   INTRO SECTION — BLACK BACKGROUND
========================================= */

.about-intro-v2 {
    position: relative;
    padding: 125px 0 135px;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        #080b0e;
    background-size: 82px 82px;
    color: #fff;
}

/* subtle red ambient effect */
.about-intro-v2::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -220px;
    top: 40px;
    border: 1px solid rgba(237, 28, 36, .15);
    border-radius: 50%;
    pointer-events: none;
}

.about-intro-v2::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -100px;
    top: 160px;
    border: 1px solid rgba(237, 28, 36, .08);
    border-radius: 50%;
    pointer-events: none;
}

/* Intro text */
.about-intro-v2 .intro-title-v2 h1 {
    color: #fff;
}

.about-intro-v2 .intro-title-v2 .eyebrow-v2 {
    color: rgba(255,255,255,.45);
}

.about-intro-v2 .intro-lead-v2 {
    color: rgba(255,255,255,.60);
}

/* Red vertical line */
.about-intro-v2 .intro-title-v2::before {
    background: #ed1c24;
}

/* Intro card */
.about-intro-v2 .intro-card-v2 {
    background: #151a1e;
    border: 1px solid rgba(255,255,255,.10);
    border-left: 4px solid #ed1c24;
    box-shadow: 0 25px 60px rgba(0,0,0,.30);
}

.about-intro-v2 .intro-card-v2 p {
    color: rgba(255,255,255,.70);
}

.about-intro-v2 .card-rule-v2 {
    background: rgba(255,255,255,.12);
}

.about-intro-v2 .card-top-v2 span,
.about-intro-v2 .card-bottom-v2 {
    color: rgba(255,255,255,.40);
}

.about-intro-v2 .card-top-v2 strong {
    color: #ed1c24;
}
/* =========================================================
   ABOUT INTRO — FINAL ALIGNED VERSION
========================================================= */

.about-intro-v2 {
    position: relative;
    width: 100%;
    min-height: auto;
    overflow: hidden;

    background: #080a0c;
    color: #fff;

    isolation: isolate;
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.intro-bg-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 90px 90px;

    pointer-events: none;
    z-index: -3;
}


/* =========================================================
   RED BACKGROUND ORBIT
========================================================= */

.intro-red-orbit {
    position: absolute;

    width: 560px;
    height: 560px;

    right: -250px;
    top: 120px;

    border: 1px solid rgba(237,45,53,.16);
    border-radius: 50%;

    pointer-events: none;
    z-index: -2;
}


.intro-red-orbit::after {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    top: 60px;
    left: -40px;

    border: 1px solid rgba(237,45,53,.10);
    border-radius: 50%;
}


/* =========================================================
   MAIN PAGE WIDTH
   SAME ALIGNMENT AS OTHER SECTIONS
========================================================= */

.about-intro-v2 .about-wrap-v2 {

    width: min(
        calc(100% - 160px),
        1400px
    );

    margin: 0 auto;

    padding: 145px 0 135px;
}


/* =========================================================
   SECTION MARKER
========================================================= */

.about-intro-v2 .section-marker-v2 {

    display: flex;
    align-items: center;

    gap: 15px;

    width: 100%;

    margin: 0 0 80px;
}


.about-intro-v2 .section-marker-v2 span {

    color: #ed2d35;

    font-size: 16px;
    font-weight: 800;

    line-height: 1;
}


.about-intro-v2 .section-marker-v2 b {

    color: rgba(255,255,255,.28);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .22em;
}


.about-intro-v2 .section-marker-v2 i {

    width: 70px;
    height: 1px;

    background: #ed2d35;

    display: block;
}


.about-intro-v2 .section-marker-v2 small {

    margin-left: auto;

    color: rgba(255,255,255,.35);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .18em;
}


/* =========================================================
   MAIN TWO COLUMN LAYOUT
========================================================= */

.intro-main-v2 {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(500px, .95fr);

    column-gap: 90px;

    align-items: center;

    width: 100%;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.intro-copy-v2 {

    position: relative;

    padding-left: 32px;

    max-width: 690px;
}


.intro-copy-v2::before {

    content: "";

    position: absolute;

    left: 0;
    top: 3px;

    width: 4px;
    height: 225px;

    background: #ed2d35;
}


/* =========================================================
   EYEBROW
========================================================= */

.intro-eyebrow-v2 {

    margin: 0 0 28px;

    color: rgba(255,255,255,.46);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .20em;
}


/* =========================================================
   HEADING
========================================================= */

.intro-copy-v2 h1 {

    margin: 0;

    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(
        75px,
        7vw,
        112px
    );

    line-height: .86;

    letter-spacing: -.025em;

    font-weight: 400;

    color: #fff;
}


.intro-copy-v2 h1 em {

    color: #ed2d35;

    font-style: normal;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.intro-description-v2 {

    max-width: 600px;

    margin: 45px 0 0;

    color: rgba(255,255,255,.62);

    font-size: 16px;

    line-height: 1.85;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.intro-visual-v2 {

    position: relative;

    width: 100%;

    min-height: 610px;

    padding-top: 0;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.intro-main-image-v2 {

    position: relative;

    width: 100%;

    height: 420px;

    overflow: hidden;

    background: #111416;

    border: 1px solid rgba(255,255,255,.12);
}


.intro-main-image-v2 img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    filter:
        brightness(.82)
        contrast(1.06);

    transition:
        transform .7s cubic-bezier(.16,1,.3,1),
        filter .5s ease;
}


.intro-main-image-v2:hover img {

    transform: scale(1.045);

    filter:
        brightness(.95)
        contrast(1.06);
}


/* =========================================================
   IMAGE DARK GRADIENT
========================================================= */

.intro-main-image-v2::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(0,0,0,.75)
        );

    pointer-events: none;
}


/* =========================================================
   IMAGE LABEL
========================================================= */

.intro-image-tag-v2 {

    position: absolute;

    left: 0;
    bottom: 0;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 15px 22px;

    background: #ed2d35;

    z-index: 2;
}


.intro-image-tag-v2 span {

    font-size: 16px;
    font-weight: 800;
}


.intro-image-tag-v2 strong {

    font-size: 9px;
    letter-spacing: .18em;
}


/* =========================================================
   SMALL IMAGE
========================================================= */

.intro-small-image-v2 {

    position: absolute;

    left: -45px;
    bottom: 120px;

    width: 190px;
    height: 145px;

    overflow: hidden;

    background: #111;

    border: 5px solid #080a0c;

    z-index: 4;
}


.intro-small-image-v2 img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    filter:
        grayscale(100%)
        brightness(.72);

    transition:
        transform .6s ease,
        filter .4s ease;
}


.intro-small-image-v2:hover img {

    transform: scale(1.08);

    filter:
        grayscale(0%)
        brightness(.95);
}


/* =========================================================
   SMALL IMAGE NUMBER
========================================================= */

.intro-small-image-v2 > span {

    position: absolute;

    right: 0;
    top: 0;

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ed2d35;

    color: #fff;

    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   PROFILE CARD
========================================================= */

.intro-profile-v2 {

    position: absolute;

    right: 0;
    bottom: 0;

    width: 430px;

    padding: 30px 34px;

    background: rgba(18,21,24,.97);

    border: 1px solid rgba(255,255,255,.12);

    border-left: 4px solid #ed2d35;

    z-index: 5;
}


/* =========================================================
   PROFILE HEADER
========================================================= */

.profile-head-v2 {

    display: flex;

    align-items: center;
    justify-content: space-between;
}


.profile-head-v2 span {

    color: rgba(255,255,255,.35);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .20em;
}


.profile-head-v2 strong {

    color: #ed2d35;

    font-size: 24px;
}


/* =========================================================
   PROFILE LINE
========================================================= */

.profile-line-v2 {

    width: 100%;
    height: 1px;

    margin: 25px 0;

    background: rgba(255,255,255,.13);
}


/* =========================================================
   PROFILE DESCRIPTION
========================================================= */

.intro-profile-v2 p {

    margin: 0;

    color: rgba(255,255,255,.68);

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   PROFILE FOOTER
========================================================= */

.profile-footer-v2 {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-top: 20px;
}


.profile-footer-v2 span {

    color: rgba(255,255,255,.30);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .16em;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

    .about-intro-v2 .about-wrap-v2 {

        width: calc(100% - 100px);
    }


    .intro-main-v2 {

        column-gap: 55px;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(430px, .95fr);
    }


    .intro-copy-v2 h1 {

        font-size: 82px;
    }


    .intro-profile-v2 {

        width: 390px;
    }


    .intro-small-image-v2 {

        left: -25px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .about-intro-v2 .about-wrap-v2 {

        width: calc(100% - 70px);

        padding:
            110px 0
            100px;
    }


    .intro-main-v2 {

        grid-template-columns: 1fr;

        gap: 65px;
    }


    .intro-copy-v2 {

        max-width: 760px;
    }


    .intro-copy-v2 h1 {

        font-size: 88px;
    }


    .intro-visual-v2 {

        max-width: 720px;

        min-height: 610px;

        margin: 0 auto;
    }


    .intro-main-image-v2 {

        height: 450px;
    }


    .intro-profile-v2 {

        width: 430px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .about-intro-v2 .about-wrap-v2 {

        width: calc(100% - 36px);

        padding:
            90px 0
            80px;
    }


    .about-intro-v2 .section-marker-v2 {

        margin-bottom: 60px;
    }


    .about-intro-v2 .section-marker-v2 small {

        display: none;
    }


    .intro-main-v2 {

        gap: 50px;
    }


    .intro-copy-v2 {

        padding-left: 24px;
    }


    .intro-copy-v2::before {

        width: 3px;

        height: 175px;
    }


    .intro-eyebrow-v2 {

        font-size: 9px;

        letter-spacing: .15em;
    }


    .intro-copy-v2 h1 {

        font-size: clamp(
            56px,
            15vw,
            78px
        );

        line-height: .88;
    }


    .intro-description-v2 {

        margin-top: 32px;

        font-size: 16px;

        line-height: 1.8;
    }


    /* IMAGE AREA */

    .intro-visual-v2 {

        min-height: 570px;

        width: 100%;
    }


    .intro-main-image-v2 {

        width: 100%;

        height: 350px;
    }


    .intro-small-image-v2 {

        left: -5px;

        bottom: 130px;

        width: 150px;
        height: 115px;

        border-width: 4px;
    }


    .intro-profile-v2 {

        right: 0;

        bottom: 0;

        width: calc(100% - 35px);

        padding: 24px;
    }


    .intro-profile-v2 p {

        font-size: 16px;

        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .about-intro-v2 .about-wrap-v2 {

        width: calc(100% - 28px);

        padding:
            75px 0
            65px;
    }


    .about-intro-v2 .section-marker-v2 {

        gap: 9px;
    }


    .about-intro-v2 .section-marker-v2 b {

        font-size: 8px;
    }


    .about-intro-v2 .section-marker-v2 i {

        width: 40px;
    }


    .intro-copy-v2 h1 {

        font-size: 53px;
    }


    .intro-description-v2 {

        font-size: 16px;
    }


    .intro-visual-v2 {

        min-height: 500px;
    }


    .intro-main-image-v2 {

        height: 290px;
    }


    .intro-small-image-v2 {

        width: 125px;
        height: 95px;

        bottom: 125px;
    }


    .intro-profile-v2 {

        width: calc(100% - 20px);

        padding: 20px;
    }


    .profile-line-v2 {

        margin: 18px 0;
    }


    .profile-footer-v2 {

        flex-direction: column;

        gap: 8px;
    }
}
/* =========================================================
   MOVE INTRO CONTENT UP
========================================================= */

.intro-main-v2 {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(500px, .95fr);

    column-gap: 90px;

    /* move both columns upward */
    align-items: start;

    width: 100%;

    margin-top: -35px;
}


/* =========================================================
   LEFT WRITING — MOVE UP
========================================================= */

.intro-copy-v2 {
    position: relative;

    padding-left: 32px;

    max-width: 690px;

    margin-top: -5px;
}


/* =========================================================
   RIGHT IMAGE — MOVE UP
========================================================= */

.intro-visual-v2 {
    position: relative;

    width: 100%;

    min-height: 610px;

    margin-top: -5px;
}


/* Main image */
.intro-main-image-v2 {
    position: relative;

    width: 100%;
    height: 420px;

    overflow: hidden;

    background: #111416;

    border: 1px solid rgba(255,255,255,.12);
}
/* =========================================================
   INTRO — FINAL VERTICAL ALIGNMENT
   Move BOTH TEXT + IMAGE slightly upward
========================================================= */

.about-intro-v2 .intro-main-v2 {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(500px, .95fr);

    column-gap: 90px;

    /* Keep both sides aligned from the same top position */
    align-items: start;

    width: 100%;

    /* Slight upward movement */
    transform: translateY(-35px);
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.about-intro-v2 .intro-copy-v2 {
    position: relative;

    padding-left: 32px;

    max-width: 690px;

    /* Keep text aligned with image */
    margin-top: 0;
}


/* Red vertical line */
.about-intro-v2 .intro-copy-v2::before {
    top: 3px;
}


/* =========================================================
   RIGHT IMAGE AREA
========================================================= */

.about-intro-v2 .intro-visual-v2 {
    position: relative;

    width: 100%;
    min-height: 610px;

    /* No separate vertical offset */
    margin-top: 0;
}


/* Main image */
.about-intro-v2 .intro-main-image-v2 {
    width: 100%;
    height: 420px;

    overflow: hidden;

    position: relative;

    border: 1px solid rgba(255,255,255,.12);
    background: #111416;
}


/* =========================================================
   KEEP IMAGE CLEAR
========================================================= */

.about-intro-v2 .intro-main-image-v2 img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    filter:
        brightness(.90)
        contrast(1.05);

    transition:
        transform .7s cubic-bezier(.16,1,.3,1),
        filter .5s ease;
}


/* Image hover */
.about-intro-v2 .intro-main-image-v2:hover img {
    transform: scale(1.04);

    filter:
        brightness(.98)
        contrast(1.05);
}


/* =========================================================
   SMALL IMAGE
========================================================= */

.about-intro-v2 .intro-small-image-v2 {
    left: -45px;
    bottom: 120px;
}


/* =========================================================
   PROFILE CARD
========================================================= */

.about-intro-v2 .intro-profile-v2 {
    right: 0;
    bottom: 0;

    width: 430px;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

    .about-intro-v2 .intro-main-v2 {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(430px, .95fr);

        column-gap: 55px;

        transform: translateY(-30px);
    }

    .about-intro-v2 .intro-copy-v2 {
        max-width: 650px;
    }

    .about-intro-v2 .intro-profile-v2 {
        width: 390px;
    }

    .about-intro-v2 .intro-small-image-v2 {
        left: -25px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .about-intro-v2 .intro-main-v2 {
        grid-template-columns: 1fr;

        gap: 55px;

        transform: translateY(-25px);
    }

    .about-intro-v2 .intro-copy-v2 {
        max-width: 760px;
    }

    .about-intro-v2 .intro-visual-v2 {
        width: 100%;
        max-width: 720px;

        min-height: 610px;

        margin: 0 auto;
    }

    .about-intro-v2 .intro-main-image-v2 {
        height: 450px;
    }

    .about-intro-v2 .intro-profile-v2 {
        width: 430px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .about-intro-v2 .intro-main-v2 {
        grid-template-columns: 1fr;

        gap: 45px;

        transform: translateY(-15px);
    }

    .about-intro-v2 .intro-copy-v2 {
        padding-left: 24px;
        max-width: 100%;
    }

    .about-intro-v2 .intro-main-image-v2 {
        width: 100%;
        height: 350px;
    }

    .about-intro-v2 .intro-visual-v2 {
        min-height: 570px;
        width: 100%;
    }

    .about-intro-v2 .intro-small-image-v2 {
        left: -5px;
        bottom: 130px;

        width: 150px;
        height: 115px;
    }

    .about-intro-v2 .intro-profile-v2 {
        right: 0;
        bottom: 0;

        width: calc(100% - 35px);

        padding: 24px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .about-intro-v2 .intro-main-v2 {
        gap: 40px;

        transform: translateY(-10px);
    }

    .about-intro-v2 .intro-main-image-v2 {
        height: 290px;
    }

    .about-intro-v2 .intro-visual-v2 {
        min-height: 500px;
    }

    .about-intro-v2 .intro-small-image-v2 {
        width: 125px;
        height: 95px;

        bottom: 125px;
    }

    .about-intro-v2 .intro-profile-v2 {
        width: calc(100% - 20px);
        padding: 20px;
    }
}
/* =========================================================
   INTRO SECTION — REMOVE EXCESSIVE BLANK SPACE
========================================================= */

/* Reduce overall section height */
.about-intro-v2 .about-wrap-v2 {
    padding: 80px 0 70px;
}


/* Section marker */
.about-intro-v2 .section-marker-v2 {
    margin-bottom: 45px;
}


/* Main intro layout */
.about-intro-v2 .intro-main-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(500px, .95fr);
    column-gap: 75px;
    align-items: start;

    transform: none;
    margin-top: 0;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.about-intro-v2 .intro-copy-v2 {
    margin-top: 75px;
    max-width: 650px;
    padding-left: 32px;
}


/* Heading */
.about-intro-v2 .intro-copy-v2 h1 {
    font-size: clamp(72px, 6.8vw, 108px);
    line-height: .86;
}


/* Description */
.about-intro-v2 .intro-description-v2 {
    margin-top: 32px;
    max-width: 600px;
}


/* =========================================================
   RIGHT IMAGE AREA
========================================================= */

.about-intro-v2 .intro-visual-v2 {
    min-height: 520px;
    height: 520px;
    margin: 0;
    position: relative;
}


/* Main image */
.about-intro-v2 .intro-main-image-v2 {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
}


/* Keep image clear */
.about-intro-v2 .intro-main-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    filter:
        brightness(.94)
        contrast(1.04);
}


/* =========================================================
   SMALL IMAGE
========================================================= */

.about-intro-v2 .intro-small-image-v2 {
    left: -40px;
    bottom: 55px;

    width: 190px;
    height: 135px;

    z-index: 4;
}


/* =========================================================
   PROFILE CARD
========================================================= */

.about-intro-v2 .intro-profile-v2 {
    right: 0;
    bottom: 0;

    width: 430px;

    padding: 30px 34px;

    z-index: 5;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    .about-intro-v2 .about-wrap-v2 {
        padding: 70px 0 60px;
    }

    .about-intro-v2 .intro-main-v2 {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(430px, .95fr);

        column-gap: 50px;
    }

    .about-intro-v2 .intro-copy-v2 {
        margin-top: 65px;
    }

    .about-intro-v2 .intro-visual-v2 {
        min-height: 500px;
        height: 500px;
    }

    .about-intro-v2 .intro-main-image-v2 {
        height: 340px;
    }

    .about-intro-v2 .intro-profile-v2 {
        width: 390px;
    }

    .about-intro-v2 .intro-small-image-v2 {
        left: -20px;
    }
}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 900px) {

    .about-intro-v2 .about-wrap-v2 {
        padding: 70px 0 70px;
    }

    .about-intro-v2 .section-marker-v2 {
        margin-bottom: 40px;
    }

    .about-intro-v2 .intro-main-v2 {
        grid-template-columns: 1fr;
        gap: 45px;

        transform: none;
    }

    .about-intro-v2 .intro-copy-v2 {
        margin-top: 0;
        max-width: 760px;
    }

    .about-intro-v2 .intro-visual-v2 {
        width: 100%;
        max-width: 720px;

        min-height: 540px;
        height: 540px;

        margin: 0 auto;
    }

    .about-intro-v2 .intro-main-image-v2 {
        height: 390px;
    }

    .about-intro-v2 .intro-small-image-v2 {
        left: 0;
        bottom: 105px;
    }

    .about-intro-v2 .intro-profile-v2 {
        right: 0;
        bottom: 0;
        width: 430px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .about-intro-v2 .about-wrap-v2 {
        width: calc(100% - 36px);
        padding: 60px 0 55px;
    }

    .about-intro-v2 .section-marker-v2 {
        margin-bottom: 35px;
    }

    .about-intro-v2 .intro-main-v2 {
        gap: 35px;
    }

    .about-intro-v2 .intro-copy-v2 {
        padding-left: 24px;
        margin-top: 0;
    }

    .about-intro-v2 .intro-copy-v2 h1 {
        font-size: clamp(56px, 15vw, 78px);
    }

    .about-intro-v2 .intro-description-v2 {
        margin-top: 28px;
        font-size: 15px;
        line-height: 1.75;
    }

    .about-intro-v2 .intro-visual-v2 {
        min-height: 500px;
        height: 500px;
    }

    .about-intro-v2 .intro-main-image-v2 {
        height: 320px;
    }

    .about-intro-v2 .intro-small-image-v2 {
        left: 0;
        bottom: 100px;

        width: 145px;
        height: 110px;
    }

    .about-intro-v2 .intro-profile-v2 {
        width: calc(100% - 25px);
        padding: 24px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .about-intro-v2 .about-wrap-v2 {
        padding: 50px 0 45px;
    }

    .about-intro-v2 .intro-visual-v2 {
        min-height: 450px;
        height: 450px;
    }

    .about-intro-v2 .intro-main-image-v2 {
        height: 280px;
    }

    .about-intro-v2 .intro-small-image-v2 {
        width: 120px;
        height: 90px;
        bottom: 95px;
    }

    .about-intro-v2 .intro-profile-v2 {
        width: calc(100% - 15px);
        padding: 20px;
    }
}
/* =========================================================
   INTRO — SLIGHTLY MOVE CONTENT + IMAGES UP
========================================================= */

@media (min-width: 901px) {

    /* Move the complete content block upward */
    .about-intro-v2 .intro-main-v2 {
        margin-top: -80px;
    }

    /* Move left text slightly upward */
    .about-intro-v2 .intro-copy-v2 {
        margin-top: 50px;
    }

    /* Move right visual slightly upward */
    .about-intro-v2 .intro-visual-v2 {
        transform: translateY(-20px);
    }

    /* Keep image/card relationship unchanged */
    .about-intro-v2 .intro-main-image-v2 {
        transform: none;
    }

    .about-intro-v2 .intro-small-image-v2 {
        transform: none;
    }

    .about-intro-v2 .intro-profile-v2 {
        transform: none;
    }
}
/* =========================================================
   SERVICES SECTION — BACKGROUND IMAGE
========================================================= */

.about-services-v2 {
    position: relative;
    padding: 120px 0 130px;
    min-height: 850px;

    color: #fff;

    overflow: hidden;
    isolation: isolate;

    /* CHANGE THIS IMAGE PATH */
    background:
        linear-gradient(
            90deg,
            rgba(7, 10, 12, 0.94) 0%,
            rgba(7, 10, 12, 0.84) 35%,
            rgba(7, 10, 12, 0.68) 65%,
            rgba(7, 10, 12, 0.82) 100%
        ),
        url("images/aluminium-fabrication-bg.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =========================================================
   BACKGROUND IMAGE DEPTH
========================================================= */

.about-services-v2::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 35%,
            rgba(237, 28, 36, 0.12),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.45)
        );

    pointer-events: none;

    z-index: -1;
}


/* =========================================================
   GRID OVER BACKGROUND
========================================================= */

.about-services-v2::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        );

    background-size: 82px 82px;

    opacity: .7;

    pointer-events: none;

    z-index: -1;
}


/* =========================================================
   CONTENT ABOVE BACKGROUND
========================================================= */

.about-services-v2 .about-wrap-v2 {
    position: relative;
    z-index: 2;
}


/* =========================================================
   SECTION MARKER
========================================================= */

.about-services-v2 .section-marker-v2 {
    color: #fff;

    margin-bottom: 70px;
}


.about-services-v2 .section-marker-v2 span {
    border-color: rgba(255,255,255,.18);
    color: #ed1c24;
}


.about-services-v2 .section-marker-v2 b {
    color: rgba(255,255,255,.50);
}


.about-services-v2 .section-marker-v2 i {
    background: #ed1c24;
}


.about-services-v2 .section-marker-v2 small {
    color: rgba(255,255,255,.40);
}


/* =========================================================
   HEADING AREA
========================================================= */

.services-heading-v2 {
    display: grid;

    grid-template-columns: 1fr .65fr;

    gap: 90px;

    align-items: end;

    margin-bottom: 65px;
}


.services-heading-v2 h2 {
    margin: 0;

    color: #fff;

    font-family: "Bebas Neue", Impact, sans-serif;

    font-size: clamp(72px, 7vw, 112px);

    font-weight: 400;

    line-height: .86;

    letter-spacing: .5px;
}


.services-heading-v2 h2 em {
    color: #ed1c24;
    font-style: normal;
}


.services-heading-v2 p {
    margin: 0;

    max-width: 500px;

    color: rgba(255,255,255,.65);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-list-v2 {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid rgba(255,255,255,.18);

    border-left: 1px solid rgba(255,255,255,.08);
}


/* =========================================================
   SERVICE ITEM
========================================================= */

.services-list-v2 a {
    position: relative;

    min-height: 125px;

    display: grid;

    grid-template-columns: 65px 1fr 40px;

    align-items: center;

    gap: 25px;

    padding: 25px 22px;

    color: #fff;

    text-decoration: none;

    border-right: 1px solid rgba(255,255,255,.14);
    border-bottom: 1px solid rgba(255,255,255,.14);

    background: rgba(7,10,12,.28);

    backdrop-filter: blur(2px);

    transition:
        background .4s ease,
        transform .4s ease,
        border-color .4s ease;
}


/* =========================================================
   REMOVE RIGHT BORDER FROM EVEN ITEMS
========================================================= */

.services-list-v2 a:nth-child(even) {
    border-right: 0;
}


/* =========================================================
   NUMBER
========================================================= */

.services-list-v2 a span {
    color: #ed1c24;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================================
   SERVICE TITLE
========================================================= */

.services-list-v2 a strong {
    position: relative;
    z-index: 2;

    color: #fff;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: .2px;
}


/* =========================================================
   ARROW
========================================================= */

.services-list-v2 a i {
    color: #ed1c24;

    font-size: 21px;

    font-style: normal;

    text-align: right;

    transition: transform .35s ease;
}


/* =========================================================
   HOVER
========================================================= */

.services-list-v2 a::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: #ed1c24;

    transition: width .45s ease;
}


.services-list-v2 a:hover {
    background: rgba(237,28,36,.10);

    border-color: rgba(237,28,36,.35);

    transform: translateX(5px);
}


.services-list-v2 a:hover::before {
    width: 100%;
}


.services-list-v2 a:hover i {
    transform: translate(5px,-5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .about-services-v2 {
        padding: 95px 0 100px;
    }


    .services-heading-v2 {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 50px;
    }


    .services-heading-v2 h2 {
        font-size: clamp(65px, 11vw, 95px);
    }


    .services-heading-v2 p {
        max-width: 650px;
    }


    .services-list-v2 {
        grid-template-columns: 1fr;
    }


    .services-list-v2 a:nth-child(even) {
        border-right: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 560px) {

    .about-services-v2 {
        padding: 75px 0 80px;

        min-height: auto;

        background-position: center;
    }


    .about-services-v2 .section-marker-v2 {
        margin-bottom: 50px;
    }


    .services-heading-v2 {
        gap: 30px;

        margin-bottom: 40px;
    }


    .services-heading-v2 h2 {
        font-size: clamp(55px, 16vw, 82px);

        line-height: .88;
    }


    .services-heading-v2 p {
        font-size: 15px;

        line-height: 1.75;
    }


    .services-list-v2 {
        grid-template-columns: 1fr;
    }


    .services-list-v2 a {
        min-height: 105px;

        grid-template-columns:
            45px 1fr 30px;

        gap: 12px;

        padding: 20px 12px;
    }


    .services-list-v2 a strong {
        font-size: 14px;
    }


    .services-list-v2 a i {
        font-size: 19px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .about-services-v2 {
        padding: 65px 0 70px;
    }


    .services-heading-v2 h2 {
        font-size: 52px;
    }


    .services-list-v2 a {
        grid-template-columns:
            38px 1fr 28px;

        padding: 18px 8px;
    }


    .services-list-v2 a strong {
        font-size: 13px;
    }

}
/* =========================================================
   CONTACT SECTION ONLY
   ========================================================= */

.about-contact-v2 {
    padding: 0 0 120px;
    background: #fff;
}

.about-contact-v2 .about-wrap-v2 {
    width: min(calc(100% - 80px), 1400px);
    margin: 0 auto;
}

.contact-box-v2 {
    min-height: 380px;
    padding: 65px 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    position: relative;
    overflow: hidden;

    color: #fff;
    border-top: 5px solid #ed1c24;

    /* CONTACT BACKGROUND IMAGE */
    background-image:
        linear-gradient(
            90deg,
            rgba(8, 11, 14, 0.98) 0%,
            rgba(8, 11, 14, 0.90) 35%,
            rgba(8, 11, 14, 0.55) 65%,
            rgba(8, 11, 14, 0.25) 100%
        ),
        url("images/contact-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}


/* Decorative circle */
.contact-box-v2::after {
    content: "";
    position: absolute;

    width: 360px;
    height: 360px;

    right: -130px;
    top: -180px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    pointer-events: none;
}


/* LEFT CONTENT */
.contact-box-v2 > div {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.contact-box-v2 > div > span {
    display: block;

    color: rgba(255, 255, 255, 0.55);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}


.contact-box-v2 h2 {
    margin-top: 22px;

    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: clamp(65px, 6vw, 105px);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: 0.5px;

    color: #fff;
}

.contact-box-v2 h2 em {
    color: #ed1c24;
    font-style: normal;
}


/* CONTACT BUTTON */
.contact-box-v2 > a {
    position: relative;
    z-index: 2;

    width: 250px;
    min-width: 250px;

    padding: 24px 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #fff;
    background: #ed1c24;

    text-decoration: none;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;

    transition: all 0.3s ease;
}

.contact-box-v2 > a:hover {
    transform: translateY(-5px);
    background: #c9161d;
}

.contact-box-v2 > a b {
    font-size: 20px;
    font-weight: 400;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

    .about-contact-v2 {
        padding-bottom: 90px;
    }

    .about-contact-v2 .about-wrap-v2 {
        width: calc(100% - 44px);
    }

    .contact-box-v2 {
        min-height: 430px;

        padding: 55px 45px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 40px;

        background-position: center;
    }

    .contact-box-v2 > a {
        width: 250px;
        min-width: 250px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {

    .about-contact-v2 {
        padding-bottom: 70px;
    }

    .about-contact-v2 .about-wrap-v2 {
        width: calc(100% - 32px);
    }

    .contact-box-v2 {
        min-height: 460px;

        padding: 45px 28px;

        gap: 35px;

        background-image:
            linear-gradient(
                90deg,
                rgba(8, 11, 14, 0.96),
                rgba(8, 11, 14, 0.65)
            ),
            url("images/CONTACT-BG.jpg");

        background-size: cover;
        background-position: center;
    }

    .contact-box-v2 h2 {
        font-size: clamp(55px, 16vw, 78px);
    }

    .contact-box-v2 > a {
        width: 100%;
        min-width: 0;
    }
}