/* ============================================================
   RAEES IMPORT & EXPORT
   HOME — ABOUT SECTION
   ULTRA PREMIUM FINAL / END VERSION
   ============================================================ */


/* ============================================================
   01. SECTION
   ============================================================ */

.about-section {
    --about-black: #17130f;
    --about-black-soft: #28221c;
    --about-gold: #b47a2b;
    --about-gold-light: #d8ae69;
    --about-gold-pale: #f1e2c8;
    --about-cream: #faf6ef;
    --about-white: #ffffff;
    --about-text: #6d655b;
    --about-border: rgba(34, 27, 20, 0.09);

    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: clamp(90px, 8vw, 138px) 0;

    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(190, 137, 61, 0.11),
            transparent 25%
        ),
        radial-gradient(
            circle at 92% 82%,
            rgba(183, 128, 52, 0.075),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #fffefa 0%,
            #faf6ee 48%,
            #fffdf9 100%
        );
}


/* top luxury separator */

.about-section::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: min(1240px, calc(100% - 48px));
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(180, 122, 43, 0.12) 15%,
            rgba(180, 122, 43, 0.38) 50%,
            rgba(180, 122, 43, 0.12) 85%,
            transparent 100%
        );

    pointer-events: none;
}


/* decorative glow */

.about-section::after {
    content: "";

    position: absolute;
    right: -230px;
    bottom: -260px;
    z-index: -1;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(190, 137, 61, 0.11) 0%,
            rgba(190, 137, 61, 0.035) 38%,
            transparent 70%
        );

    pointer-events: none;
}


.about-section .container {
    position: relative;
    z-index: 2;
}


/* ============================================================
   02. MAIN LAYOUT
   ============================================================ */

.about-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1.08fr);

    align-items: center;

    gap: clamp(72px, 8vw, 125px);

    width: 100%;
    max-width: 1220px;

    margin: 0 auto;
}


/* ============================================================
   03. MEDIA COLUMN
   ============================================================ */

.about-media {
    position: relative;
    isolation: isolate;

    width: 100%;
    max-width: 525px;

    margin: 0;
}


/* soft premium shadow */

.about-media::before {
    content: "";

    position: absolute;

    left: 8%;
    right: 4%;
    bottom: -35px;
    z-index: -3;

    height: 72px;

    border-radius: 50%;

    background:
        rgba(31, 24, 17, 0.17);

    filter: blur(38px);

    opacity: 0.65;

    pointer-events: none;
}


/* outer gold corner */

.about-media::after {
    content: "";

    position: absolute;

    top: -24px;
    left: -24px;
    z-index: -1;

    width: 138px;
    height: 138px;

    border-top:
        1px solid rgba(180, 122, 43, 0.48);

    border-left:
        1px solid rgba(180, 122, 43, 0.48);

    border-radius: 25px 0 0 0;

    pointer-events: none;
}


/* ============================================================
   04. IMAGE FRAME
   ============================================================ */

.about-image {
    position: relative;
    isolation: isolate;

    overflow: hidden;

    padding: 10px;

    border:
        1px solid rgba(180, 122, 43, 0.16);

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(250, 245, 236, 0.93)
        );

    box-shadow:
        0 45px 90px rgba(28, 22, 16, 0.13),
        0 18px 40px rgba(28, 22, 16, 0.07),
        0 2px 6px rgba(28, 22, 16, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1);

    transform: translateZ(0);
}


/* dark cinematic overlay */

.about-image::before {
    content: "";

    position: absolute;
    inset: 10px;
    z-index: 2;

    border-radius: 20px;

    background:
        linear-gradient(
            180deg,
            rgba(15, 12, 9, 0) 42%,
            rgba(15, 12, 9, 0.04) 65%,
            rgba(15, 12, 9, 0.22) 100%
        );

    pointer-events: none;
}


/* inner border */

.about-image::after {
    content: "";

    position: absolute;
    inset: 10px;
    z-index: 3;

    border:
        1px solid rgba(255, 255, 255, 0.28);

    border-radius: 20px;

    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.025);

    pointer-events: none;
}


/* ============================================================
   05. IMAGE
   ============================================================ */

.about-image img {
    position: relative;
    z-index: 1;

    display: block;

    width: 100%;
    height: clamp(535px, 40vw, 620px);

    border-radius: 20px;

    object-fit: cover;
    object-position: center;

    filter:
        saturate(0.94)
        contrast(1.025);

    transition:
        transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.7s ease;
}


@media (hover: hover) {

    .about-image:hover img {
        transform: scale(1.045);

        filter:
            saturate(1)
            contrast(1.035);
    }
}


/* ============================================================
   06. EXPERIENCE CARD
   ============================================================ */

.about-experience-card {
    position: absolute;

    right: -34px;
    bottom: 36px;
    z-index: 10;

    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 180px;
    min-height: 124px;

    padding: 22px 24px;

    overflow: hidden;

    border:
        1px solid rgba(216, 174, 105, 0.25);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(31, 26, 20, 0.985) 0%,
            rgba(13, 11, 9, 0.99) 100%
        );

    box-shadow:
        0 28px 55px rgba(14, 11, 8, 0.28),
        0 8px 18px rgba(14, 11, 8, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}


/* glow */

.about-experience-card::before {
    content: "";

    position: absolute;

    top: -65px;
    right: -55px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(220, 173, 98, 0.28),
            rgba(220, 173, 98, 0.04) 50%,
            transparent 72%
        );

    pointer-events: none;
}


/* top gold accent */

.about-experience-card::after {
    content: "";

    position: absolute;

    top: 0;
    left: 24px;

    width: 48px;
    height: 2px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #a96e26,
            #e5bd78
        );
}


.about-experience-card strong {
    position: relative;
    z-index: 2;

    display: block;

    margin: 0 0 8px;

    color: #d9ab61;

    font-size: clamp(2.2rem, 3vw, 2.85rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.055em;
}


.about-experience-card span {
    position: relative;
    z-index: 2;

    display: block;

    max-width: 110px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.5;

    letter-spacing: 0.035em;
}


/* ============================================================
   07. CONTENT COLUMN
   ============================================================ */

.about-content {
    position: relative;

    width: 100%;
    max-width: 610px;
}


/* decorative tiny line */

.about-content::before {
    content: "";

    position: absolute;

    top: -35px;
    right: 0;

    width: 76px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(180, 122, 43, 0.68)
        );

    pointer-events: none;
}


/* ============================================================
   08. SECTION HEADING
   ============================================================ */

.about-content .section-heading,
.about-content .section-heading-left {
    width: 100%;
    max-width: 100%;

    margin: 0 0 27px;

    text-align: left;
}


/* ============================================================
   09. KICKER
   ============================================================ */

.about-content .section-kicker {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin: 0 0 17px;

    color: var(--about-gold);

    font-size: 0.69rem;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.2em;
    text-transform: uppercase;
}


.about-content .section-kicker::before {
    content: "";

    width: 32px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--about-gold),
            var(--about-gold-light)
        );
}


/* ============================================================
   10. HEADING
   ============================================================ */

.about-content .section-heading h2 {
    position: relative;

    max-width: 600px;

    margin: 0;

    color: var(--about-black);

    font-size: clamp(2.75rem, 4.2vw, 4.65rem);
    font-weight: 500;
    line-height: 0.99;

    letter-spacing: -0.052em;

    text-wrap: balance;
}


/* ============================================================
   11. LEAD
   ============================================================ */

.about-lead {
    position: relative;

    max-width: 585px;

    margin: 0 0 17px;

    color: #29241f;

    font-size: clamp(1rem, 1.2vw, 1.08rem);
    font-weight: 500;
    line-height: 1.82;
}


/* ============================================================
   12. SECOND PARAGRAPH
   ============================================================ */

.about-content > p:not(.about-lead) {
    max-width: 575px;

    margin: 0;

    color: var(--about-text);

    font-size: 0.93rem;
    font-weight: 400;
    line-height: 1.82;
}


/* ============================================================
   13. FEATURE LIST
   ============================================================ */

.about-points {
    display: grid;

    gap: 11px;

    margin: 31px 0 32px;
}


/* ============================================================
   14. FEATURE CARD
   ============================================================ */

.about-point {
    position: relative;

    display: grid;

    grid-template-columns:
        50px
        minmax(0, 1fr);

    align-items: center;

    gap: 17px;

    min-height: 78px;

    padding: 13px 19px;

    overflow: hidden;

    border:
        1px solid var(--about-border);

    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.86),
            rgba(255, 253, 249, 0.68)
        );

    box-shadow:
        0 10px 28px rgba(28, 22, 16, 0.025),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.35s ease,
        box-shadow 0.42s ease,
        background 0.35s ease;
}


/* left gold line */

.about-point::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 0;

    width: 2px;
    height: 0;

    border-radius: 0 5px 5px 0;

    background:
        linear-gradient(
            180deg,
            #e1b76f,
            #9d6726
        );

    transform: translateY(-50%);

    transition:
        height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


/* hover light */

.about-point::after {
    content: "";

    position: absolute;

    top: -80px;
    right: -80px;

    width: 160px;
    height: 160px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(198, 147, 74, 0.09),
            transparent 70%
        );

    opacity: 0;

    transition: opacity 0.35s ease;

    pointer-events: none;
}


@media (hover: hover) {

    .about-point:hover {
        transform: translateX(7px);

        border-color:
            rgba(180, 122, 43, 0.2);

        background:
            rgba(255, 255, 255, 0.96);

        box-shadow:
            0 18px 40px rgba(28, 22, 16, 0.075),
            inset 0 1px 0 rgba(255, 255, 255, 1);
    }

    .about-point:hover::before {
        height: 50%;
    }

    .about-point:hover::after {
        opacity: 1;
    }
}


/* ============================================================
   15. FEATURE ICON
   ============================================================ */

.about-point-icon {
    position: relative;
    z-index: 2;

    display: grid;

    width: 48px;
    height: 48px;

    place-items: center;

    border:
        1px solid rgba(180, 122, 43, 0.12);

    border-radius: 14px;

    color: #8d5d22;

    background:
        linear-gradient(
            145deg,
            #fbf0df 0%,
            #ecd5ad 100%
        );

    box-shadow:
        0 6px 16px rgba(157, 105, 37, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);

    font-size: 0.78rem;

    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease;
}


@media (hover: hover) {

    .about-point:hover .about-point-icon {
        transform:
            translateY(-1px)
            scale(1.055);

        box-shadow:
            0 10px 22px rgba(157, 105, 37, 0.13),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
}


.about-point-icon i {
    line-height: 1;
}


/* ============================================================
   16. FEATURE TEXT
   ============================================================ */

.about-point > div {
    position: relative;
    z-index: 2;

    min-width: 0;
}


.about-point strong {
    display: block;

    margin: 0 0 4px;

    color: #1c1814;

    font-size: 0.91rem;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: -0.01em;
}


.about-point p {
    margin: 0;

    color: #756e65;

    font-size: 0.77rem;
    font-weight: 400;
    line-height: 1.55;
}


/* ============================================================
   17. BUTTON
   ============================================================ */

.about-content > .btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    min-height: 52px;

    margin: 0;

    padding: 0 25px;

    overflow: hidden;

    border-radius: 12px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.about-content > .btn i {
    font-size: 0.78rem;

    transition:
        transform 0.35s ease;
}


@media (hover: hover) {

    .about-content > .btn:hover {
        transform: translateY(-3px);

        box-shadow:
            0 14px 30px rgba(22, 18, 14, 0.14);
    }

    .about-content > .btn:hover i {
        transform: translateX(4px);
    }
}


/* ============================================================
   18. LARGE DESKTOP
   ============================================================ */

@media (min-width: 1400px) {

    .about-section {
        padding:
            125px 0
            130px;
    }

    .about-layout {
        max-width: 1240px;

        gap: 128px;
    }

    .about-media {
        max-width: 535px;
    }

    .about-image img {
        height: 625px;
    }

    .about-content {
        max-width: 620px;
    }
}


/* ============================================================
   19. DESKTOP <= 1200
   ============================================================ */

@media (max-width: 1199px) {

    .about-section {
        padding: 95px 0;
    }

    .about-layout {
        max-width: 1030px;

        grid-template-columns:
            minmax(380px, 0.93fr)
            minmax(0, 1.07fr);

        gap: 68px;
    }

    .about-media {
        max-width: 485px;
    }

    .about-image img {
        height: 550px;
    }

    .about-experience-card {
        right: -20px;
    }

    .about-content .section-heading h2 {
        font-size:
            clamp(2.6rem, 4.2vw, 3.65rem);
    }
}


/* ============================================================
   20. TABLET <= 991
   ============================================================ */

@media (max-width: 991px) {

    .about-section {
        padding: 82px 0;
    }

    .about-layout {
        grid-template-columns: 1fr;

        gap: 65px;

        max-width: 690px;
    }

    .about-media {
        width: min(100%, 570px);
        max-width: 570px;

        margin: 0 auto;
    }

    .about-image img {
        height: 610px;
    }

    .about-experience-card {
        right: -16px;
        bottom: 32px;
    }

    .about-content {
        max-width: 650px;

        margin: 0 auto;
    }

    .about-content::before {
        display: none;
    }

    .about-content .section-heading h2 {
        max-width: 630px;

        font-size:
            clamp(2.8rem, 6.5vw, 4rem);
    }

    .about-lead,
    .about-content > p:not(.about-lead) {
        max-width: 625px;
    }
}


/* ============================================================
   21. MOBILE <= 767
   ============================================================ */

@media (max-width: 767px) {

    .about-section {
        padding: 68px 0 72px;
    }

    .about-section::before {
        width: calc(100% - 32px);
    }

    .about-layout {
        gap: 49px;
    }

    .about-media {
        width: 100%;

        max-width: 560px;

        padding: 0 2px;
    }

    .about-media::after {
        top: -13px;
        left: -8px;

        width: 90px;
        height: 90px;
    }

    .about-image {
        padding: 8px;

        border-radius: 23px;

        box-shadow:
            0 28px 60px rgba(28, 22, 16, 0.12),
            0 10px 24px rgba(28, 22, 16, 0.055);
    }

    .about-image::before,
    .about-image::after {
        inset: 8px;

        border-radius: 16px;
    }

    .about-image img {
        height: clamp(440px, 112vw, 570px);

        border-radius: 16px;
    }

    .about-experience-card {
        right: 18px;
        bottom: 18px;

        width: 155px;
        min-height: 105px;

        padding: 18px 20px;

        border-radius: 17px;
    }

    .about-experience-card strong {
        margin-bottom: 6px;

        font-size: 2rem;
    }

    .about-experience-card span {
        font-size: 0.65rem;
    }

    .about-content .section-heading {
        margin-bottom: 23px;
    }

    .about-content .section-kicker {
        margin-bottom: 14px;

        font-size: 0.66rem;
    }

    .about-content .section-heading h2 {
        font-size:
            clamp(2.3rem, 9vw, 3.4rem);

        line-height: 1.01;
    }

    .about-lead {
        margin-bottom: 15px;

        font-size: 0.98rem;
        line-height: 1.75;
    }

    .about-content > p:not(.about-lead) {
        font-size: 0.89rem;
        line-height: 1.75;
    }

    .about-points {
        gap: 11px;

        margin:
            27px 0
            29px;
    }

    .about-point {
        min-height: 74px;

        padding: 13px 16px;
    }
}


/* ============================================================
   22. MOBILE <= 575
   ============================================================ */

@media (max-width: 575px) {

    .about-section {
        padding:
            58px 0
            64px;
    }

    .about-layout {
        gap: 42px;
    }

    .about-media {
        padding: 0;
    }

    .about-media::after {
        top: -10px;
        left: -5px;

        width: 75px;
        height: 75px;
    }

    .about-image {
        padding: 7px;

        border-radius: 21px;
    }

    .about-image::before,
    .about-image::after {
        inset: 7px;

        border-radius: 15px;
    }

    .about-image img {
        height: min(116vw, 510px);

        border-radius: 15px;

        object-position: center;
    }

    .about-experience-card {
        right: 14px;
        bottom: 14px;

        width: 142px;
        min-height: 94px;

        padding: 15px 17px;

        border-radius: 15px;
    }

    .about-experience-card::after {
        left: 17px;

        width: 38px;
    }

    .about-experience-card strong {
        font-size: 1.75rem;
    }

    .about-experience-card span {
        max-width: 98px;

        font-size: 0.62rem;
    }

    .about-content .section-kicker {
        gap: 9px;

        font-size: 0.64rem;
        letter-spacing: 0.17em;
    }

    .about-content .section-kicker::before {
        width: 25px;
    }

    .about-content .section-heading h2 {
        font-size:
            clamp(2.1rem, 10vw, 3rem);

        line-height: 1.02;
        letter-spacing: -0.047em;
    }

    .about-lead {
        font-size: 0.94rem;
    }

    .about-content > p:not(.about-lead) {
        font-size: 0.86rem;
    }

    .about-point {
        grid-template-columns:
            44px
            minmax(0, 1fr);

        gap: 13px;

        min-height: 0;

        padding: 13px 14px;

        border-radius: 14px;
    }

    .about-point-icon {
        width: 42px;
        height: 42px;

        border-radius: 12px;
    }

    .about-point strong {
        font-size: 0.86rem;
    }

    .about-point p {
        font-size: 0.74rem;
        line-height: 1.5;
    }

    .about-content > .btn {
        width: 100%;
        min-height: 54px;

        padding: 0 20px;
    }
}


/* ============================================================
   23. MOBILE <= 420
   ============================================================ */

@media (max-width: 420px) {

    .about-section {
        padding:
            52px 0
            58px;
    }

    .about-layout {
        gap: 38px;
    }

    .about-media::after {
        display: none;
    }

    .about-image {
        border-radius: 19px;
    }

    .about-image img {
        height: 420px;
    }

    .about-experience-card {
        right: 11px;
        bottom: 11px;

        width: 132px;
        min-height: 86px;

        padding: 13px 14px;
    }

    .about-experience-card strong {
        font-size: 1.6rem;
    }

    .about-experience-card span {
        font-size: 0.59rem;
    }

    .about-content .section-heading {
        margin-bottom: 20px;
    }

    .about-content .section-kicker {
        margin-bottom: 12px;
    }

    .about-content .section-heading h2 {
        font-size:
            clamp(1.95rem, 10.5vw, 2.65rem);
    }

    .about-points {
        margin:
            24px 0
            26px;
    }

    .about-point {
        grid-template-columns:
            41px
            minmax(0, 1fr);

        gap: 11px;

        padding: 12px;
    }

    .about-point-icon {
        width: 39px;
        height: 39px;

        border-radius: 11px;
    }

    .about-point strong {
        margin-bottom: 2px;

        font-size: 0.83rem;
    }

    .about-point p {
        font-size: 0.71rem;
    }
}


/* ============================================================
   24. MOBILE <= 360
   ============================================================ */

@media (max-width: 360px) {

    .about-section {
        padding:
            48px 0
            52px;
    }

    .about-layout {
        gap: 34px;
    }

    .about-image img {
        height: 375px;
    }

    .about-experience-card {
        right: 9px;
        bottom: 9px;

        width: 120px;
        min-height: 80px;

        padding: 11px 12px;
    }

    .about-experience-card strong {
        font-size: 1.45rem;
    }

    .about-experience-card span {
        max-width: 88px;

        font-size: 0.56rem;
    }

    .about-content .section-heading h2 {
        font-size: 1.9rem;
    }

    .about-lead {
        font-size: 0.9rem;
    }

    .about-content > p:not(.about-lead) {
        font-size: 0.82rem;
    }

    .about-point {
        grid-template-columns:
            38px
            minmax(0, 1fr);

        gap: 10px;

        padding: 11px;
    }

    .about-point-icon {
        width: 37px;
        height: 37px;
    }
}


/* ============================================================
   25. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .about-image img,
    .about-point,
    .about-point::before,
    .about-point::after,
    .about-point-icon,
    .about-content > .btn,
    .about-content > .btn i {
        animation: none !important;
        transition: none !important;
    }

    .about-image:hover img,
    .about-point:hover,
    .about-point:hover .about-point-icon,
    .about-content > .btn:hover,
    .about-content > .btn:hover i {
        transform: none !important;
    }
}