/*==============================================================
 RAEES IMPORT & EXPORT
 ABOUT PAGE
 Ultra Premium Final Version
 File: /public_html/assets/css/sections/about.css
==============================================================*/


/*==============================================================
 01. PAGE BASE
==============================================================*/

.about-page,
.about-page-main {
    overflow-x: hidden;
}

.about-page-main {
    background: #fffdf9;
    color: #211c16;
}

.about-page-main *,
.about-page-main *::before,
.about-page-main *::after {
    box-sizing: border-box;
}

.about-page-main img {
    display: block;
    max-width: 100%;
}

.about-page-main a {
    text-decoration: none;
}


/*==============================================================
 02. COMMON COLORS / SECTION KICKER
==============================================================*/

.about-page-main .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #a86f1f;

    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: .16em;
    text-transform: uppercase;
}

.about-page-main .section-kicker::before {
    content: "";

    width: 30px;
    height: 1px;

    background: linear-gradient(
        90deg,
        #a66d1e,
        #d7aa59
    );
}


/*==============================================================
 03. ABOUT HERO
==============================================================*/

.about-hero {
    position: relative;
    isolation: isolate;

    overflow: hidden;

    min-height: 700px;

    padding:
        clamp(80px, 8vw, 125px)
        0
        clamp(85px, 9vw, 125px);

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(202, 154, 76, .13),
            transparent 29%
        ),
        radial-gradient(
            circle at 92% 75%,
            rgba(8, 67, 50, .08),
            transparent 29%
        ),
        linear-gradient(
            135deg,
            #fffdf9 0%,
            #faf5eb 52%,
            #f7efe2 100%
        );
}


/*==============================================================
 04. HERO BACKGROUND
==============================================================*/

.about-hero-background {
    position: absolute;
    inset: 0;

    z-index: -1;

    overflow: hidden;
    pointer-events: none;
}

.about-hero-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.about-hero-glow-one {
    width: 520px;
    height: 520px;

    top: -310px;
    left: -190px;

    background: radial-gradient(
        circle,
        rgba(202, 154, 76, .20),
        transparent 70%
    );
}

.about-hero-glow-two {
    width: 570px;
    height: 570px;

    right: -270px;
    bottom: -330px;

    background: radial-gradient(
        circle,
        rgba(7, 61, 46, .13),
        transparent 70%
    );
}

.about-hero-grid {
    position: absolute;

    width: 680px;
    height: 680px;

    top: 50%;
    left: 48%;

    opacity: .027;

    transform:
        translate(-50%, -50%)
        rotate(12deg);

    background-image:
        linear-gradient(
            rgba(10, 60, 45, .8) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(10, 60, 45, .8) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    -webkit-mask-image:
        radial-gradient(
            circle,
            #000 5%,
            transparent 70%
        );

    mask-image:
        radial-gradient(
            circle,
            #000 5%,
            transparent 70%
        );
}


/*==============================================================
 05. HERO LAYOUT
==============================================================*/

.about-hero-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, .78fr);

    align-items: center;

    gap: clamp(55px, 8vw, 110px);
}

.about-hero-content {
    position: relative;
    z-index: 2;

    max-width: 720px;
}


/*==============================================================
 06. HERO KICKER
==============================================================*/

.about-kicker {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 21px;

    color: #a56d1c;

    font-size: 10px;
    font-weight: 800;
    line-height: 1;

    letter-spacing: .17em;
    text-transform: uppercase;
}

.about-kicker::before {
    content: "";

    width: 34px;
    height: 1px;

    background: linear-gradient(
        90deg,
        #9e681d,
        #d7aa5b
    );
}


/*==============================================================
 07. HERO TITLE
==============================================================*/

.about-hero h1 {
    max-width: 720px;

    margin: 0;

    color: #17130f;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(48px, 5.4vw, 78px);
    font-weight: 600;

    line-height: 1.01;

    letter-spacing: -.045em;
}

.about-hero h1 span {
    display: block;

    margin: 6px 0;

    color: #ad7726;
}


/*==============================================================
 08. HERO DESCRIPTION
==============================================================*/

.about-hero-lead {
    max-width: 630px;

    margin: 27px 0 0;

    color: #665e54;

    font-size: clamp(15px, 1.25vw, 17px);
    line-height: 1.85;
}

.about-hero-lead strong {
    color: #153e31;
    font-weight: 800;
}


/*==============================================================
 09. HERO BUTTON AREA
==============================================================*/

.about-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 32px;
}


/*==============================================================
 10. PRIMARY BUTTON
==============================================================*/

.about-primary-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 10px !important;

    width: auto !important;
    min-width: 170px !important;
    min-height: 52px !important;

    padding: 14px 22px !important;

    border: 1px solid #b98330 !important;
    border-radius: 10px !important;

    background:
        linear-gradient(
            135deg,
            #104b3a 0%,
            #073529 100%
        ) !important;

    color: #ffffff !important;

    font-family: inherit !important;
    font-size: 12px !important;
    font-weight: 800 !important;

    line-height: 1.2 !important;

    text-decoration: none !important;

    box-shadow:
        0 11px 27px rgba(7, 54, 41, .20),
        inset 0 0 0 1px rgba(255,255,255,.04) !important;

    cursor: pointer;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        border-color .3s ease !important;
}

.about-primary-btn i {
    color: #e1b866 !important;

    font-size: 10px;

    transition: transform .3s ease;
}

.about-primary-btn:hover {
    color: #ffffff !important;

    border-color: #d0a04e !important;

    background:
        linear-gradient(
            135deg,
            #155943,
            #0a4031
        ) !important;

    transform: translateY(-3px);

    box-shadow:
        0 16px 34px rgba(7, 54, 41, .27) !important;
}

.about-primary-btn:hover i {
    transform: translateX(4px);
}


/*==============================================================
 11. SECONDARY BUTTON
==============================================================*/

.about-secondary-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 10px !important;

    width: auto !important;
    min-width: 150px !important;
    min-height: 52px !important;

    padding: 14px 22px !important;

    border:
        1px solid rgba(159, 105, 29, .35) !important;

    border-radius: 10px !important;

    background:
        rgba(255, 255, 255, .58) !important;

    color: #1d1914 !important;

    font-family: inherit !important;
    font-size: 12px !important;
    font-weight: 800 !important;

    line-height: 1.2 !important;

    text-decoration: none !important;

    box-shadow:
        0 9px 24px rgba(37, 29, 18, .06) !important;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        box-shadow .3s ease !important;
}

.about-secondary-btn i {
    color: #ad7626;

    font-size: 10px;

    transition: transform .3s ease;
}

.about-secondary-btn:hover {
    color: #ffffff !important;

    background: #123f31 !important;

    border-color: #123f31 !important;

    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(7, 54, 41, .18) !important;
}

.about-secondary-btn:hover i {
    color: #e1b866;

    transform: translateX(4px);
}


/*==============================================================
 12. HERO FEATURES
==============================================================*/

.about-hero-features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 15px 28px;

    margin-top: 38px;
    padding-top: 27px;

    border-top:
        1px solid rgba(128, 102, 65, .14);
}

.about-hero-feature {
    display: flex;
    align-items: center;

    gap: 10px;
}

.about-hero-feature > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    border:
        1px solid rgba(190, 139, 58, .22);

    border-radius: 10px;

    color: #b77c25;

    background:
        rgba(255,255,255,.55);

    font-size: 12px;
}

.about-hero-feature strong {
    display: block;

    margin-bottom: 2px;

    color: #153e31;

    font-size: 11px;
    font-weight: 800;
}

.about-hero-feature small {
    display: block;

    color: #8a8175;

    font-size: 9px;
}


/*==============================================================
 13. HERO VISUAL
==============================================================*/

.about-hero-visual {
    position: relative;
    z-index: 2;

    width: 100%;
}

.about-image-frame {
    position: relative;

    width: min(100%, 465px);

    margin-left: auto;

    padding: 10px;

    border:
        1px solid rgba(179, 126, 45, .24);

    border-radius: 30px;

    background:
        rgba(255,255,255,.68);

    box-shadow:
        0 35px 85px rgba(31,25,17,.15);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.about-image-frame::before {
    content: "";

    position: absolute;

    top: -20px;
    right: -20px;

    z-index: -1;

    width: 130px;
    height: 130px;

    border-top:
        1px solid rgba(181,127,43,.42);

    border-right:
        1px solid rgba(181,127,43,.42);

    border-radius: 0 28px 0 0;
}

.about-image-frame::after {
    content: "";

    position: absolute;

    left: -20px;
    bottom: -20px;

    z-index: -1;

    width: 130px;
    height: 130px;

    border-left:
        1px solid rgba(181,127,43,.35);

    border-bottom:
        1px solid rgba(181,127,43,.35);

    border-radius: 0 0 0 28px;
}

.about-image-wrap {
    position: relative;

    overflow: hidden;

    aspect-ratio: 4 / 5;

    border-radius: 23px;

    background: #eee4d4;
}

.about-image-wrap::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(6,40,30,.17)
        );
}

.about-image-wrap img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1);
}

.about-image-frame:hover
.about-image-wrap img {
    transform: scale(1.035);
}


/*==============================================================
 14. HERO FLOATING BADGE
==============================================================*/

.about-image-badge {
    position: absolute;

    left: -45px;
    bottom: 42px;

    z-index: 4;

    display: flex;
    align-items: center;

    gap: 12px;

    min-width: 225px;

    padding: 14px 17px;

    border:
        1px solid rgba(196,147,67,.28);

    border-radius: 16px;

    background:
        rgba(255,253,248,.95);

    box-shadow:
        0 18px 42px rgba(27,22,15,.14);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.about-image-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    border-radius: 12px;

    color: #d9ac5d;

    background:
        linear-gradient(
            145deg,
            #123f31,
            #082f25
        );

    font-size: 14px;
}

.about-image-badge small {
    display: block;

    margin-bottom: 3px;

    color: #8b8175;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;
}

.about-image-badge strong {
    display: block;

    color: #201a14;

    font-size: 12px;
    font-weight: 800;
}


/*==============================================================
 15. COMPANY SECTION
==============================================================*/

.about-company-section {
    position: relative;

    padding:
        clamp(85px, 9vw, 125px)
        0;

    background: #ffffff;
}

.about-company-layout {
    display: grid;

    grid-template-columns:
        minmax(0, .95fr)
        minmax(420px, .9fr);

    align-items: center;

    gap: clamp(60px, 8vw, 115px);
}

.about-company-content {
    max-width: 650px;
}

.about-company-content h2 {
    max-width: 610px;

    margin: 14px 0 25px;

    color: #18140f;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(37px, 4.2vw, 57px);
    font-weight: 600;

    line-height: 1.08;

    letter-spacing: -.035em;
}

.about-company-content h2 span {
    display: block;

    color: #a97324;
}

.about-company-content p {
    margin: 0 0 19px;

    color: #71695f;

    font-size: 14px;
    line-height: 1.9;
}

.about-company-content
.about-company-lead {
    color: #413a32;

    font-size: 16px;
    line-height: 1.85;
}


/*==============================================================
 16. COMPANY SIGNATURE
==============================================================*/

.about-company-signature {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 30px;
}

.about-signature-line {
    display: block;

    width: 52px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #9d681d,
            #d1a253
        );
}

.about-company-signature strong {
    display: block;

    margin-bottom: 3px;

    color: #153d31;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 15px;
}

.about-company-signature small {
    display: block;

    color: #8b8175;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;
}


/*==============================================================
 17. COMPANY STATS
==============================================================*/

.about-company-stats {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 17px;
}

.about-stat-card {
    position: relative;

    min-width: 0;
    min-height: 245px;

    overflow: hidden;

    padding: 30px 23px;

    border:
        1px solid rgba(178,125,45,.17);

    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fdf9f2
        );

    box-shadow:
        0 15px 40px rgba(34,28,19,.06);

    text-align: center;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.about-stat-card::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #9f691e,
            #d6aa5b
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .35s ease;
}

.about-stat-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(178,125,45,.30);

    box-shadow:
        0 24px 55px rgba(34,28,19,.11);
}

.about-stat-card:hover::after {
    transform: scaleX(1);
}

.about-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin: 0 auto 20px;

    border-radius: 15px;

    color: #d8ac60;

    background:
        linear-gradient(
            145deg,
            #123f32,
            #082f25
        );

    font-size: 17px;

    box-shadow:
        0 10px 24px rgba(7,54,41,.14);
}

.about-stat-card > strong {
    display: block;

    margin-bottom: 7px;

    color: #a66e1f;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 25px;
    line-height: 1.1;
}

.about-stat-card h3 {
    margin: 0 0 9px;

    color: #201a14;

    font-size: 14px;
    font-weight: 800;
}

.about-stat-card p {
    margin: 0;

    color: #7b7267;

    font-size: 11px;
    line-height: 1.7;
}


/*==============================================================
 18. VALUES SECTION
==============================================================*/

.about-values-section {
    position: relative;

    overflow: hidden;

    padding:
        clamp(75px, 8vw, 105px)
        0;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(215,170,91,.10),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #0d4838,
            #052c22
        );
}

.about-values-section::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -220px;
    bottom: -280px;

    border:
        1px solid rgba(218,174,96,.13);

    border-radius: 50%;
}

.about-values-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(230px, .55fr)
        minmax(0, 1.45fr);

    align-items: center;

    gap: 55px;
}

.about-values-heading {
    padding-right: 25px;

    border-right:
        1px solid rgba(218,174,96,.38);
}

.about-values-section
.section-kicker {
    color: #d8ac5d;
}

.about-values-heading h2 {
    margin: 13px 0 0;

    color: #ffffff;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(34px, 3.5vw, 48px);
    font-weight: 600;

    line-height: 1.08;
}

.about-values-heading h2 span {
    display: block;
}

.about-values-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 0;
}

.about-value-item {
    position: relative;

    min-width: 0;

    padding: 5px 23px;

    border-right:
        1px solid rgba(255,255,255,.12);
}

.about-value-item:last-child {
    border-right: 0;
}

.about-value-icon {
    display: flex;
    align-items: center;

    height: 46px;

    margin-bottom: 15px;

    color: #d9ad60;

    font-size: 30px;
}

.about-value-item h3 {
    margin: 0 0 9px;

    color: #ffffff;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 17px;
    font-weight: 600;
}

.about-value-item p {
    margin: 0;

    color:
        rgba(255,255,255,.64);

    font-size: 11px;
    line-height: 1.7;
}


/*==============================================================
 19. SERVICES SECTION
==============================================================*/

.about-services-section {
    position: relative;

    padding:
        clamp(85px, 9vw, 120px)
        0;

    background:
        linear-gradient(
            180deg,
            #fffdf9,
            #faf5eb
        );
}


/*==============================================================
 20. COMMON CENTER HEADING
==============================================================*/

.about-section-heading {
    max-width: 760px;

    margin:
        0 auto
        50px;

    text-align: center;
}

.about-section-heading .section-kicker {
    justify-content: center;
}

.about-section-heading h2 {
    margin: 14px 0 15px;

    color: #19150f;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(36px, 4vw, 55px);
    font-weight: 600;

    line-height: 1.08;

    letter-spacing: -.035em;
}

.about-section-heading h2 span {
    display: block;

    color: #a87324;
}

.about-section-heading > p {
    max-width: 620px;

    margin: 0 auto;

    color: #756c61;

    font-size: 13px;
    line-height: 1.8;
}


/*==============================================================
 21. SERVICES GRID
==============================================================*/

.about-services-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 14px;
}

.about-service-card {
    position: relative;

    min-width: 0;
    min-height: 260px;

    overflow: hidden;

    padding: 27px 18px;

    border:
        1px solid rgba(174,121,41,.15);

    border-radius: 19px;

    background:
        rgba(255,255,255,.82);

    box-shadow:
        0 12px 34px rgba(34,28,19,.055);

    text-align: center;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

.about-service-card::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;
    left: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #9e691e,
            #d7aa5b
        );

    transform: scaleX(0);

    transition: transform .35s ease;
}

.about-service-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(177,123,42,.27);

    background: #ffffff;

    box-shadow:
        0 23px 50px rgba(34,28,19,.10);
}

.about-service-card:hover::before {
    transform: scaleX(1);
}

.about-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    margin: 0 auto 22px;

    border-radius: 16px;

    color: #d9ad60;

    background:
        linear-gradient(
            145deg,
            #123f32,
            #082f25
        );

    font-size: 18px;

    box-shadow:
        0 10px 25px rgba(7,53,40,.14);

    transition: transform .35s ease;
}

.about-service-card:hover
.about-service-icon {
    transform:
        translateY(-2px)
        rotate(-3deg);
}

.about-service-card h3 {
    margin: 0 0 11px;

    color: #201a14;

    font-size: 13px;
    font-weight: 800;
}

.about-service-card p {
    margin: 0;

    color: #7a7166;

    font-size: 10.5px;
    line-height: 1.75;
}


/*==============================================================
 22. WHY CHOOSE SECTION
==============================================================*/

.about-why-section {
    position: relative;

    padding:
        clamp(85px, 9vw, 120px)
        0;

    background: #ffffff;
}

.about-why-layout {
    display: grid;

    grid-template-columns:
        minmax(360px, .9fr)
        minmax(0, 1.1fr);

    align-items: center;

    gap: clamp(55px, 7vw, 100px);

    margin-top: 45px;
}


/*==============================================================
 23. WHY IMAGE
==============================================================*/

.about-why-visual {
    position: relative;
}

.about-why-image {
    position: relative;

    overflow: hidden;

    padding: 8px;

    border:
        1px solid rgba(180,126,44,.23);

    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 26px 65px rgba(31,25,17,.13);
}

.about-why-image::after {
    content: "";

    position: absolute;
    inset: 8px;

    border-radius: 17px;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(6,44,33,.12)
        );
}

.about-why-image img {
    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    border-radius: 17px;

    transition:
        transform .75s cubic-bezier(.2,.7,.2,1);
}

.about-why-image:hover img {
    transform: scale(1.035);
}


/*==============================================================
 24. WHY LIST
==============================================================*/

.about-why-list {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.about-why-item {
    display: grid;

    grid-template-columns:
        42px
        minmax(0, 1fr);

    gap: 16px;

    padding: 17px 18px;

    border:
        1px solid transparent;

    border-radius: 15px;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.about-why-item:hover {
    transform: translateX(5px);

    border-color:
        rgba(175,120,38,.15);

    background: #fdf9f2;

    box-shadow:
        0 10px 28px rgba(34,28,19,.05);
}

.about-why-item > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    color: #e0b665;

    background:
        linear-gradient(
            145deg,
            #104535,
            #073126
        );

    font-size: 11px;

    box-shadow:
        0 8px 20px rgba(7,53,40,.13);
}

.about-why-item h3 {
    margin: 0 0 5px;

    color: #211b15;

    font-size: 13px;
    font-weight: 800;
}

.about-why-item p {
    margin: 0;

    color: #766d62;

    font-size: 11px;
    line-height: 1.7;
}


/*==============================================================
 25. CTA SECTION
==============================================================*/

.about-cta-section {
    position: relative;

    padding:
        25px
        0
        clamp(85px, 8vw, 110px);

    background: #ffffff;
}

.about-cta-card {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        210px;

    align-items: center;

    gap: 40px;

    overflow: hidden;

    min-height: 330px;

    padding:
        clamp(42px, 5vw, 64px)
        clamp(32px, 6vw, 72px);

    border:
        1px solid rgba(215,171,92,.21);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(218,174,95,.13),
            transparent 29%
        ),
        linear-gradient(
            135deg,
            #104636,
            #052b21
        );

    box-shadow:
        0 28px 70px rgba(7,50,38,.18);
}

.about-cta-card::before {
    content: "";

    position: absolute;

    right: -130px;
    bottom: -210px;

    width: 350px;
    height: 350px;

    border:
        1px solid rgba(221,179,101,.15);

    border-radius: 50%;
}

.about-cta-card::after {
    content: "";

    position: absolute;

    top: 0;
    left: 70px;

    width: 170px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #d8aa59,
            transparent
        );
}


/*==============================================================
 26. CTA DECORATION
==============================================================*/

.about-cta-decoration {
    position: absolute;

    top: 50%;
    right: 17%;

    color:
        rgba(222,181,104,.045);

    font-size: 230px;

    transform: translateY(-50%);

    pointer-events: none;
}


/*==============================================================
 27. CTA CONTENT
==============================================================*/

.about-cta-content {
    position: relative;
    z-index: 3;

    max-width: 720px;
}

.about-cta-section
.section-kicker {
    color: #ddb467;
}

.about-cta-content h2 {
    max-width: 650px;

    margin: 13px 0 16px;

    color: #ffffff;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(36px, 4vw, 54px);
    font-weight: 600;

    line-height: 1.06;

    letter-spacing: -.035em;
}

.about-cta-content h2 span {
    display: block;
}

.about-cta-content > p {
    max-width: 610px;

    margin: 0;

    color:
        rgba(255,255,255,.68);

    font-size: 13px;
    line-height: 1.8;
}


/*==============================================================
 28. CTA BUTTON WRAPPER
==============================================================*/

.about-cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 27px;
}


/*==============================================================
 29. CTA SEND ENQUIRY BUTTON
==============================================================*/

.about-cta-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 10px !important;

    width: auto !important;
    min-width: 175px !important;
    min-height: 52px !important;

    padding: 14px 22px !important;

    border:
        1px solid #d3a653 !important;

    border-radius: 10px !important;

    background:
        linear-gradient(
            135deg,
            #d5aa5c,
            #b77c26
        ) !important;

    color: #092f25 !important;

    font-family: inherit !important;
    font-size: 12px !important;
    font-weight: 800 !important;

    line-height: 1.2 !important;

    text-decoration: none !important;

    box-shadow:
        0 12px 28px rgba(0,0,0,.17) !important;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        box-shadow .3s ease !important;
}

.about-cta-primary i {
    color: #092f25 !important;

    font-size: 10px;

    transition: transform .3s ease;
}

.about-cta-primary:hover {
    color: #082d23 !important;

    background:
        linear-gradient(
            135deg,
            #e2bb72,
            #c58c34
        ) !important;

    transform: translateY(-3px);

    box-shadow:
        0 17px 34px rgba(0,0,0,.23) !important;
}

.about-cta-primary:hover i {
    transform: translateX(4px);
}


/*==============================================================
 30. CTA WHATSAPP BUTTON
==============================================================*/

.about-cta-whatsapp {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 9px !important;

    width: auto !important;
    min-width: 165px !important;
    min-height: 52px !important;

    padding: 14px 22px !important;

    border:
        1px solid rgba(37,211,102,.75) !important;

    border-radius: 10px !important;

    background:
        rgba(37,211,102,.08) !important;

    color: #ffffff !important;

    font-family: inherit !important;
    font-size: 12px !important;
    font-weight: 800 !important;

    line-height: 1.2 !important;

    text-decoration: none !important;

    box-shadow: none !important;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease !important;
}

.about-cta-whatsapp i {
    color: #25d366 !important;

    font-size: 15px;
}

.about-cta-whatsapp:hover {
    color: #ffffff !important;

    background: #25d366 !important;

    border-color: #25d366 !important;

    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(37,211,102,.22) !important;
}

.about-cta-whatsapp:hover i {
    color: #ffffff !important;
}


/*==============================================================
 31. CTA BRAND
==============================================================*/

.about-cta-brand {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 180px;
    height: 180px;

    justify-self: end;

    border:
        1px solid rgba(221,178,98,.23);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(215,170,90,.10),
            transparent 68%
        );
}

.about-cta-brand span {
    color: #d9aa59;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 115px;
    font-weight: 700;

    line-height: 1;

    text-shadow:
        0 10px 35px rgba(0,0,0,.25);
}


/*==============================================================
 32. BUTTON FOCUS ACCESSIBILITY
==============================================================*/

.about-primary-btn:focus-visible,
.about-secondary-btn:focus-visible,
.about-cta-primary:focus-visible,
.about-cta-whatsapp:focus-visible {
    outline:
        3px solid rgba(210,164,82,.45) !important;

    outline-offset: 4px !important;
}


/*==============================================================
 33. LARGE TABLET / SMALL DESKTOP
==============================================================*/

@media (max-width: 1199.98px) {

    .about-hero-layout {
        gap: 65px;
    }

    .about-company-layout {
        gap: 65px;
    }

    .about-image-badge {
        left: -25px;
    }

    .about-values-layout {
        grid-template-columns:
            minmax(210px,.5fr)
            minmax(0,1.5fr);

        gap: 35px;
    }

    .about-value-item {
        padding:
            5px
            17px;
    }

    .about-services-grid {
        grid-template-columns:
            repeat(3, minmax(0,1fr));
    }

    .about-service-card {
        min-height: 235px;
    }

}


/*==============================================================
 34. TABLET
==============================================================*/

@media (max-width: 991.98px) {

    /* HERO */

    .about-hero {
        min-height: 0;

        padding:
            75px
            0
            90px;
    }

    .about-hero-layout {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .about-hero-content {
        max-width: 760px;
    }

    .about-hero-visual {
        width: min(100%, 520px);

        margin: 0 auto;
    }

    .about-image-frame {
        margin: 0 auto;
    }


    /* COMPANY */

    .about-company-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-company-content {
        max-width: 760px;
    }

    .about-company-stats {
        width: min(100%, 700px);
    }


    /* VALUES */

    .about-values-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-values-heading {
        padding-right: 0;
        padding-bottom: 30px;

        border-right: 0;

        border-bottom:
            1px solid rgba(218,174,96,.30);
    }

    .about-values-heading h2 {
        max-width: 520px;
    }

    .about-values-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap: 30px 0;
    }

    .about-value-item:nth-child(2) {
        border-right: 0;
    }


    /* WHY */

    .about-why-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-why-visual {
        width: min(100%, 650px);

        margin: 0 auto;
    }


    /* CTA */

    .about-cta-card {
        grid-template-columns:
            minmax(0,1fr)
            150px;
    }

    .about-cta-brand {
        width: 145px;
        height: 145px;
    }

    .about-cta-brand span {
        font-size: 90px;
    }

}


/*==============================================================
 35. MOBILE
==============================================================*/

@media (max-width: 767.98px) {

    /* HERO */

    .about-hero {
        padding:
            60px
            0
            78px;
    }

    .about-hero-layout {
        gap: 50px;
    }

    .about-kicker {
        margin-bottom: 16px;

        font-size: 9px;
    }

    .about-kicker::before {
        width: 25px;
    }

    .about-hero h1 {
        font-size:
            clamp(41px, 12.5vw, 57px);

        line-height: 1.02;
    }

    .about-hero-lead {
        margin-top: 21px;

        font-size: 14px;
        line-height: 1.75;
    }


    /* HERO BUTTONS */

    .about-hero-actions {
        display: grid;

        grid-template-columns: 1fr;

        width: 100%;

        gap: 10px;

        margin-top: 27px;
    }

    .about-primary-btn,
    .about-secondary-btn {
        width: 100% !important;
        min-width: 0 !important;

        min-height: 52px !important;

        padding:
            14px
            18px !important;
    }


    /* HERO FEATURES */

    .about-hero-features {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap: 12px;

        margin-top: 30px;
    }

    .about-hero-feature {
        padding: 12px;

        border:
            1px solid rgba(180,125,44,.13);

        border-radius: 13px;

        background:
            rgba(255,255,255,.45);
    }

    .about-hero-feature:last-child {
        grid-column: 1 / -1;
    }


    /* HERO IMAGE */

    .about-image-frame {
        width: min(92%, 430px);

        border-radius: 23px;
    }

    .about-image-wrap {
        border-radius: 17px;
    }

    .about-image-frame::before,
    .about-image-frame::after {
        width: 90px;
        height: 90px;
    }

    .about-image-badge {
        left: 50%;
        bottom: -25px;

        width: calc(100% - 34px);
        min-width: 0;

        transform: translateX(-50%);
    }


    /* COMPANY */

    .about-company-section {
        padding:
            75px
            0;
    }

    .about-company-content h2 {
        font-size:
            clamp(32px, 9vw, 44px);
    }

    .about-company-content
    .about-company-lead {
        font-size: 15px;
    }

    .about-company-content p {
        font-size: 13px;
        line-height: 1.8;
    }

    .about-company-stats {
        grid-template-columns: 1fr;

        gap: 13px;
    }

    .about-stat-card {
        min-height: 0;

        padding:
            26px
            21px;
    }


    /* VALUES */

    .about-values-section {
        padding:
            70px
            0;
    }

    .about-values-heading h2 {
        font-size:
            clamp(31px, 9vw, 43px);
    }

    .about-values-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .about-value-item {
        padding:
            23px
            0;

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,.10);
    }

    .about-value-item:last-child {
        border-bottom: 0;
    }


    /* SERVICES */

    .about-services-section {
        padding:
            75px
            0;
    }

    .about-section-heading {
        margin-bottom: 36px;
    }

    .about-section-heading h2 {
        font-size:
            clamp(32px, 9vw, 43px);
    }

    .about-services-grid {
        grid-template-columns: 1fr;

        gap: 13px;
    }

    .about-service-card {
        min-height: 0;

        padding:
            26px
            21px;
    }


    /* WHY */

    .about-why-section {
        padding:
            75px
            0;
    }

    .about-why-layout {
        margin-top: 35px;

        gap: 38px;
    }

    .about-why-item {
        grid-template-columns:
            38px
            minmax(0,1fr);

        gap: 13px;

        padding:
            15px
            10px;
    }


    /* CTA */

    .about-cta-section {
        padding:
            10px
            0
            70px;
    }

    .about-cta-card {
        grid-template-columns: 1fr;

        gap: 35px;

        min-height: 0;

        padding:
            38px
            24px;

        border-radius: 22px;
    }

    .about-cta-content h2 {
        font-size:
            clamp(32px, 9vw, 43px);
    }

    .about-cta-content > p {
        font-size: 12px;
    }

    .about-cta-actions {
        display: grid;

        grid-template-columns: 1fr;

        width: 100%;

        gap: 10px;

        margin-top: 25px;
    }

    .about-cta-primary,
    .about-cta-whatsapp {
        width: 100% !important;
        min-width: 0 !important;

        min-height: 52px !important;
    }

    .about-cta-brand {
        display: none;
    }

    .about-cta-decoration {
        right: -20px;

        font-size: 170px;
    }

}


/*==============================================================
 36. SMALL MOBILE
==============================================================*/

@media (max-width: 575.98px) {

    .about-hero {
        padding-top: 55px;
    }

    .about-hero-features {
        grid-template-columns: 1fr;
    }

    .about-hero-feature:last-child {
        grid-column: auto;
    }

    .about-company-signature {
        align-items: flex-start;
    }

    .about-signature-line {
        width: 35px;

        margin-top: 9px;
    }

    .about-section-heading > p {
        font-size: 12px;
    }

    .about-why-image {
        border-radius: 19px;
    }

    .about-why-image img {
        border-radius: 13px;
    }

    .about-why-image::after {
        border-radius: 13px;
    }

}


/*==============================================================
 37. VERY SMALL MOBILE
==============================================================*/

@media (max-width: 390px) {

    .about-hero h1 {
        font-size: 39px;
    }

    .about-image-frame {
        width: 94%;
    }

    .about-image-badge {
        width: calc(100% - 22px);

        padding:
            12px
            13px;
    }

    .about-company-content h2,
    .about-values-heading h2,
    .about-section-heading h2,
    .about-cta-content h2 {
        font-size: 31px;
    }

    .about-cta-card {
        padding:
            32px
            20px;
    }

}


/*==============================================================
 38. TOUCH DEVICES
==============================================================*/

@media (hover: none) {

    .about-image-frame:hover
    .about-image-wrap img,

    .about-stat-card:hover,

    .about-service-card:hover,

    .about-why-image:hover img,

    .about-why-item:hover,

    .about-primary-btn:hover,

    .about-secondary-btn:hover,

    .about-cta-primary:hover,

    .about-cta-whatsapp:hover {
        transform: none;
    }

}


/*==============================================================
 39. REDUCED MOTION
==============================================================*/

@media (prefers-reduced-motion: reduce) {

    .about-image-wrap img,
    .about-stat-card,
    .about-stat-card::after,
    .about-service-card,
    .about-service-card::before,
    .about-service-icon,
    .about-why-image img,
    .about-why-item,
    .about-primary-btn,
    .about-secondary-btn,
    .about-cta-primary,
    .about-cta-whatsapp,
    .about-primary-btn i,
    .about-secondary-btn i,
    .about-cta-primary i {
        transition: none !important;
    }

}


/*==============================================================
 40. FINAL BUTTON RESET / SAFETY
 Important:
 prevents global .btn / anchor CSS from breaking About buttons
==============================================================*/

.about-page-main
.about-hero-actions
a.about-primary-btn,

.about-page-main
.about-hero-actions
a.about-secondary-btn,

.about-page-main
.about-cta-actions
a.about-cta-primary,

.about-page-main
.about-cta-actions
a.about-cta-whatsapp {
    position: relative !important;

    overflow: hidden;

    height: auto !important;

    opacity: 1 !important;
    visibility: visible !important;

    white-space: nowrap !important;

    text-indent: 0 !important;

    transform-origin: center;

    appearance: none;
    -webkit-appearance: none;
}


/*==============================================================
 41. BUTTON TEXT VISIBILITY FIX
==============================================================*/

.about-page-main
.about-primary-btn,
.about-page-main
.about-primary-btn:visited {
    color: #ffffff !important;
}

.about-page-main
.about-secondary-btn,
.about-page-main
.about-secondary-btn:visited {
    color: #1d1914 !important;
}

.about-page-main
.about-secondary-btn:hover {
    color: #ffffff !important;
}

.about-page-main
.about-cta-primary,
.about-page-main
.about-cta-primary:visited {
    color: #082f25 !important;
}

.about-page-main
.about-cta-whatsapp,
.about-page-main
.about-cta-whatsapp:visited {
    color: #ffffff !important;
}


/*==============================================================
 42. PREVENT COMMON GLOBAL BUTTON PSEUDO ELEMENT ISSUES
==============================================================*/

.about-primary-btn::before,
.about-primary-btn::after,
.about-secondary-btn::before,
.about-secondary-btn::after,
.about-cta-primary::before,
.about-cta-primary::after,
.about-cta-whatsapp::before,
.about-cta-whatsapp::after {
    pointer-events: none;
}


/*==============================================================
 43. FINAL LAYOUT SAFETY
==============================================================*/

.about-page-main section,
.about-page-main .container,
.about-hero-layout,
.about-company-layout,
.about-values-layout,
.about-services-grid,
.about-why-layout,
.about-cta-card {
    min-width: 0;
}

.about-hero,
.about-company-section,
.about-values-section,
.about-services-section,
.about-why-section,
.about-cta-section {
    height: auto;
}


/*==============================================================
 END
 RAEES IMPORT & EXPORT
 ABOUT PAGE
==============================================================*/