/* =========================================================
   ABOUT US - PREMIUM TOUR & TRAVELS
========================================================= */

.travel-about {
    position: relative;
    width: 100%;
    padding: 100px 0 85px;
    background: #ffffff;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.about-container {
    width: min(1180px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;

    gap: 70px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.about-content {
    position: relative;
    z-index: 2;
}


.about-tag {
    display: inline-block;

    margin-bottom: 14px;

    color: #d49b2a;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.about-content h2 {
    margin: 0 0 20px;

    color: #10243e;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;

    font-weight: 800;
}


.about-content h2 span {
    display: block;

    color: #d49b2a;
}


.about-intro {
    max-width: 620px;

    margin: 0 0 15px;

    color: #27384c;

    font-size: 18px;
    line-height: 1.7;

    font-weight: 500;
}


.about-text {
    max-width: 650px;

    margin: 0 0 32px;

    color: #6d7886;

    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   ABOUT FEATURES
========================================================= */

.about-features {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-top: 20px;
}


.about-feature {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    padding: 18px;

    background: #f8fafc;

    border: 1px solid #edf0f4;

    border-radius: 14px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.about-feature:hover {
    transform: translateY(-6px);

    border-color: rgba(212, 155, 42, 0.35);

    box-shadow:
        0 15px 35px rgba(16, 36, 62, 0.10);
}


/* =========================================================
   FEATURE ICON
========================================================= */

.feature-icon {
    min-width: 45px;
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #10243e;

    border-radius: 12px;

    color: #d49b2a;

    font-size: 17px;

    transition: all 0.35s ease;
}


.about-feature:hover .feature-icon {
    background: #d49b2a;
    color: #ffffff;

    transform: rotateY(180deg);
}


.about-feature h4 {
    margin: 0 0 5px;

    color: #10243e;

    font-size: 15px;
    font-weight: 700;
}


.about-feature p {
    margin: 0;

    color: #788493;

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   ABOUT BUTTON
========================================================= */

.about-action {
    margin-top: 32px;
}


.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 14px 25px;

    background: #10243e;

    border-radius: 50px;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    box-shadow:
        0 12px 25px rgba(16, 36, 62, 0.18);

    transition: all 0.35s ease;
}


.about-btn i {
    transition: transform 0.35s ease;
}


.about-btn:hover {
    background: #d49b2a;

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(212, 155, 42, 0.25);
}


.about-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   RIGHT IMAGE AREA
========================================================= */

.about-visual {
    position: relative;

    width: 100%;
}


.about-image-card {
    position: relative;

    width: 100%;
    min-height: 560px;

    overflow: hidden;

    border-radius: 28px;

    background: #10243e;

    box-shadow:
        0 25px 60px rgba(16, 36, 62, 0.18);
}


.about-image-card img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}


.about-image-card:hover img {
    transform: scale(1.06);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.image-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(16, 36, 62, 0.03) 25%,
            rgba(16, 36, 62, 0.68) 100%
        );
}


/* =========================================================
   EXPERIENCE FLOATING CARD
========================================================= */

.experience-card {
    position: absolute;

    left: 25px;
    bottom: 25px;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 16px 20px;

    background: rgba(255, 255, 255, 0.96);

    border-radius: 15px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.16);

    backdrop-filter: blur(8px);

    animation: floatCard 4s ease-in-out infinite;
}


.experience-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #10243e;

    border-radius: 12px;

    color: #d49b2a;

    font-size: 17px;
}


.experience-card strong {
    display: block;

    color: #10243e;

    font-size: 14px;
}


.experience-card span {
    display: block;

    margin-top: 3px;

    color: #7b8490;

    font-size: 11px;
}


/* =========================================================
   TRAVEL INFO CARD
========================================================= */

.travel-info-card {
    position: absolute;

    top: 30px;
    right: 25px;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 13px 17px;

    background: rgba(16, 36, 62, 0.94);

    border-radius: 13px;

    color: #ffffff;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);
}


.travel-info-card > i {
    color: #d49b2a;

    font-size: 17px;
}


.travel-info-card strong {
    display: block;

    color: #ffffff;

    font-size: 11px;
    font-weight: 600;
}


.travel-info-card span {
    display: block;

    margin-top: 2px;

    color: #c6ced8;

    font-size: 9px;
}


/* =========================================================
   FLOATING ANIMATION
========================================================= */

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =========================================================
   ABOUT STATS
========================================================= */

.about-stats {
    width: min(1180px, 92%);

    margin: 65px auto 0;

    padding-top: 35px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;

    border-top: 1px solid #e8edf2;
}


.about-stat {
    position: relative;

    padding: 20px 12px;

    text-align: center;

    transition: transform 0.35s ease;
}


.about-stat:hover {
    transform: translateY(-5px);
}


.about-stat:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 15px;
    right: 0;

    width: 1px;
    height: 55px;

    background: #e2e7ec;
}


.stat-number {
    color: #10243e;

    font-size: 31px;
    line-height: 1;

    font-weight: 800;
}


.stat-number .counter {
    color: #d49b2a;
}


.stat-label {
    margin-top: 9px;

    color: #7a8592;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}


/* =========================================================
   MISSION & VISION
========================================================= */

.mission-vision {
    width: min(1180px, 92%);

    margin: 45px auto 0;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}


.mv-card {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 20px;

    padding: 28px;

    overflow: hidden;

    background: #f7f9fb;

    border: 1px solid #e8edf2;

    border-radius: 20px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.mv-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 100%;

    background: #d49b2a;
}


.mv-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(16, 36, 62, 0.10);
}


/* =========================================================
   MISSION / VISION ICON
========================================================= */

.mv-icon {
    min-width: 55px;
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #10243e;

    border-radius: 15px;

    color: #d49b2a;

    font-size: 21px;

    transition: all 0.35s ease;
}


.mv-card:hover .mv-icon {
    background: #d49b2a;
    color: #ffffff;

    transform: rotateY(180deg);
}


/* =========================================================
   MISSION / VISION CONTENT
========================================================= */

.mv-content span {
    display: block;

    margin-bottom: 7px;

    color: #d49b2a;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.mv-content h3 {
    margin: 0 0 9px;

    color: #10243e;

    font-size: 19px;

    font-weight: 700;
}


.mv-content p {
    margin: 0;

    color: #74808d;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   FINAL CTA
========================================================= */

.about-final-cta {
    position: relative;

    width: min(1180px, 92%);

    min-height: 130px;

    margin: 45px auto 0;

    padding: 30px 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    overflow: hidden;

    background: #10243e;

    border-radius: 22px;

    box-shadow:
        0 18px 45px rgba(16, 36, 62, 0.13);

    /* IMPORTANT:
       Footer se CTA ko separate rakhega */
    margin-bottom: 85px;
}


/* =========================================================
   CTA DECORATIVE CIRCLES
========================================================= */

.about-final-cta::before {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    top: -125px;
    right: -75px;

    border: 45px solid rgba(212, 155, 42, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


.about-final-cta::after {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    right: 120px;
    bottom: -95px;

    border: 25px solid rgba(255, 255, 255, 0.04);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.cta-content {
    position: relative;

    z-index: 2;
}


.cta-content span {
    display: block;

    margin-bottom: 6px;

    color: #d49b2a;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.8px;
}


.cta-content h3 {
    margin: 0 0 6px;

    color: #ffffff;

    font-size: 24px;
    font-weight: 700;

    line-height: 1.3;
}


.cta-content p {
    margin: 0;

    color: #c4ccd5;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.about-plan-btn {
    position: relative;

    z-index: 2;

    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 25px;

    background: #d49b2a;

    border-radius: 50px;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition: all 0.35s ease;
}


.about-plan-btn i {
    transition: transform 0.35s ease;
}


.about-plan-btn:hover {
    background: #ffffff;

    color: #10243e;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15);
}


.about-plan-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.reveal-left {
    transform: translateX(-50px);
}


.reveal-right {
    transform: translateX(50px);
}


.reveal-up {
    transform: translateY(35px);
}


.reveal-left.show,
.reveal-right.show,
.reveal-up.show {
    opacity: 1;

    transform: translate(0);
}


/* =========================================================
   TABLET - 1100px
========================================================= */

@media (max-width: 1100px) {

    .about-container {
        gap: 45px;
    }


    .about-content h2 {
        font-size: 44px;
    }


    .about-image-card {
        min-height: 510px;
    }

}


/* =========================================================
   TABLET - 950px
========================================================= */

@media (max-width: 950px) {

    .travel-about {
        padding: 80px 0 65px;
    }


    .about-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .about-content {
        max-width: 800px;

        margin: 0 auto;
    }


    .about-image-card {
        max-width: 720px;

        min-height: 500px;

        margin: 0 auto;
    }


    .about-stats,
    .mission-vision,
    .about-final-cta {
        width: min(720px, 92%);
    }


    .about-stats {
        margin-top: 55px;
    }


    .mission-vision {
        margin-top: 40px;
    }

}


/* =========================================================
   MOBILE - 700px
========================================================= */

@media (max-width: 700px) {

    .about-features {
        grid-template-columns: 1fr;
    }


    .mission-vision {
        grid-template-columns: 1fr;
    }


    .about-final-cta {
        flex-direction: column;

        align-items: flex-start;

        gap: 22px;
    }


    .about-plan-btn {
        width: 100%;
    }

}


/* =========================================================
   MOBILE - 600px
========================================================= */

@media (max-width: 600px) {

    .travel-about {
        padding: 65px 0 50px;
    }


    .about-container {
        width: 90%;

        gap: 35px;
    }


    .about-tag {
        font-size: 11px;

        letter-spacing: 1.5px;
    }


    .about-content h2 {
        margin-bottom: 17px;

        font-size: 34px;

        line-height: 1.15;
    }


    .about-intro {
        font-size: 16px;

        line-height: 1.7;
    }


    .about-text {
        margin-bottom: 25px;

        font-size: 14px;

        line-height: 1.8;
    }


    /* FEATURES */

    .about-features {
        grid-template-columns: 1fr;

        gap: 13px;

        margin-top: 15px;
    }


    .about-feature {
        padding: 15px;

        border-radius: 13px;
    }


    .feature-icon {
        min-width: 43px;
        width: 43px;
        height: 43px;
    }


    .about-feature h4 {
        font-size: 14px;
    }


    .about-feature p {
        font-size: 11px;
    }


    /* BUTTON */

    .about-action {
        margin-top: 25px;
    }


    .about-btn {
        width: 100%;

        padding: 14px 20px;
    }


    /* IMAGE */

    .about-image-card {
        min-height: 420px;

        border-radius: 20px;
    }


    .experience-card {
        left: 15px;
        bottom: 15px;

        max-width: 240px;

        padding: 12px 14px;

        gap: 10px;
    }


    .experience-icon {
        width: 40px;
        height: 40px;

        min-width: 40px;

        font-size: 15px;
    }


    .experience-card strong {
        font-size: 12px;
    }


    .experience-card span {
        font-size: 10px;
    }


    .travel-info-card {
        top: 15px;
        right: 15px;

        padding: 10px 12px;

        gap: 8px;
    }


    .travel-info-card > i {
        font-size: 15px;
    }


    .travel-info-card strong {
        font-size: 9px;
    }


    .travel-info-card span {
        font-size: 8px;
    }


    /* =====================================================
       STATS
    ===================================================== */

    .about-stats {
        width: 90%;

        grid-template-columns: repeat(2, 1fr);

        gap: 0;

        margin-top: 42px;

        padding-top: 25px;
    }


    .about-stat {
        padding: 17px 8px;
    }


    .about-stat:nth-child(2)::after {
        display: block;
    }


    .about-stat:nth-child(4)::after {
        display: none;
    }


    .about-stat:nth-child(3)::after {
        display: none;
    }


    .stat-number {
        font-size: 25px;
    }


    .stat-label {
        margin-top: 8px;

        font-size: 8px;

        letter-spacing: 0.5px;
    }


    /* =====================================================
       MISSION / VISION
    ===================================================== */

    .mission-vision {
        width: 90%;

        margin-top: 30px;

        gap: 15px;
    }


    .mv-card {
        padding: 20px;

        gap: 14px;

        border-radius: 17px;
    }


    .mv-icon {
        min-width: 45px;
        width: 45px;
        height: 45px;

        font-size: 17px;

        border-radius: 12px;
    }


    .mv-content span {
        font-size: 9px;

        letter-spacing: 1.2px;
    }


    .mv-content h3 {
        font-size: 16px;
    }


    .mv-content p {
        font-size: 12px;

        line-height: 1.7;
    }


    /* =====================================================
       CTA
    ===================================================== */

    .about-final-cta {
        width: 90%;

        min-height: auto;

        margin-top: 28px;

        /* Footer se proper gap */
        margin-bottom: 55px;

        padding: 25px 22px;

        border-radius: 18px;

        gap: 20px;
    }


    .cta-content span {
        font-size: 9px;
    }


    .cta-content h3 {
        font-size: 21px;

        line-height: 1.35;
    }


    .cta-content p {
        font-size: 12px;
    }


    .about-plan-btn {
        width: 100%;

        padding: 13px 20px;

        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE - 380px
========================================================= */

@media (max-width: 380px) {

    .about-content h2 {
        font-size: 30px;
    }


    .about-image-card {
        min-height: 370px;
    }


    .experience-card {
        max-width: 220px;
    }


    .stat-number {
        font-size: 22px;
    }


    .stat-label {
        font-size: 7px;
    }


    .mv-card {
        padding: 17px;
    }


    .mv-content h3 {
        font-size: 15px;
    }


    .cta-content h3 {
        font-size: 19px;
    }

}


/* =========================================================
   VERY SMALL MOBILE - 320px
========================================================= */

@media (max-width: 320px) {

    .about-container,
    .about-stats,
    .mission-vision,
    .about-final-cta {
        width: 92%;
    }


    .about-content h2 {
        font-size: 28px;
    }


    .about-image-card {
        min-height: 340px;
    }


    .travel-info-card {
        right: 10px;
        top: 10px;
    }


    .experience-card {
        left: 10px;
        bottom: 10px;
    }

}