/* ==================================================
   AIRVENTURE HERO
================================================== */

.dr1064hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;

    overflow: hidden;

    background: #071A2E;

    color: #ffffff;

    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.dr1064hero.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* ==================================================
   BACKGROUND
================================================== */

/* ==================================================
   HERO BACKGROUND CAROUSEL
================================================== */

.dr1064heroBackground {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.dr1064heroBackground img {

    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    opacity: 0;

    transition:
        opacity 2.5s ease,
        transform 8s ease;

    transform: scale(1.15);

    will-change:
        opacity,
        transform;
}

.dr1064heroBackground img.active {

    opacity: .82;

    transform: scale(1);
}

/* Optional cinematic shading */

.dr1064heroBackground::before {

    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,26,46,.20) 0%,
            rgba(7,26,46,.05) 45%,
            rgba(7,26,46,.15) 100%
        );

    z-index: 2;
}

.dr1064heroBackground::after {

    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02) 0%,
            rgba(0,0,0,.05) 50%,
            rgba(0,0,0,.12) 100%
        );

    z-index: 3;
}

.dr1064heroContent h1,
.dr1064heroDescription {

    text-shadow:
        0 2px 20px rgba(0,0,0,.55);
}

/* ==================================================
   CONTAINER
================================================== */

.dr1064heroContainer {
    position: relative;
    z-index: 5;

    width: min(1400px,92%);
    margin: auto;

    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;

    align-items: center;

    padding: 140px 0 80px;
}

/* ==================================================
   CONTENT
================================================== */

.dr1064heroContent {
    max-width: 760px;
}

.dr1064heroBadge {
    display: inline-flex;

    padding: 12px 22px;

    border-radius: 999px;

    background:
        rgba(56,217,255,.12);

    border:
        1px solid rgba(56,217,255,.25);

    margin-bottom: 30px;

    backdrop-filter: blur(15px);
}

.dr1064heroBadge span {
    color: #38D9FF;
    font-weight: 700;
    font-size: 14px;
}

.dr1064heroContent h1 {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 900;

    margin-bottom: 28px;
}

.dr1064heroContent h1 span {
    color: #38D9FF;
}

.dr1064heroDescription {
    font-size: 18px;
    line-height: 1.9;

    color: rgba(255,255,255,.82);

    margin-bottom: 40px;

    max-width: 700px;
}

/* ==================================================
   BUTTONS
================================================== */

.dr1064heroActions {
    display: flex;
    gap: 18px;

    flex-wrap: wrap;

    margin-bottom: 45px;
}

.dr1064heroBtnPrimary,
.dr1064heroBtnSecondary {

    text-decoration: none;

    padding: 18px 34px;

    border-radius: 14px;

    font-weight: 700;

    transition: .35s;
}

.dr1064heroBtnPrimary {

    background:
        linear-gradient(
            135deg,
            #00C6FF,
            #38D9FF
        );

    color: #071A2E;

    box-shadow:
        0 20px 50px rgba(56,217,255,.35);
}

.dr1064heroBtnPrimary:hover {

    transform:
        translateY(-4px);
}

.dr1064heroBtnSecondary {

    border:
        1px solid rgba(255,255,255,.18);

    color: #ffffff;

    background:
        rgba(255,255,255,.05);

    backdrop-filter: blur(20px);
}

.dr1064heroBtnSecondary:hover {

    background:
        rgba(255,255,255,.10);
}

/* ==================================================
   HIGHLIGHTS
================================================== */

.dr1064heroHighlights {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;
}

.dr1064heroHighlights div {

    padding: 18px;

    border-radius: 18px;

    background:
        rgba(255,255,255,.05);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);
}

.dr1064heroHighlights strong {

    display: block;

    color: #38D9FF;

    margin-bottom: 6px;
}

.dr1064heroHighlights span {

    font-size: 13px;

    color:
        rgba(255,255,255,.70);
}

/* ==================================================
   CARD
================================================== */

.dr1064heroCard {

    position: relative;

    z-index: 5;

    padding: 40px;

    border-radius: 30px;

    background:
        rgba(255,255,255,.06);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(30px);

    box-shadow:
        0 30px 80px rgba(0,0,0,.35);

    animation:
        dr1064Float 5s ease-in-out infinite;
}

.dr1064heroCard h2 {

    margin-bottom: 25px;

    font-size: 28px;
}

.dr1064heroCard ul {

    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.dr1064heroCard li {

    margin-bottom: 14px;

    color:
        rgba(255,255,255,.85);
}

.dr1064heroContact {

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dr1064heroContact a {

    color: #38D9FF;

    text-decoration: none;
}

/* ==================================================
   INDUSTRIES STRIP
================================================== */

.dr1064heroIndustries {

    position: relative;

    z-index: 5;

    display: flex;
    gap: 25px;

    justify-content: center;

    flex-wrap: wrap;

    padding: 25px;

    background:
        rgba(255,255,255,.05);

    border-top:
        1px solid rgba(255,255,255,.08);
}

.dr1064heroIndustries span {

    color:
        rgba(255,255,255,.85);

    font-weight: 600;
}

/* ==================================================
   FLOAT ANIMATION
================================================== */

@keyframes dr1064Float {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width:991px){

    .dr1064heroContainer{

        grid-template-columns:1fr;

        text-align:center;
    }

    .dr1064heroContent h1{

        font-size:48px;
    }

    .dr1064heroHighlights{

        grid-template-columns:1fr 1fr;
    }
}

@media (max-width:768px){

    .dr1064hero{

        min-height:auto;
    }

    .dr1064heroContainer{

        padding:120px 0 60px;
    }

    .dr1064heroContent h1{

        font-size:38px;
    }

    .dr1064heroDescription{

        font-size:16px;
    }

    .dr1064heroHighlights{

        grid-template-columns:1fr;
    }

    .dr1064heroActions{

        justify-content:center;
    }

    .dr1064heroCard{

        padding:28px;
    }
}