
/* =========================================
   COMPANY INTRODUCTION SECTION
========================================= */

.company-intro-section {

    position: relative;

    padding: 110px 0;

    background:

        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fbff 100%
        );

    overflow: hidden;

}


/* Background Decoration */

.company-intro-section::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    top: -200px;

    right: -150px;

    background: var(--light-blue);

    border-radius: 50%;

    opacity: 0.5;

}


.company-intro-section .container {

    position: relative;

    z-index: 2;

}


/* =========================================
   IMAGE AREA
========================================= */

.company-image-wrapper {

    position: relative;

    padding: 20px;

}


.company-image-wrapper::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 85%;

    height: 85%;

    border: 2px solid var(--primary);

    border-radius: var(--radius-lg);

    opacity: 0.3;

}


.company-main-image {

    position: relative;

    z-index: 2;

    width: 100%;

    height: 520px;

    object-fit: cover;

    border-radius: 24px;

    box-shadow:

        0 25px 60px rgba(
            30,
            136,
            229,
            0.18
        );

    transition:

        transform 0.5s ease;

}


.company-image-wrapper:hover
.company-main-image {

    transform: translateY(-8px);

}


/* =========================================
   EXPERIENCE CARD
========================================= */

.company-experience-card {

    position: absolute;

    z-index: 3;

    right: -10px;

    bottom: 50px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px 25px;

    background: var(--white);

    border-radius: 16px;

    box-shadow: var(--shadow-lg);

}


.company-experience-card strong {

    color: var(--primary-dark);

    font-size: 42px;

    font-weight: 800;

    line-height: 1;

}


.company-experience-card span {

    color: var(--text-dark);

    font-size: 13px;

    font-weight: 600;

    line-height: 1.5;

}


/* =========================================
   CONTENT
========================================= */

.company-content {

    padding-left: 30px;

}


.company-subtitle {

    display: inline-block;

    margin-bottom: 18px;

    color: var(--primary-dark);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

}


.company-content h2 {

    max-width: 600px;

    margin-bottom: 25px;

    color: var(--text-dark);

    font-size: 42px;

    font-weight: 300;

    line-height: 1.3;

}


.company-content h2 strong {

    display: block;

    color: var(--primary-dark);

    font-weight: 800;

}


.company-description {

    max-width: 600px;

    margin-bottom: 15px;

    color: #6c757d;

    font-size: 15px;

    line-height: 1.9;

}


/* =========================================
   FEATURES
========================================= */

.company-features {

    margin-top: 30px;

    margin-bottom: 30px;

}


.company-feature-item {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 20px;

}


.feature-icon {

    flex-shrink: 0;

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--white);

    background: var(--gradient-primary);

    border-radius: 50%;

}


.company-feature-item h5 {

    margin-bottom: 5px;

    color: var(--text-dark);

    font-size: 16px;

    font-weight: 700;

}


.company-feature-item p {

    margin: 0;

    color: #777;

    font-size: 13px;

    line-height: 1.6;

}


/* =========================================
   BUTTON
========================================= */

.company-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 14px 24px;

    color: var(--white);

    background: var(--gradient-primary);

    border-radius: 8px;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    box-shadow: var(--shadow-md);

    transition: var(--transition);

}


.company-btn i {

    font-size: 18px;

    transition: transform 0.3s ease;

}


.company-btn:hover {

    color: var(--white);

    transform: translateY(-4px);

    box-shadow: var(--shadow-lg);

}


.company-btn:hover i {

    transform: translate(4px, -4px);

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .company-intro-section {

        padding: 80px 0;

    }


    .company-content {

        padding-left: 0;

    }


    .company-content h2 {

        font-size: 36px;

    }

}


@media (max-width: 767px) {

    .company-intro-section {

        padding: 60px 0;

    }


    .company-image-wrapper {

        padding: 10px;

    }


    .company-main-image {

        height: 380px;

    }


    .company-experience-card {

        right: 0;

        bottom: 30px;

    }


    .company-content h2 {

        font-size: 30px;

    }

}





/* =========================================
   SERVICE RECOMMENDATION CARD
========================================= */

.service-section {
    position: relative;
    padding: 90px 0;
    background: #f5f7fa;
    overflow: hidden;
}


/* Background Decoration */

.service-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    right: -120px;

    background: rgba(242, 140, 40, 0.08);
    border-radius: 50%;
    filter: blur(10px);
}

.service-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;

    background: rgba(13, 35, 64, 0.06);
    border-radius: 50%;
}


/* Content อยู่ด้านหน้า Background */

.service-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================
   SECTION HEADER
========================================= */

.service-subtitle {
    display: inline-block;

    color: #f28c28;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 8px;
}


.service-section h2 {
    color: #0d2340;
    font-size: 38px;
    font-weight: 800;
}


.service-section .text-muted {
    font-size: 16px;
}


/* =========================================
   SERVICE CARD
========================================= */

.service-card {
    position: relative;

    height: 100%;
    padding: 35px 30px;

    background: rgba(255, 255, 255, 0.85);

    border: 1px solid rgba(13, 35, 64, 0.08);
    border-radius: 22px;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;

    backdrop-filter: blur(10px);
}


/* Card Hover */

.service-card:hover {
    transform: translateY(-12px);

    border-color: rgba(242, 140, 40, 0.6);

    box-shadow:
        0 20px 50px rgba(13, 35, 64, 0.12);
}


/* =========================================
   TOP LINE
========================================= */

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 5px;

    background: linear-gradient(
        90deg,
        #f28c28,
        #ffb15c
    );

    transition: width 0.4s ease;
}


.service-card:hover::before {
    width: 100%;
}


/* =========================================
   ICON
========================================= */

.service-icon {
    position: relative;

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    color: #ffffff;

    font-size: 30px;

    background: linear-gradient(
        135deg,
        #0d2340,
        #1b416e
    );

    border-radius: 20px;

    box-shadow:
        0 10px 25px rgba(13, 35, 64, 0.2);

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}


.service-card:hover .service-icon {
    transform: rotate(-8deg) scale(1.08);

    background: linear-gradient(
        135deg,
        #f28c28,
        #ffad4d
    );
}


/* =========================================
   LABEL
========================================= */

.service-label {
    display: inline-block;

    padding: 5px 12px;

    color: #f28c28;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;

    background: rgba(242, 140, 40, 0.1);

    border-radius: 50px;

    margin-bottom: 14px;
}


/* =========================================
   TITLE
========================================= */

.service-card h4 {
    color: #0d2340;

    font-size: 22px;
    font-weight: 800;

    margin-bottom: 15px;
}


/* =========================================
   DESCRIPTION
========================================= */

.service-card p {
    color: #6c757d;

    font-size: 14px;
    line-height: 1.9;

    min-height: 108px;

    margin-bottom: 25px;
}


/* =========================================
   LINK
========================================= */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #0d2340;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}


.service-link i {
    font-size: 18px;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


.service-link:hover {
    color: #f28c28;
}


.service-link:hover i {
    color: #f28c28;
    transform: translateX(7px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .service-section {
        padding: 70px 0;
    }

    .service-section h2 {
        font-size: 32px;
    }

}


@media (max-width: 767px) {

    .service-section {
        padding: 60px 0;
    }

    .service-section h2 {
        font-size: 28px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .service-card p {
        min-height: auto;
    }

}





/* =========================================
   PREMIUM SERVICE SECTION
========================================= */

.premium-service-section {

    position: relative;

    padding: 120px 0;

    background:

        radial-gradient(
            circle at 10% 20%,
            rgba(242, 140, 40, 0.08),
            transparent 30%
        ),

        #08182d;

    overflow: hidden;

}


/* =========================================
   BACKGROUND GRID
========================================= */

.premium-service-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:

        linear-gradient(
            to bottom,
            black,
            transparent
        );

    pointer-events: none;

}


/* =========================================
   HEADER
========================================= */

.premium-section-header {

    position: relative;

    z-index: 2;

    max-width: 720px;

    margin: 0 auto 60px;

}


.premium-section-header span {

    display: inline-block;

    margin-bottom: 18px;

    color: #f28c28;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

}


.premium-section-header h2 {

    color: #ffffff;

    font-size: 48px;

    font-weight: 300;

    line-height: 1.2;

}


.premium-section-header h2 strong {

    display: block;

    color: #f28c28;

    font-weight: 800;

}


.premium-section-header p {

    margin-top: 20px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================
   SERVICE CARD
========================================= */

.premium-service-card {

    position: relative;

    height: 500px;

    overflow: hidden;

    border-radius: 24px;

    background: #0d2340;

    border: 1px solid rgba(255, 255, 255, 0.1);

    transition:

        transform 0.5s ease,

        border-color 0.5s ease,

        box-shadow 0.5s ease;

}


.premium-service-card:hover {

    transform: translateY(-15px);

    border-color: rgba(242, 140, 40, 0.8);

    box-shadow:

        0 30px 70px rgba(0, 0, 0, 0.35);

}


/* =========================================
   IMAGE
========================================= */

.premium-service-card img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    opacity: 0.6;

    transition:

        transform 0.8s ease,

        opacity 0.8s ease;

}


.premium-service-card:hover img {

    transform: scale(1.12);

    opacity: 0.8;

}


/* =========================================
   OVERLAY
========================================= */

.premium-card-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(

            to bottom,

            rgba(8, 24, 45, 0.1) 0%,

            rgba(8, 24, 45, 0.45) 40%,

            rgba(8, 24, 45, 0.98) 100%

        );

}


/* Orange Hover Glow */

.premium-service-card::after {

    content: "";

    position: absolute;

    left: -50%;

    bottom: -80%;

    width: 200%;

    height: 100%;

    background:

        radial-gradient(

            ellipse,

            rgba(242, 140, 40, 0.25),

            transparent 65%

        );

    opacity: 0;

    transition: opacity 0.5s ease;

}


.premium-service-card:hover::after {

    opacity: 1;

}


/* =========================================
   CONTENT
========================================= */

.premium-card-content {

    position: absolute;

    z-index: 3;

    left: 30px;

    right: 30px;

    bottom: 30px;

}


/* =========================================
   ICON
========================================= */

.premium-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    color: #ffffff;

    font-size: 24px;

    background: rgba(242, 140, 40, 0.9);

    border-radius: 16px;

    backdrop-filter: blur(10px);

    transition: transform 0.4s ease;

}


.premium-service-card:hover .premium-icon {

    transform: rotate(-8deg) scale(1.1);

}


/* =========================================
   NUMBER
========================================= */

.premium-number {

    position: absolute;

    top: -15px;

    right: 0;

    color: rgba(255, 255, 255, 0.25);

    font-size: 48px;

    font-weight: 800;

}


/* =========================================
   TITLE
========================================= */

.premium-card-content h3 {

    margin-bottom: 12px;

    color: #ffffff;

    font-size: 24px;

    font-weight: 800;

}


/* =========================================
   DESCRIPTION
========================================= */

.premium-card-content p {

    margin-bottom: 22px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================
   BUTTON
========================================= */

.premium-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;

}


.premium-btn i {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 32px;

    height: 32px;

    border: 1px solid rgba(255, 255, 255, 0.4);

    border-radius: 50%;

    transition: all 0.3s ease;

}


.premium-btn:hover {

    color: #f28c28;

}


.premium-btn:hover i {

    color: #ffffff;

    background: #f28c28;

    border-color: #f28c28;

    transform: rotate(45deg);

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .premium-service-section {

        padding: 90px 0;

    }

    .premium-section-header h2 {

        font-size: 40px;

    }

    .premium-service-card {

        height: 460px;

    }

}


@media (max-width: 767px) {

    .premium-service-section {

        padding: 70px 0;

    }

    .premium-section-header {

        margin-bottom: 40px;

    }

    .premium-section-header h2 {

        font-size: 32px;

    }

    .premium-service-card {

        height: 430px;

    }

}