/* =========================================
   ABOUT US SECTION
========================================= */

.travel-about {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: #f8fafc;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}


/* =========================================
   CONTAINER
========================================= */

.about-container {
    width: min(1200px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 80px;
}


/* =========================================
   CONTENT
========================================= */

.about-content {
    max-width: 650px;
}

.about-tag {
    display: inline-block;
    margin-bottom: 15px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #0d63d8;
    text-transform: uppercase;
}

.about-content h2 {
    margin: 0 0 22px;

    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.15;
    font-weight: 800;

    color: #071a2f;
}

.about-content h2 span {
    display: block;
    color: #0d63d8;
}

.about-intro {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
    color: #26384d;

    margin-bottom: 15px;
}

.about-content > p:not(.about-intro) {
    color: #667085;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 14px;
}


/* =========================================
   FEATURES
========================================= */

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 15px;

    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 14px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(7, 26, 47, 0.09);
}

.feature-icon {
    min-width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eaf3ff;
    color: #0d63d8;

    font-size: 18px;
}

.about-feature h4 {
    margin: 0 0 3px;

    font-size: 14px;
    font-weight: 700;

    color: #071a2f;
}

.about-feature p {
    margin: 0;

    font-size: 11px;
    color: #7b8794;
}


/* =========================================
   BUTTON
========================================= */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 24px;

    background: #0d63d8;
    color: #ffffff;

    text-decoration: none;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    box-shadow: 0 10px 25px rgba(13, 99, 216, 0.22);

    transition: all 0.3s ease;
}

.about-btn i {
    transition: transform 0.3s ease;
}

.about-btn:hover {
    background: #071a2f;
    transform: translateY(-3px);
}

.about-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   RIGHT VISUAL
========================================= */

.about-visual {
    position: relative;
    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   IMAGE
========================================= */

.about-image-card {
    position: relative;

    width: 100%;
    max-width: 500px;
    height: 530px;

    overflow: hidden;

    border-radius: 25px;

    box-shadow:
        0 30px 70px rgba(7, 26, 47, 0.18);
}

.about-image-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.about-image-card:hover img {
    transform: scale(1.06);
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(7, 26, 47, 0.8),
            transparent 55%
        );
}


/* =========================================
   EXPERIENCE CARD
========================================= */

.experience-card {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 16px 20px;

    background: rgba(255, 255, 255, 0.96);

    border-radius: 14px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15);
}

.experience-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaf3ff;
    color: #0d63d8;

    font-size: 18px;
}

.experience-card strong {
    display: block;

    color: #071a2f;
    font-size: 14px;
}

.experience-card span {
    display: block;

    margin-top: 3px;

    color: #667085;
    font-size: 11px;
}


/* =========================================
   FLOATING BADGE
========================================= */

.travel-badge {
    position: absolute;

    top: 30px;
    right: -25px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px 18px;

    background: #ffffff;

    border-radius: 13px;

    box-shadow:
        0 15px 40px rgba(7, 26, 47, 0.14);

    animation: floatingBadge 3s ease-in-out infinite;
}

.travel-badge > i {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #0d63d8;
    color: #ffffff;
}

.travel-badge strong {
    display: block;

    color: #071a2f;
    font-size: 13px;
}

.travel-badge span {
    display: block;

    margin-top: 2px;

    color: #7b8794;
    font-size: 10px;
}

@keyframes floatingBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .about-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-visual {
        min-height: auto;
    }

    .about-image-card {
        max-width: 650px;
        height: 500px;
    }

    .travel-badge {
        right: 0;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 700px) {

    .travel-about {
        padding: 70px 0;
    }

    .about-container {
        width: 90%;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 35px;
    }

    .about-intro {
        font-size: 16px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-image-card {
        height: 430px;
        border-radius: 20px;
    }

    .experience-card {
        left: 15px;
        bottom: 15px;
        right: 15px;
    }

    .travel-badge {
        top: -15px;
        right: 5px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {

    .travel-about {
        padding: 55px 0;
    }

    .about-container {
        width: 92%;
    }

    .about-tag {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-content > p {
        font-size: 14px;
    }

    .about-intro {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-feature {
        padding: 12px;
    }

    .feature-icon {
        min-width: 40px;
        height: 40px;
    }

    .about-image-card {
        height: 370px;
    }

    .experience-card {
        padding: 12px 14px;
    }

    .experience-icon {
        width: 38px;
        height: 38px;
    }

    .travel-badge {
        padding: 11px 13px;
    }

    .travel-badge > i {
        width: 35px;
        height: 35px;
    }

    .about-btn {
        width: 100%;
        justify-content: center;
    }
}
