/*=========================================================
 RAEES IMPORT & EXPORT
 EXPORT SECTION — ULTRA PREMIUM FINAL
=========================================================*/


/*=========================================================
 1. SECTION
=========================================================*/

.export-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: clamp(90px, 8vw, 145px) 0;

    background:
        radial-gradient(
            circle at 82% 35%,
            rgba(184, 125, 38, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 8% 85%,
            rgba(184, 125, 38, 0.055),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #fffdf9 0%,
            #fbf7ef 48%,
            #fffdf9 100%
        );
}


/* subtle luxury texture */

.export-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;

    opacity: 0.42;

    background-image:
        linear-gradient(
            rgba(24, 20, 15, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(24, 20, 15, 0.018) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 18%,
        #000 82%,
        transparent
    );
}


/* decorative glow */

.export-section::after {
    content: "";
    position: absolute;

    width: 520px;
    height: 520px;

    right: -220px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: rgba(184, 125, 38, 0.08);

    filter: blur(100px);

    z-index: -1;
    pointer-events: none;
}


/*=========================================================
 2. MAIN LAYOUT
=========================================================*/

.export-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(420px, 0.82fr);

    align-items: center;

    gap: clamp(70px, 8vw, 135px);
}


/*=========================================================
 3. CONTENT
=========================================================*/

.export-content {
    position: relative;
    z-index: 3;

    max-width: 680px;
}


/*=========================================================
 4. SECTION HEADING
=========================================================*/

.export-content .section-heading {
    margin-bottom: 28px;
}


.export-content .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 18px;

    color: #a76c18;

    font-size: 11px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.19em;

    text-transform: uppercase;
}


.export-content .section-kicker::before {
    content: "";

    width: 32px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #c99548
    );
}


.export-content .section-heading h2 {
    max-width: 650px;

    margin: 0;

    color: #17130f;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(40px, 4.2vw, 66px);

    font-weight: 500;

    line-height: 1.06;

    letter-spacing: -0.035em;

    text-wrap: balance;
}


/*=========================================================
 5. LEAD TEXT
=========================================================*/

.export-lead {
    max-width: 620px;

    margin:
        0
        0
        34px;

    color: #655d53;

    font-size: clamp(16px, 1.15vw, 18px);

    line-height: 1.85;
}


/*=========================================================
 6. FEATURES WRAPPER
=========================================================*/

.export-features {
    display: grid;

    gap: 13px;

    margin-top: 32px;
}


/*=========================================================
 7. FEATURE CARD
=========================================================*/

.export-feature {
    position: relative;

    display: grid;

    grid-template-columns: 58px 1fr;

    align-items: center;

    gap: 18px;

    min-height: 96px;

    padding: 18px 22px;

    overflow: hidden;

    border:
        1px solid
        rgba(46, 37, 27, 0.09);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.92),
            rgba(255, 253, 248, 0.76)
        );

    box-shadow:
        0 1px 0 rgba(255,255,255,0.9) inset,
        0 14px 45px rgba(42, 31, 18, 0.035);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* premium shine */

.export-feature::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: -90px;
    right: -70px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(194, 139, 56, 0.10),
            transparent 68%
        );

    pointer-events: none;

    transition: 0.4s ease;
}


/* gold edge */

.export-feature::after {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 2px;
    height: 0;

    transform: translateY(-50%);

    border-radius: 10px;

    background:
        linear-gradient(
            180deg,
            #d7ad69,
            #a86d19
        );

    transition: height 0.35s ease;
}


.export-feature:hover {
    transform: translateX(7px);

    border-color:
        rgba(184, 125, 38, 0.23);

    box-shadow:
        0 20px 55px
        rgba(48, 34, 18, 0.08);
}


.export-feature:hover::after {
    height: 48%;
}


/*=========================================================
 8. FEATURE ICON
=========================================================*/

.export-feature-icon {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    border:
        1px solid
        rgba(183, 124, 37, 0.16);

    border-radius: 16px;

    color: #a76c18;

    background:
        linear-gradient(
            145deg,
            #f9ecd5,
            #f2ddba
        );

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,0.85);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}


.export-feature-icon i {
    font-size: 18px;
}


.export-feature:hover
.export-feature-icon {
    transform:
        translateY(-2px)
        rotate(-3deg);

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #c48a32,
            #9f6414
        );
}


/*=========================================================
 9. FEATURE TEXT
=========================================================*/

.export-feature strong {
    display: block;

    margin-bottom: 6px;

    color: #1c1712;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.3;
}


.export-feature p {
    margin: 0;

    color: #70675c;

    font-size: 13px;

    line-height: 1.65;
}


/*=========================================================
 10. ACTIONS
=========================================================*/

.export-actions {
    display: flex;

    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}


/*=========================================================
 11. PRIMARY BUTTON
=========================================================*/

.export-actions .btn-primary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    min-height: 52px;

    padding: 0 24px;

    border: 1px solid #17130f;

    border-radius: 11px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #1d1813,
            #100d0a
        );

    box-shadow:
        0 12px 28px
        rgba(24, 18, 12, 0.16);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.export-actions .btn-primary i {
    font-size: 11px;

    color: #d7a64e;

    transition: transform 0.3s ease;
}


.export-actions .btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 36px
        rgba(24, 18, 12, 0.22);
}


.export-actions .btn-primary:hover i {
    transform: translateX(4px);
}


/*=========================================================
 12. WHATSAPP BUTTON
=========================================================*/

.export-actions .btn-whatsapp {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 0 23px;

    border:
        1px solid
        rgba(18, 146, 85, 0.18);

    border-radius: 11px;

    color: #087a46;

    background:
        linear-gradient(
            135deg,
            #f4fff9,
            #eafaf2
        );

    box-shadow:
        0 10px 28px
        rgba(25, 151, 89, 0.07);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.export-actions
.btn-whatsapp i {
    font-size: 17px;
}


.export-actions
.btn-whatsapp:hover {
    transform: translateY(-3px);

    color: #ffffff;

    background: #128c55;

    box-shadow:
        0 16px 35px
        rgba(18, 140, 85, 0.20);
}


/*=========================================================
 13. VISUAL AREA
=========================================================*/

.export-visual {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    min-width: 0;
}


/* decorative corner */

.export-visual::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    top: -30px;
    right: -28px;

    border-top:
        1px solid
        rgba(180, 121, 33, 0.46);

    border-right:
        1px solid
        rgba(180, 121, 33, 0.46);

    border-radius: 0 28px 0 0;

    pointer-events: none;
}


.export-visual::after {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    left: -26px;
    bottom: -26px;

    border-left:
        1px solid
        rgba(180, 121, 33, 0.32);

    border-bottom:
        1px solid
        rgba(180, 121, 33, 0.32);

    pointer-events: none;
}


/*=========================================================
 14. IMAGE CARD
=========================================================*/

.export-image-card {
    position: relative;

    width: min(100%, 570px);

    aspect-ratio: 1 / 1.04;

    padding: 11px;

    border:
        1px solid
        rgba(177, 119, 34, 0.15);

    border-radius: 30px;

    background:
        rgba(255,255,255,0.86);

    box-shadow:
        0 35px 85px
        rgba(44, 31, 16, 0.14),
        0 7px 20px
        rgba(44, 31, 16, 0.05),
        inset 0 1px 0
        rgba(255,255,255,1);

    transform:
        perspective(1200px)
        translateZ(0);

    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.45s ease;
}


.export-image-card:hover {
    transform:
        perspective(1200px)
        translateY(-6px);

    box-shadow:
        0 42px 100px
        rgba(44, 31, 16, 0.18),
        0 10px 24px
        rgba(44, 31, 16, 0.06);
}


/*=========================================================
 15. IMAGE
=========================================================*/

.export-image-card > img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 21px;

    background:
        linear-gradient(
            180deg,
            #f8f4ec,
            #eee8dd
        );
}


/*=========================================================
 16. IMAGE OVERLAY
=========================================================*/

.export-image-card::after {
    content: "";

    position: absolute;

    inset: 11px;

    z-index: 1;

    border-radius: 21px;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 48%,
            rgba(20, 15, 10, 0.06) 100%
        );
}


/*=========================================================
 17. LOCATION BADGE
=========================================================*/

.export-visual-badge {
    position: absolute;

    z-index: 4;

    left: -48px;
    bottom: 44px;

    display: flex;

    align-items: center;

    gap: 14px;

    min-width: 215px;

    padding: 15px 18px;

    border:
        1px solid
        rgba(44, 35, 24, 0.08);

    border-radius: 17px;

    background:
        rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        0 20px 45px
        rgba(38, 27, 14, 0.14);
}


/* badge icon */

.export-visual-badge > i {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    border-radius: 13px;

    color: #a56b19;

    background:
        linear-gradient(
            145deg,
            #f8ead0,
            #f0dab4
        );

    font-size: 16px;
}


/* badge text */

.export-visual-badge span {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.export-visual-badge small {
    color: #8c8275;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.export-visual-badge strong {
    color: #17130f;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 15px;

    line-height: 1.2;
}


/*=========================================================
 18. LARGE DESKTOP
=========================================================*/

@media (min-width: 1400px) {

    .export-layout {
        grid-template-columns:
            minmax(0, 1fr)
            570px;
    }

}


/*=========================================================
 19. LAPTOP
=========================================================*/

@media (max-width: 1199px) {

    .export-layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(380px, 0.85fr);

        gap: 65px;
    }


    .export-content
    .section-heading h2 {
        font-size: clamp(38px, 4.5vw, 55px);
    }


    .export-visual-badge {
        left: -28px;
    }

}


/*=========================================================
 20. TABLET
=========================================================*/

@media (max-width: 991px) {

    .export-section {
        padding:
            85px
            0;
    }


    .export-layout {
        grid-template-columns: 1fr;

        gap: 65px;
    }


    .export-content {
        max-width: 760px;
    }


    .export-visual {
        width: 100%;

        max-width: 650px;

        margin: 0 auto;
    }


    .export-image-card {
        width: min(100%, 580px);
    }

}


/*=========================================================
 21. MOBILE
=========================================================*/

@media (max-width: 767px) {

    .export-section {
        padding:
            68px
            0;
    }


    .export-layout {
        gap: 52px;
    }


    .export-content
    .section-heading {
        margin-bottom: 22px;
    }


    .export-content
    .section-heading h2 {
        font-size: clamp(34px, 10vw, 45px);

        line-height: 1.08;
    }


    .export-lead {
        margin-bottom: 27px;

        font-size: 15px;

        line-height: 1.75;
    }


    .export-features {
        gap: 11px;

        margin-top: 26px;
    }


    .export-feature {
        grid-template-columns: 50px 1fr;

        gap: 14px;

        min-height: auto;

        padding: 16px;

        border-radius: 15px;
    }


    .export-feature-icon {
        width: 50px;
        height: 50px;

        border-radius: 13px;
    }


    .export-feature strong {
        font-size: 14px;
    }


    .export-feature p {
        font-size: 12px;

        line-height: 1.55;
    }


    .export-feature:hover {
        transform: none;
    }


    .export-actions {
        display: grid;

        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 26px;
    }


    .export-actions .btn {
        width: 100%;
    }


    .export-visual::before {
        width: 90px;
        height: 90px;

        right: -8px;
        top: -17px;
    }


    .export-visual::after {
        width: 70px;
        height: 70px;

        left: -7px;
        bottom: -15px;
    }


    .export-image-card {
        width: calc(100% - 14px);

        padding: 7px;

        border-radius: 22px;
    }


    .export-image-card > img,
    .export-image-card::after {
        border-radius: 16px;
    }


    .export-image-card::after {
        inset: 7px;
    }


    .export-visual-badge {
        left: 17px;
        bottom: 18px;

        min-width: 0;

        padding: 11px 13px;

        gap: 10px;

        border-radius: 13px;
    }


    .export-visual-badge > i {
        width: 38px;
        height: 38px;

        border-radius: 10px;

        font-size: 14px;
    }


    .export-visual-badge strong {
        font-size: 13px;
    }

}


/*=========================================================
 22. SMALL MOBILE
=========================================================*/

@media (max-width: 420px) {

    .export-section {
        padding:
            58px
            0;
    }


    .export-content
    .section-heading h2 {
        font-size: 34px;
    }


    .export-feature {
        grid-template-columns: 46px 1fr;

        padding: 14px;
    }


    .export-feature-icon {
        width: 46px;
        height: 46px;
    }


    .export-visual-badge {
        right: 14px;
        left: 14px;

        width: auto;
    }

}


/*=========================================================
 23. REDUCED MOTION
=========================================================*/

@media (prefers-reduced-motion: reduce) {

    .export-feature,
    .export-feature-icon,
    .export-image-card,
    .export-actions .btn {
        transition: none !important;
    }


    .export-feature:hover,
    .export-image-card:hover,
    .export-actions .btn:hover {
        transform: none !important;
    }

}