
/* =========================================================
   BODRUM ADVENTURE - PREMIUM PROJECT CARDS
========================================================= */

.ba-project-grid {
    position: relative;
}


/* =========================================================
   CARD
========================================================= */

.ba-project-card {
    position: relative;
    height: 100%;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f8fbff 45%,
            #eef7ff 100%
        );

    border-radius: 24px;

    overflow: hidden;

    border: 1px solid rgba(20, 120, 255, 0.10);

    box-shadow:
        0 15px 40px rgba(15, 23, 42, 0.08),
        0 4px 12px rgba(15, 23, 42, 0.04);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    isolation: isolate;
}


/* =========================================================
   LIGHT GLOW
========================================================= */

.ba-project-glow {
    position: absolute;

    width: 180px;
    height: 180px;

    top: -80px;
    right: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 195, 255, .45) 0%,
            rgba(67, 97, 238, .20) 45%,
            transparent 72%
        );

    filter: blur(18px);

    opacity: .55;

    transition:
        transform .45s ease,
        opacity .45s ease;

    z-index: 0;

    pointer-events: none;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.ba-project-image-wrap {
    position: relative;

    display: block;

    height: 245px;

    overflow: hidden;

    text-decoration: none;

    z-index: 2;
}


.ba-project-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .6s cubic-bezier(.2,.75,.25,1),
        filter .45s ease;
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.ba-project-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(6, 20, 38, .78) 0%,
            rgba(6, 20, 38, .25) 42%,
            transparent 72%
        );

    transition: background .4s ease;
}


/* =========================================================
   PRICE BADGE
========================================================= */

.ba-project-price {
    position: absolute;

    top: 18px;
    left: 18px;

    padding: 10px 15px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            #ff8a00,
            #ff4d00
        );

    color: #fff;

    box-shadow:
        0 8px 25px rgba(255, 91, 0, .35);

    display: flex;

    flex-direction: column;

    line-height: 1.05;

    z-index: 5;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.ba-project-price-value {
    font-size: 18px;

    font-weight: 800;

    letter-spacing: -.3px;
}


.ba-project-price small {
    font-size: 10px;

    margin-top: 4px;

    opacity: .85;

    text-transform: uppercase;

    letter-spacing: .8px;
}


/* =========================================================
   VIEW BUTTON ON IMAGE
========================================================= */

.ba-project-view {
    position: absolute;

    bottom: 18px;
    right: 18px;

    opacity: 0;

    transform:
        translateX(-12px)
        scale(.85);

    transition:
        opacity .35s ease,
        transform .35s ease;

    z-index: 5;
}


.ba-project-view span {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.96);

    color: #0b1f33;

    font-size: 16px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.18);
}


/* =========================================================
   CONTENT
========================================================= */

.ba-project-content {
    position: relative;

    z-index: 3;

    padding: 24px 24px 26px;
}


.ba-project-small-title {
    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.7px;

    color: #168bd8;

    margin-bottom: 9px;
}


/* =========================================================
   TITLE
========================================================= */

.ba-project-title {
    margin: 0;

    font-size: 21px;

    font-weight: 800;

    line-height: 1.25;

    letter-spacing: -.5px;
}


.ba-project-title a {
    color: #0c2238;

    text-decoration: none;

    transition: color .25s ease;
}


/* =========================================================
   ANIMATED LINE
========================================================= */

.ba-project-line {
    width: 100%;

    height: 2px;

    margin: 18px 0;

    background:
        rgba(12, 34, 56, .08);

    overflow: hidden;

    border-radius: 10px;
}


.ba-project-line span {
    display: block;

    width: 45px;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #00c6ff,
            #0072ff,
            #ff7b00
        );

    transition: width .45s ease;
}


/* =========================================================
   BUTTON
========================================================= */

.ba-project-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #0c2238;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .5px;

    transition:
        gap .3s ease,
        color .3s ease;
}


.ba-project-button i {
    font-size: 12px;

    transition:
        transform .3s ease;
}


/* =========================================================
   HOVER
========================================================= */

.ba-project-card:hover {
    transform:
        translateY(-10px)
        scale(1.015);

    border-color:
        rgba(0, 166, 255, .28);

    box-shadow:
        0 25px 65px rgba(0, 99, 180, .17),
        0 8px 25px rgba(15, 23, 42, .09);
}


.ba-project-card:hover .ba-project-image {
    transform: scale(1.10);

    filter:
        saturate(1.15)
        contrast(1.05);
}


.ba-project-card:hover .ba-project-overlay {
    background:
        linear-gradient(
            to top,
            rgba(3, 27, 51, .88) 0%,
            rgba(0, 123, 255, .18) 48%,
            transparent 75%
        );
}


.ba-project-card:hover .ba-project-glow {
    transform:
        translate(-30px, 40px)
        scale(1.35);

    opacity: .9;
}


.ba-project-card:hover .ba-project-price {
    transform:
        translateY(-3px)
        scale(1.05);

    box-shadow:
        0 15px 35px rgba(255, 91, 0, .46);
}


.ba-project-card:hover .ba-project-view {
    opacity: 1;

    transform:
        translateX(0)
        scale(1);
}


.ba-project-card:hover .ba-project-title a {
    color: #0077d9;
}


.ba-project-card:hover .ba-project-line span {
    width: 100%;
}


.ba-project-card:hover .ba-project-button {
    gap: 15px;

    color: #0077d9;
}


.ba-project-card:hover .ba-project-button i {
    transform: translateX(4px);
}


/* =========================================================
   SHINE EFFECT
========================================================= */

.ba-project-card::before {
    content: "";

    position: absolute;

    top: -120%;
    left: -60%;

    width: 45%;
    height: 300%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.55),
            transparent
        );

    transform: rotate(24deg);

    opacity: 0;

    transition:
        left .75s ease,
        opacity .25s ease;

    z-index: 10;

    pointer-events: none;
}


.ba-project-card:hover::before {
    left: 130%;

    opacity: 1;
}


/* =========================================================
   PULSING PRICE LIGHT
========================================================= */

@keyframes baPricePulse {

    0% {
        box-shadow:
            0 8px 24px rgba(255, 91, 0, .25);
    }

    50% {
        box-shadow:
            0 8px 34px rgba(255, 91, 0, .50);
    }

    100% {
        box-shadow:
            0 8px 24px rgba(255, 91, 0, .25);
    }
}


.ba-project-price {
    animation:
        baPricePulse
        2.3s
        ease-in-out
        infinite;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .ba-project-image-wrap {
        height: 235px;
    }

}


@media (max-width: 767px) {

    .ba-project-card {
        border-radius: 20px;
    }

    .ba-project-image-wrap {
        height: 230px;
    }

    .ba-project-content {
        padding:
            21px
            20px
            23px;
    }

    .ba-project-title {
        font-size: 20px;
    }

}


@media (max-width: 575px) {

    .ba-project-image-wrap {
        height: 220px;
    }

}

/* =========================================================
   ACTIVITIES SECTION
========================================================= */

.ba-activities-section {
    position: relative;

    padding:
        85px
        0
        95px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(0, 174, 255, .08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(255, 125, 0, .07),
            transparent 30%
        ),
        #ffffff;
}


.ba-activities-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 40px;
}


.ba-section-tag {
    display: inline-block;

    margin-bottom: 9px;

    color: #168bd8;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.ba-section-title {
    margin: 0;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 850;

    line-height: 1;

    color: #0b1f33;

    letter-spacing: -1.5px;
}


.ba-activities-heading p {
    max-width: 440px;

    margin: 0;

    color: #697586;

    font-size: 14px;

    line-height: 1.8;
}


@media (max-width: 767px) {

    .ba-activities-section {
        padding:
            60px
            0
            70px;
    }

    .ba-activities-heading {
        display: block;

        margin-bottom: 30px;
    }

    .ba-activities-heading p {
        margin-top: 17px;
    }

}