/* =========================================================
   ABOUT PAGE
   AREAS OF PROFESSIONAL EXPERTISE
========================================================= */

.expertise {
    position: relative;
    padding: 95px 0 105px;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #faf8f3 100%
    );
    overflow: hidden;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.expertise .section-title {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.expertise .section-title span {
    display: block;
    margin-bottom: 15px;

    color: #c69a3b;

    font-family: "Inter", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;
    text-transform: uppercase;
}

.expertise .section-title h2 {
    margin: 0;

    color: #171010;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.15;
    font-weight: 700;
}

.expertise .section-title p {
    max-width: 760px;

    margin: 20px auto 0;

    color: #68615d;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   EXPERTISE GRID
========================================================= */

.expertise .expertise-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 26px;

    max-width: 1200px;

    margin: 0 auto;
}


/* =========================================================
   EXPERTISE CARD
========================================================= */

.expertise .expertise-card {
    position: relative;

    min-height: 310px;

    padding: 36px 32px 34px;

    background:
        linear-gradient(
            145deg,
            #18070a 0%,
            #2a0a10 100%
        );

    border: 1px solid
        rgba(198,154,59,0.40);

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 15px 38px
        rgba(25,8,10,0.14);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


/* GOLD TOP LINE */

.expertise .expertise-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #8f1728,
            #c69a3b,
            #e4c46b,
            #c69a3b,
            #8f1728
        );
}


/* SUBTLE GOLD CORNER GLOW */

.expertise .expertise-card::after {
    content: "";

    position: absolute;

    right: -80px;
    bottom: -80px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(198,154,59,0.14),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   NUMBER
========================================================= */

.expertise .expertise-number {
    position: absolute;

    top: 22px;
    right: 25px;

    color:
        rgba(220,178,82,0.65);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================================
   ICON
========================================================= */

.expertise .expertise-icon {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    margin-bottom: 25px;

    border-radius: 50%;

    border: 1px solid
        rgba(211,170,84,0.70);

    background:
        linear-gradient(
            145deg,
            rgba(198,154,59,0.18),
            rgba(198,154,59,0.05)
        );

    color: #d7ad55;

    font-size: 22px;

    box-shadow:
        0 6px 18px
        rgba(0,0,0,0.18);

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}


/* =========================================================
   CARD TITLE
========================================================= */

.expertise .expertise-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 13px;

    color: #ffffff;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 24px;

    line-height: 1.25;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.expertise .expertise-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #cfc5c2;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   HOVER
========================================================= */

.expertise .expertise-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(211,170,84,0.90);

    box-shadow:
        0 25px 55px
        rgba(25,8,10,0.24);
}

.expertise .expertise-card:hover
.expertise-icon {

    transform: translateY(-2px);

    background:
        linear-gradient(
            145deg,
            #8f1728,
            #5d0e1b
        );

    color: #ffffff;

    border-color: #e0bb61;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .expertise .expertise-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .expertise {
        padding:
            70px 20px 80px;
    }

    .expertise .section-title {
        margin-bottom: 42px;
    }

    .expertise .section-title h2 {
        font-size: 36px;
    }

    .expertise .section-title p {
        font-size: 14px;
    }

    .expertise .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .expertise .expertise-card {
        min-height: auto;
        padding: 31px 27px 32px;
    }

    .expertise .expertise-card h3 {
        font-size: 23px;
    }

}

/* =========================================================
   ABOUT PAGE
   OUR TEAM / PROFESSIONAL TEAM SECTION
========================================================= */

.about-team,
.team-section,
.our-team {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
}


/* ---------------------------------------------------------
   MAIN TEAM LAYOUT
--------------------------------------------------------- */

.about-team .team-container,
.team-section .team-container,
.our-team .team-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(380px, 0.85fr) minmax(0, 1.15fr);

    gap: 75px;

    align-items: center;
}


/* ---------------------------------------------------------
   TEAM IMAGE
--------------------------------------------------------- */

.about-team .team-image,
.team-section .team-image,
.our-team .team-image {
    position: relative;
    width: 100%;
}


/* image itself */

.about-team .team-image img,
.team-section .team-image img,
.our-team .team-image img {
    display: block;

    width: 100%;
    height: 430px;

    object-fit: cover;

    border-radius: 4px;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.14);

    border: 1px solid rgba(198,154,59,0.35);
}


/* ---------------------------------------------------------
   GOLD FRAME EFFECT
--------------------------------------------------------- */

.about-team .team-image::after,
.team-section .team-image::after,
.our-team .team-image::after {
    content: "";

    position: absolute;

    left: 18px;
    top: 18px;

    width: 100%;
    height: 100%;

    border: 1px solid #c69a3b;

    z-index: -1;
}


/* ---------------------------------------------------------
   TEAM CONTENT
--------------------------------------------------------- */

.about-team .team-content,
.team-section .team-content,
.our-team .team-content {
    max-width: 650px;
}


/* small eyebrow */

.about-team .team-eyebrow,
.team-section .team-eyebrow,
.our-team .team-eyebrow {
    display: block;

    margin-bottom: 14px;

    color: #c69a3b;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;
}


/* ---------------------------------------------------------
   HEADING
--------------------------------------------------------- */

.about-team .team-content h2,
.team-section .team-content h2,
.our-team .team-content h2 {
    margin: 0 0 24px;

    color: #171010;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.12;

    font-weight: 700;
}


/* ---------------------------------------------------------
   PARAGRAPHS
--------------------------------------------------------- */

.about-team .team-content p,
.team-section .team-content p,
.our-team .team-content p {
    margin: 0 0 18px;

    color: #5f5956;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 16px;

    line-height: 1.8;
}


/* ---------------------------------------------------------
   TEAM HIGHLIGHTS
--------------------------------------------------------- */

.about-team .team-highlights,
.team-section .team-highlights,
.our-team .team-highlights {
    margin-top: 28px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px 25px;
}


/* individual item */

.about-team .team-highlights li,
.team-section .team-highlights li,
.our-team .team-highlights li {
    position: relative;

    list-style: none;

    padding-left: 27px;

    color: #292323;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 14px;

    line-height: 1.5;
}


/* gold check */

.about-team .team-highlights li::before,
.team-section .team-highlights li::before,
.our-team .team-highlights li::before {
    content: "\f058";

    position: absolute;

    left: 0;
    top: 1px;

    color: #c69a3b;

    font-family:
        "Font Awesome 6 Free";

    font-weight: 900;

    font-size: 15px;
}


/* ---------------------------------------------------------
   OPTIONAL GOLD ACCENT LINE
--------------------------------------------------------- */

.about-team .team-content::before,
.team-section .team-content::before,
.our-team .team-content::before {
    content: "";

    display: block;

    width: 55px;
    height: 3px;

    margin-bottom: 25px;

    background:
        linear-gradient(
            90deg,
            #8f1728,
            #c69a3b
        );
}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 950px) {

    .about-team,
    .team-section,
    .our-team {
        padding: 80px 30px;
    }

    .about-team .team-container,
    .team-section .team-container,
    .our-team .team-container {

        grid-template-columns: 1fr;

        gap: 50px;

        max-width: 720px;
    }

    .about-team .team-image img,
    .team-section .team-image img,
    .our-team .team-image img {
        height: 400px;
    }

    .about-team .team-content,
    .team-section .team-content,
    .our-team .team-content {
        max-width: 100%;
    }
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 600px) {

    .about-team,
    .team-section,
    .our-team {
        padding: 65px 20px;
    }

    .about-team .team-container,
    .team-section .team-container,
    .our-team .team-container {
        gap: 38px;
    }

    .about-team .team-image img,
    .team-section .team-image img,
    .our-team .team-image img {
        height: 280px;
    }

    .about-team .team-image::after,
    .team-section .team-image::after,
    .our-team .team-image::after {
        left: 10px;
        top: 10px;
    }

    .about-team .team-content h2,
    .team-section .team-content h2,
    .our-team .team-content h2 {
        font-size: 36px;
    }

    .about-team .team-content p,
    .team-section .team-content p,
    .our-team .team-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-team .team-highlights,
    .team-section .team-highlights,
    .our-team .team-highlights {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   OUR TEAM — PREMIUM TWO COLUMN LAYOUT
====================================================== */

.team-philosophy {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.team-philosophy .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.team-philosophy .team-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 70px;
}

/* ==============================
   TEAM IMAGE — LEFT
============================== */

.team-philosophy .team-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.team-philosophy .team-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ==============================
   TEAM CONTENT — RIGHT
============================== */

.team-philosophy .team-content {
    width: 100%;
    max-width: 560px;
}

.team-philosophy .team-content > span {
    display: inline-block;
    margin-bottom: 16px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.team-philosophy .team-content h2 {
    margin: 0 0 22px 0;

    font-size: clamp(32px, 3.2vw, 48px);
    line-height: 1.12;
    font-weight: 700;
}

.team-philosophy .team-content p {
    margin: 0 0 18px 0;

    font-size: 16px;
    line-height: 1.8;
}

/* ==============================
   TEAM LIST
============================== */

.team-philosophy .team-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0 0;
}

.team-philosophy .team-list li {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 14px;

    font-size: 15px;
    line-height: 1.5;
}

.team-philosophy .team-list li i {
    flex: 0 0 auto;
    font-size: 17px;
}

/* ==============================
   TABLET
============================== */

@media (max-width: 900px) {

    .team-philosophy .team-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .team-philosophy .team-image {
        height: 430px;
    }

    .team-philosophy .team-content {
        max-width: 100%;
    }
}

/* ==============================
   MOBILE
============================== */

@media (max-width: 600px) {

    .team-philosophy .team-wrapper {
        gap: 32px;
    }

    .team-philosophy .team-image {
        height: 330px;
    }

    .team-philosophy .team-content h2 {
        font-size: 31px;
        line-height: 1.18;
    }

    .team-philosophy .team-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .team-philosophy .team-list li {
        font-size: 14px;
    }
}

/* =====================================================
   REDSPY — COMPANY STATISTICS
   PREMIUM 4-COLUMN LAYOUT
===================================================== */

.company-statistics {
    width: 100%;
    position: relative;
    padding: 80px 0;
    background: #ffffff;
}

.company-statistics .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* ==============================
   FOUR STATISTICS IN ONE ROW
============================== */

.company-statistics .stats-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

/* ==============================
   INDIVIDUAL STAT CARD
============================== */

.company-statistics .stat-card {
    position: relative;

    min-height: 190px;

    padding: 35px 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    background: linear-gradient(
        145deg,
        #170609 0%,
        #26090e 55%,
        #120406 100%
    );

    border: 1px solid rgba(198, 157, 65, 0.65);

    border-radius: 6px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* GOLD TOP LINE */

.company-statistics .stat-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        #c9a441,
        #e5c56b,
        #c9a441,
        transparent
    );
}

/* SUBTLE GOLD GLOW */

.company-statistics .stat-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -100px;
    bottom: -100px;

    border-radius: 50%;

    background: rgba(201, 164, 65, 0.08);

    pointer-events: none;
}

/* ==============================
   NUMBER
============================== */

.company-statistics .stat-card h2 {
    position: relative;
    z-index: 2;

    margin: 0 0 12px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 4vw, 58px);

    line-height: 1;

    font-weight: 700;

    color: #d4af55;

    letter-spacing: -1px;
}

/* ==============================
   DESCRIPTION
============================== */

.company-statistics .stat-card p {
    position: relative;
    z-index: 2;

    max-width: 190px;

    margin: 0;

    font-size: 14px;

    line-height: 1.5;

    font-weight: 500;

    color: rgba(255, 255, 255, 0.82);

    letter-spacing: 0.3px;
}

/* ==============================
   HOVER
============================== */

.company-statistics .stat-card:hover {
    transform: translateY(-8px);

    border-color: #d4af55;

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.20),
        0 0 25px rgba(201, 164, 65, 0.12);
}

/* ==============================
   TABLET
============================== */

@media (max-width: 950px) {

    .company-statistics .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .company-statistics .stat-card {
        min-height: 175px;
    }
}

/* ==============================
   MOBILE
============================== */

@media (max-width: 600px) {

    .company-statistics {
        padding: 55px 0;
    }

    .company-statistics .container {
        padding: 0 18px;
    }

    .company-statistics .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .company-statistics .stat-card {
        min-height: 155px;
        padding: 30px 20px;
    }

    .company-statistics .stat-card h2 {
        font-size: 46px;
    }
}

/* =====================================================
   REDSPY ABOUT PAGE
   FINAL CONSULTATION CTA
===================================================== */

.about-page .consultation,
.consultation {
    position: relative;
    width: 100%;
    padding: 90px 0;
    background: #ffffff;
}

/* Container */

.consultation .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Main CTA Box */

.consultation .consultation-box {
    position: relative;

    width: 100%;

    padding: 70px 80px;

    background:
        linear-gradient(
            135deg,
            #130406 0%,
            #25070d 50%,
            #100304 100%
        );

    border: 1px solid rgba(201, 164, 65, 0.75);

    border-radius: 8px;

    overflow: hidden;

    text-align: center;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.18);
}

/* Gold decorative glow */

.consultation .consultation-box::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -160px;
    right: -100px;

    border-radius: 50%;

    background: rgba(201, 164, 65, 0.08);

    pointer-events: none;
}

/* Bottom gold line */

.consultation .consultation-box::after {
    content: "";

    position: absolute;

    left: 8%;
    right: 8%;
    bottom: 0;

    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        #c9a441,
        #e4c568,
        #c9a441,
        transparent
    );
}

/* Content */

.consultation .consultation-content {
    position: relative;
    z-index: 2;

    max-width: 900px;

    margin: 0 auto;
}

/* Label */

.consultation .consultation-label {
    display: block;

    margin-bottom: 18px;

    color: #d4af55;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

/* Heading */

.consultation .consultation-content h2 {
    margin: 0 auto 22px;

    max-width: 850px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(36px, 4vw, 54px);

    line-height: 1.12;

    font-weight: 700;
}

/* Description */

.consultation .consultation-content p {
    max-width: 760px;

    margin: 0 auto 32px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;

    line-height: 1.7;
}

/* Button */

.consultation .consultation-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 220px;

    padding: 16px 30px;

    background: #a9142b;

    color: #ffffff;

    border: 1px solid #c9a441;

    border-radius: 50px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 0.3px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

/* Button hover */

.consultation .consultation-button:hover {
    background: #c21b35;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Arrow */

.consultation .consultation-button i {
    font-size: 13px;

    transition: transform 0.3s ease;
}

.consultation .consultation-button:hover i {
    transform: translateX(4px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .consultation {
        padding: 70px 0;
    }

    .consultation .consultation-box {
        padding: 60px 45px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .consultation {
        padding: 55px 0;
    }

    .consultation .container {
        padding: 0 18px;
    }

    .consultation .consultation-box {
        padding: 50px 24px;
    }

    .consultation .consultation-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .consultation .consultation-content h2 {
        font-size: 34px;
        line-height: 1.18;
    }

    .consultation .consultation-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .consultation .consultation-button {
        width: 100%;
        min-width: 0;
    }

}