/* ==========================================================
   HOMIE DESIGN SYSTEM
   SECTIONS.CSS
   Version: 1.0
========================================================== */


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

.site-header {
    position: relative;
    z-index: var(--z-sticky);
}


/* ==========================================================
   TOP BAR
========================================================== */

.top-bar {
    display: flex;

    width: 100%;
    height: var(--topbar-height);
    min-height: var(--topbar-height);
    max-height: var(--topbar-height);
    align-items: center;
    padding: 0;
    color: var(--text-white);
    background: var(--navy-deep);
    font-size: var(--font-size-xs);
    line-height: 1;
    overflow: hidden;
    flex: 0 0 var(--topbar-height);
}

.top-bar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.top-bar__left,
.top-bar__social {
    display: flex;
    align-items: center;
}

.top-bar__left {
    flex-wrap: wrap;
    gap: 24px;
}

.top-bar__social {
    gap: 14px;
}

.top-bar a,
.top-bar span {
    color: rgba(255, 255, 255, 0.94);
}

.top-bar i {
    margin-right: 7px;
    color: var(--primary);
}

.top-bar__social a {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    transition:
        background-color var(--transition-fast) ease,
        transform var(--transition-fast) ease;
}

.top-bar__social a:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.top-bar__social i {
    margin: 0;
}


/* ==========================================================
   NAVBAR
========================================================== */

.homie-navbar {
    width: 100%;

    height: var(--navbar-height);
    min-height: var(--navbar-height);
    max-height: var(--navbar-height);
    padding: 0;
    flex-wrap: nowrap;
    border-bottom:
        1px solid rgba(4, 31, 57, 0.08);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transition:
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.homie-navbar > .container {
    height: 100%;
    min-height: 0;

    display: flex;
    align-items: center;

    flex-wrap: nowrap;
}

.homie-navbar .navbar-brand.homie-brand {
    display: inline-flex;

    margin: 0;
    margin-right: 0;

    padding: 0;

    flex: 0 0 auto;

    align-self: center;

    line-height: 1;
}

.homie-brand__mark {
    display: flex;
    align-items: center;

    height: 39px;

    line-height: 39px;
}

.homie-brand__h,
.homie-brand__mie {
    display: inline-flex;

    height: 39px;

    align-items: center;

    line-height: 39px;
}

.homie-brand__house {
    display: grid;

    width: 35px;
    height: 35px;

    margin: 0 2px;

    place-items: center;

    line-height: 1;

    /*
     * ลบ translateY เดิม
     */
    transform: none;
}

.homie-brand__sub {
    display: block;

    height: 11px;

    margin-top: 4px;

    line-height: 11px;
}

.homie-navbar .navbar-collapse {
    height: 100%;
    align-items: center;
}

.homie-navbar .navbar-nav {
    height: 100%;

    align-items: center;

    flex-wrap: nowrap;
}

.site-header.is-scrolled .homie-navbar {
    min-height: var(--navbar-height);
    background: rgba(255, 255, 255, 0.995);
    box-shadow: var(--shadow-md);
}

.homie-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.homie-brand__mark {
    display: flex;
    align-items: center;
    color: var(--navy);
    font-size: 31px;
    font-weight: var(--font-weight-bold);
    letter-spacing: -1.5px;
}

.homie-brand__house {
    display: grid;
    width: 35px;
    height: 35px;
    margin: 0 2px;
    place-items: center;
    border-radius: var(--radius-xs);
    color: var(--text-white);
    background: var(--primary);
    font-size: 18px;
    transform: translateY(-1px);
}

.homie-brand__sub {
    margin-top: 5px;
    color: var(--navy);
    font-size: 9px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 1.25px;
}

.homie-navbar .nav-link {
    position: relative;
    display: flex;
    height: var(--navbar-height);
    align-items: center;
    margin: 0 7px;
    padding: 0 3px;
    color: var(--text);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    white-space: nowrap;
    transition:
        color var(--transition-fast) ease;
}

.homie-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 16px;
    width: 0;
    height: 2px;
    border-radius: var(--radius-pill);
    background: var(--primary);
    transform: translateX(-50%);
    transition: width var(--transition-fast) ease;
}

.homie-navbar .nav-link:hover,
.homie-navbar .nav-link.active {
    color: var(--primary-dark);
}

.homie-navbar .nav-link:hover::after,
.homie-navbar .nav-link.active::after {
    width: 100%;
}

.quote-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 23px;
    border: 1px solid var(--primary);
    border-radius: var(--radius-pill);
    color: var(--text-white);
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 10px 24px rgba(17, 185, 90, 0.25);
    transition:
        transform var(--transition-fast) ease,
        box-shadow var(--transition-fast) ease;
}

.quote-button:hover {
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 15px 32px rgba(17, 185, 90, 0.34);
}

.homie-toggler {
    width: 46px;
    height: 42px;
    padding: 8px;
    border: 0;
    box-shadow: none !important;
}

.homie-toggler span {
    display: block;
    width: 27px;
    height: 2px;
    margin: 5px auto;
    border-radius: var(--radius-pill);
    background: var(--navy);
}


/* ==========================================================
   HERO SECTION
========================================================== */

.hero-section {
    position: relative;
    min-height: var(--hero-height);
    overflow: hidden;
    color: var(--text-white);
    background: var(--navy);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        url("../images/hero-placeholder.jpg")
        center center / cover no-repeat;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(2, 20, 38, 0.94) 0%,
            rgba(2, 20, 38, 0.78) 40%,
            rgba(2, 20, 38, 0.48) 70%,
            rgba(2, 20, 38, 0.25) 100%
        );
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: -7%;
    z-index: 1;
    width: 42%;
    height: 100%;
    background:
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0.01)
        );
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.42;
}

.hero-section .container,
.hero-section .row {
    position: relative;
    z-index: 2;
}

.hero-section .min-vh-100 {
    min-height: var(--hero-height) !important;
}


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

.hero-content {
    max-width: 720px;
    padding: 48px 0;
}

.hero-title-small {
    margin-bottom: 6px;
    color: var(--text-white);
    font-size: clamp(67px, 7vw, 112px);
    font-weight: var(--font-weight-bold);
    letter-spacing: -4px;
    line-height: 0.9;
    text-shadow: 0 7px 24px rgba(0, 0, 0, 0.45);
}

.hero-title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 14px;
    margin: 0;
    color: var(--text-white);
    font-size: clamp(46px, 4.6vw, 74px);
    font-weight: var(--font-weight-bold);
    letter-spacing: -2px;
    line-height: 1.08;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.38);
}

.hero-title .green {
    color: var(--primary);
}

.hero-title > span:last-child {
    width: 100%;
    margin-top: 4px;
}

.hero-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;
    margin-top: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(17, 185, 90, 0.75);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: var(--font-weight-medium);
}

.hero-line i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
}

.hero-description {
    max-width: 630px;
    margin: 20px 0 27px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-buttons .btn {
    display: inline-flex;
    min-width: 181px;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    border-radius: var(--radius-pill);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    transition:
        transform var(--transition-fast) ease,
        box-shadow var(--transition-fast) ease,
        background-color var(--transition-fast) ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
}


/* ==========================================================
   HERO FEATURE CARDS
========================================================== */

.hero-cards {
    display: grid;
    gap: 17px;
    max-width: 440px;
    margin-left: auto;
    padding-left: 34px;
}

.hero-card {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 0;
}

.hero-card .icon {
    position: relative;
    z-index: 2;
    display: grid;
    width: 67px;
    height: 67px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: var(--radius-md);
    color: var(--primary);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    font-size: 28px;
}

.hero-card > div:last-child {
    flex: 1;
    min-height: 64px;
    margin-left: -9px;
    padding: 12px 20px 12px 22px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background:
        linear-gradient(
            90deg,
            rgba(4, 21, 38, 0.84),
            rgba(4, 21, 38, 0.48)
        );
    backdrop-filter: blur(10px);
}

.hero-card h5 {
    margin: 0;
    color: var(--text-white);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
}

.hero-card p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.73);
    font-size: var(--font-size-xs);
    line-height: 1.5;
}


/* ==========================================================
   SERVICES SECTION
========================================================== */

.services-section {
    position: relative;
    z-index: 5;
    margin-top: -25px;
    padding: 44px 0 64px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    background:
        radial-gradient(
            circle at top center,
            rgba(17, 185, 90, 0.035),
            transparent 34%
        ),
        var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.service-card {
    position: relative;
    min-height: 174px;
    overflow: hidden;
    padding: 22px 13px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    background: var(--background);
    box-shadow: var(--shadow-xs);
    transition:
        transform var(--transition-fast) ease,
        border-color var(--transition-fast) ease,
        box-shadow var(--transition-fast) ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--primary-light)
        );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition) ease;
}

.service-card:hover {
    border-color: rgba(17, 185, 90, 0.35);
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin: 0 auto;
    place-items: center;
    border-radius: var(--radius-md);
    color: var(--primary);
    background:
        linear-gradient(
            145deg,
            rgba(17, 185, 90, 0.10),
            rgba(17, 185, 90, 0.025)
        );
    font-size: 29px;
    transition:
        color var(--transition-fast) ease,
        background-color var(--transition-fast) ease,
        transform var(--transition-fast) ease;
}

.service-card:hover .service-card__icon {
    color: var(--text-white);
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );
    transform: rotate(-4deg) scale(1.05);
}

.service-card h3 {
    margin: 15px 0 5px;
    color: var(--text);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    line-height: 1.4;
}

.service-card p {
    min-height: 35px;
    margin: 0;
    color: var(--text-light);
    font-size: 11px;
    line-height: 1.55;
}

.service-card > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: var(--font-weight-medium);
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity var(--transition-fast) ease,
        transform var(--transition-fast) ease;
}

.service-card:hover > a {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================
   STATISTICS SECTION
========================================================== */

.statistics-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 28px;
    overflow: hidden;
    border-radius: var(--radius-md);
    color: var(--text-white);
    background:
        linear-gradient(
            120deg,
            var(--navy-deep),
            var(--navy)
        );
    box-shadow: var(--shadow-lg);
}

.statistics-item {
    position: relative;
    display: flex;
    min-height: 110px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 18px;
}

.statistics-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 23px;
    right: 0;
    width: 1px;
    height: calc(100% - 46px);
    background: rgba(255, 255, 255, 0.22);
}

.statistics-item__icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(17, 185, 90, 0.34);
    border-radius: 50%;
    color: var(--primary);
    background: rgba(17, 185, 90, 0.06);
    font-size: 28px;
}

.statistics-item__content strong,
.statistics-item__content span {
    display: block;
}

.statistics-item__content strong {
    color: var(--text-white);
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    line-height: 1.15;
}

.statistics-item__content span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: var(--font-size-xs);
}


/* ==========================================================
   ABOUT SECTION
========================================================== */

.about-section {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 0;
    background:
        linear-gradient(
            135deg,
            var(--gray-50) 0%,
            var(--background) 52%,
            var(--background-soft) 100%
        );
}

.about-section::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -170px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(17, 185, 90, 0.055);
}

.about-section::after {
    content: "";
    position: absolute;
    bottom: -220px;
    left: -220px;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    background: rgba(2, 39, 70, 0.045);
}

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

.about-visual {
    position: relative;
    max-width: 610px;
    padding: 0 36px 38px 0;
}

.about-visual__main {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            135deg,
            var(--gray-200),
            var(--gray-100)
        );
    box-shadow: var(--shadow-xl);
}

.about-visual__main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    min-width: 230px;
    min-height: 120px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 24px;
    border: 8px solid var(--background-soft);
    border-radius: var(--radius-lg);
    color: var(--text-white);
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );
    box-shadow: var(--shadow-lg);
}

.about-experience strong {
    font-size: 48px;
    font-weight: var(--font-weight-bold);
    line-height: 1;
}

.about-experience span {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    line-height: 1.45;
}

.about-content {
    max-width: 650px;
}

.about-content__lead {
    margin-bottom: 15px;
    color: var(--text);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    line-height: 1.75;
}

.about-content__description {
    margin-bottom: 28px;
    color: var(--text-light);
    font-size: var(--font-size-sm);
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 16px;
    border: 1px solid rgba(0, 32, 58, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-xs);
    transition:
        transform var(--transition-fast) ease,
        border-color var(--transition-fast) ease,
        box-shadow var(--transition-fast) ease;
}

.about-feature:hover {
    border-color: rgba(17, 185, 90, 0.30);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.about-feature__icon {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: var(--radius-sm);
    color: var(--primary);
    background: rgba(17, 185, 90, 0.09);
    font-size: 21px;
}

.about-feature h3 {
    margin: 0 0 4px;
    color: var(--text);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
}

.about-feature p {
    margin: 0;
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.55;
}


/* ==========================================================
   PORTFOLIO SECTION
========================================================== */

.portfolio-section {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 0;
    background:
        linear-gradient(
            180deg,
            var(--background) 0%,
            var(--background-soft) 100%
        );
}

.portfolio-section::before {
    content: "";
    position: absolute;
    top: 80px;
    right: -170px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(17, 185, 90, 0.045);
}

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


/* Portfolio Heading */

.portfolio-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}

.portfolio-heading .section-description {
    max-width: 680px;
}

.portfolio-heading__button {
    flex: 0 0 auto;
}


/* Portfolio Grid */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 265px;
    gap: 20px;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    min-height: 265px;
    border-radius: var(--radius-lg);
    background: var(--gray-200);
    box-shadow: var(--shadow-sm);
    isolation: isolate;
}

.portfolio-card--large {
    grid-row: span 2;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform var(--transition-slow) ease,
        filter var(--transition-slow) ease;
}

.portfolio-card:hover img {
    filter: saturate(1.05);
    transform: scale(1.07);
}


/* Overlay */

.portfolio-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    background:
        linear-gradient(
            180deg,
            rgba(0, 12, 24, 0.03) 15%,
            rgba(0, 18, 35, 0.90) 100%
        );
    transition: background var(--transition) ease;
}

.portfolio-card:hover .portfolio-card__overlay {
    background:
        linear-gradient(
            180deg,
            rgba(0, 12, 24, 0.10) 5%,
            rgba(0, 18, 35, 0.94) 100%
        );
}


/* Portfolio Content */

.portfolio-card__content {
    position: relative;
    width: 100%;
    padding-right: 48px;
    transform: translateY(8px);
    transition: transform var(--transition) ease;
}

.portfolio-card:hover .portfolio-card__content {
    transform: translateY(0);
}

.portfolio-card__category {
    display: inline-flex;
    min-height: 27px;
    align-items: center;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-pill);
    color: var(--primary-light);
    background: rgba(0, 24, 45, 0.42);
    font-size: 10px;
    font-weight: var(--font-weight-semibold);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.portfolio-card__content h3 {
    margin-top: 11px;
    color: var(--text-white);
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.4;
}

.portfolio-card__content p {
    max-width: 420px;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.6;
}


/* Portfolio Link */

.portfolio-card__link {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 50%;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.10);
    opacity: 0;
    transform: translateY(8px);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        opacity var(--transition-fast) ease,
        transform var(--transition-fast) ease,
        background-color var(--transition-fast) ease;
}

.portfolio-card:hover .portfolio-card__link {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-card__link:hover {
    color: var(--text-white);
    background: var(--primary);
}

/* ==========================================================
   NEWS SECTION
========================================================== */

.news-section {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 0;
    background:
        linear-gradient(
            180deg,
            var(--background-soft) 0%,
            var(--background) 100%
        );
}

.news-section::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(17, 185, 90, 0.045);
}

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


/* News Heading */

.news-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}

.news-heading .section-description {
    max-width: 690px;
}

.news-heading__button {
    flex: 0 0 auto;
}


/* News Grid */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* News Card */

.news-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--background);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition-fast) ease,
        border-color var(--transition-fast) ease,
        box-shadow var(--transition-fast) ease;
}

.news-card:hover {
    border-color: rgba(17, 185, 90, 0.28);
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}


/* News Image */

.news-card__image {
    position: relative;
    display: block;
    height: 240px;
    overflow: hidden;
    background: var(--gray-200);
}

.news-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 20, 38, 0.02),
            rgba(0, 20, 38, 0.20)
        );
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform var(--transition-slow) ease,
        filter var(--transition-slow) ease;
}

.news-card:hover .news-card__image img {
    filter: saturate(1.06);
    transform: scale(1.06);
}


/* News Category */

.news-card__category {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius-pill);
    color: var(--text-white);
    background: rgba(0, 28, 51, 0.60);
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* News Body */

.news-card__body {
    padding: 22px;
}

.news-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 13px;
    color: var(--text-light);
    font-size: 11px;
}

.news-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-card__meta i {
    color: var(--primary);
}

.news-card__body h3 {
    margin-bottom: 10px;
    font-size: 19px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.55;
}

.news-card__body h3 a {
    color: var(--text);
    transition: color var(--transition-fast) ease;
}

.news-card__body h3 a:hover {
    color: var(--primary-dark);
}

.news-card__body p {
    min-height: 68px;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.75;
}


/* News Link */

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 17px;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    transition:
        gap var(--transition-fast) ease,
        color var(--transition-fast) ease;
}

.news-card__link:hover {
    gap: 12px;
    color: var(--primary);
}

/* ==========================================================
   CONTACT CTA
========================================================== */

.contact-cta {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    color: var(--text-white);
    background:
        linear-gradient(
            125deg,
            var(--navy-deep) 0%,
            var(--navy) 58%,
            #075038 135%
        );
}

.contact-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 15, 30, 0.22),
            transparent 58%
        );
}

.contact-cta .container {
    position: relative;
    z-index: 3;
}


/* Decorations */

.contact-cta__decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.contact-cta__decoration--one {
    top: -230px;
    right: -160px;
    width: 510px;
    height: 510px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 185, 90, 0.09);
}

.contact-cta__decoration--two {
    bottom: -190px;
    right: 18%;
    width: 380px;
    height: 380px;
    border: 70px solid rgba(255, 255, 255, 0.025);
}


/* Layout */

.contact-cta__inner {
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(300px, 0.55fr);
    align-items: center;
    gap: 70px;
}


/* Content */

.contact-cta__content {
    max-width: 820px;
}

.contact-cta__label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary-light);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 2px;
}

.contact-cta__content h2 {
    max-width: 780px;
    margin: 0;
    color: var(--text-white);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: var(--font-weight-bold);
    line-height: 1.25;
}

.contact-cta__content > p {
    max-width: 760px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: var(--font-size-md);
    line-height: 1.85;
}


/* Contact List */

.contact-cta__contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.contact-cta__contact-list > a {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--text-white);
}

.contact-cta__contact-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    color: var(--primary-light);
    background: rgba(255, 255, 255, 0.07);
    font-size: 17px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-cta__contact-list small,
.contact-cta__contact-list strong {
    display: block;
}

.contact-cta__contact-list small {
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
}

.contact-cta__contact-list strong {
    margin-top: 2px;
    color: var(--text-white);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
}


/* Action Panel */

.contact-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.065);
    box-shadow:
        0 24px 54px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.contact-cta__button {
    display: inline-flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius-pill);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    transition:
        transform var(--transition-fast) ease,
        border-color var(--transition-fast) ease,
        background-color var(--transition-fast) ease,
        box-shadow var(--transition-fast) ease;
}

.contact-cta__button:hover {
    transform: translateY(-2px);
}

.contact-cta__button--primary {
    color: var(--text-white);
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );
    box-shadow:
        0 13px 30px rgba(17, 185, 90, 0.27);
}

.contact-cta__button--primary:hover {
    color: var(--text-white);
    box-shadow:
        0 17px 36px rgba(17, 185, 90, 0.38);
}

.contact-cta__button--outline {
    border: 1px solid rgba(255, 255, 255, 0.46);
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.025);
}

.contact-cta__button--outline:hover {
    border-color: rgba(255, 255, 255, 0.82);
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.09);
}

.contact-cta__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.60);
    font-size: 11px;
    text-align: center;
}

.contact-cta__note i {
    color: var(--primary-light);
}

/* ==========================================================
   PREMIUM FOOTER
========================================================== */

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 76px 0 0;
    color: rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(
            135deg,
            var(--navy-deep) 0%,
            #031f3a 100%
        );
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -260px;
    right: -190px;
    width: 520px;
    height: 520px;
    border: 90px solid rgba(17, 185, 90, 0.025);
    border-radius: 50%;
}

.site-footer::after {
    content: "";
    position: absolute;
    bottom: -260px;
    left: -210px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(17, 185, 90, 0.025);
}

.site-footer .container {
    position: relative;
    z-index: 2;
}


/* Footer Grid */

.footer-grid {
    display: grid;
    grid-template-columns:
        minmax(260px, 1.4fr)
        minmax(150px, 0.7fr)
        minmax(190px, 0.9fr)
        minmax(260px, 1.15fr);
    gap: 52px;
    padding-bottom: 58px;
}


/* Footer Brand */

.footer-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--text-white);
    line-height: 1;
}

.footer-brand__mark {
    display: flex;
    align-items: center;
    color: var(--text-white);
    font-size: 34px;
    font-weight: var(--font-weight-bold);
    letter-spacing: -1.5px;
}

.footer-brand__house {
    display: grid;
    width: 38px;
    height: 38px;
    margin: 0 3px;
    place-items: center;
    border-radius: 9px;
    color: var(--text-white);
    background: var(--primary);
    font-size: 18px;
    box-shadow:
        0 9px 22px rgba(17, 185, 90, 0.25);
}

.footer-brand__sub {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 9px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 1.45px;
}


/* Company Description */

.footer-company__description {
    max-width: 390px;
    margin-top: 23px;
    color: rgba(255, 255, 255, 0.61);
    font-size: 13px;
    line-height: 1.9;
}


/* Social Media */

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.footer-social a {
    display: grid;
    width: 41px;
    height: 41px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.045);
    font-size: 15px;
    transition:
        color var(--transition-fast) ease,
        border-color var(--transition-fast) ease,
        background-color var(--transition-fast) ease,
        transform var(--transition-fast) ease;
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--text-white);
    background: var(--primary);
    transform: translateY(-3px);
}


/* Footer Column */

.footer-column__title {
    position: relative;
    margin: 4px 0 24px;
    padding-bottom: 13px;
    color: var(--text-white);
    font-size: 17px;
    font-weight: var(--font-weight-semibold);
}

.footer-column__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    border-radius: var(--radius-pill);
    background: var(--primary);
}


/* Footer Links */

.footer-links {
    display: grid;
    gap: 12px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.61);
    font-size: 13px;
    transition:
        color var(--transition-fast) ease,
        gap var(--transition-fast) ease;
}

.footer-links a i {
    color: var(--primary);
    font-size: 8px;
}

.footer-links a:hover {
    gap: 12px;
    color: var(--text-white);
}


/* Footer Contact */

.footer-contact__list {
    display: grid;
    gap: 17px;
}

.footer-contact__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact__icon {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(17, 185, 90, 0.22);
    border-radius: 12px;
    color: var(--primary-light);
    background: rgba(17, 185, 90, 0.06);
    font-size: 15px;
}

.footer-contact__list small,
.footer-contact__list strong,
.footer-contact__list a {
    display: block;
}

.footer-contact__list small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 10px;
}

.footer-contact__list strong,
.footer-contact__list a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: var(--font-weight-medium);
    line-height: 1.55;
}

.footer-contact__list a:hover {
    color: var(--primary-light);
}


/* Footer Quote Button */

.footer-quote-button {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 23px;
    padding: 0 21px;
    border-radius: var(--radius-pill);
    color: var(--text-white);
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    box-shadow:
        0 12px 28px rgba(17, 185, 90, 0.22);
    transition:
        transform var(--transition-fast) ease,
        box-shadow var(--transition-fast) ease;
}

.footer-quote-button:hover {
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow:
        0 16px 34px rgba(17, 185, 90, 0.32);
}


/* Footer Bottom */

.footer-bottom {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
}

.footer-bottom__links {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-bottom__links a {
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    transition: color var(--transition-fast) ease;
}

.footer-bottom__links a:hover {
    color: var(--primary-light);
}

.footer-bottom__links span {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.18);
}


/* ==========================================================
   BACK TO TOP
========================================================== */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: var(--z-fixed);
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 50%;
    color: var(--text-white);
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );
    box-shadow:
        0 14px 30px rgba(0, 25, 48, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
        opacity var(--transition-fast) ease,
        visibility var(--transition-fast) ease,
        transform var(--transition-fast) ease,
        box-shadow var(--transition-fast) ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    box-shadow:
        0 18px 38px rgba(17, 185, 90, 0.34);
    transform: translateY(-3px);
}

/* ==========================================================
   PHASE 3 — ABOUT PAGE
========================================================== */


/* ==========================================================
   INNER PAGE HERO
========================================================== */

.inner-hero {
    position: relative;
    display: flex;
    min-height: 420px;
    align-items: center;
    overflow: hidden;
    color: var(--text-white);
    background: var(--navy);
}

.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        url("../images/about-hero.jpg")
        center center / cover no-repeat;
    transform: scale(1.02);
}

.inner-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0, 16, 31, 0.95) 0%,
            rgba(0, 23, 43, 0.80) 48%,
            rgba(0, 23, 43, 0.46) 100%
        );
}

.inner-hero::after {
    content: "";
    position: absolute;
    top: -180px;
    right: -120px;
    z-index: 1;
    width: 450px;
    height: 450px;
    border: 80px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}

.inner-hero__content {
    max-width: 760px;
    padding: 74px 0;
}

.inner-hero__label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary-light);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 2px;
}

.inner-hero h1 {
    margin: 0;
    color: var(--text-white);
    font-size: clamp(48px, 6vw, 78px);
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.30);
}

.inner-hero__content > p {
    max-width: 700px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.85;
}


/* Breadcrumb */

.breadcrumb-homie {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    font-size: 13px;
}

.breadcrumb-homie a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary-light);
}

.breadcrumb-homie a:hover {
    color: var(--text-white);
}

.breadcrumb-homie > span {
    color: rgba(255, 255, 255, 0.57);
}

.breadcrumb-homie > span i {
    font-size: 9px;
}


/* ==========================================================
   COMPANY STORY
========================================================== */

.about-story-section {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 0;
    background: var(--background);
}

.about-story-section::before {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(17, 185, 90, 0.04);
}

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


/* Story Visual */

.about-story-visual {
    position: relative;
    max-width: 610px;
    padding: 0 36px 38px 0;
}

.about-story-visual__main {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    border-radius: var(--radius-xl);
    background: var(--gray-200);
    box-shadow: var(--shadow-xl);
}

.about-story-visual__main::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0, 22, 42, 0.20)
        );
}

.about-story-visual__main img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.about-story-visual__experience {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    min-width: 235px;
    min-height: 120px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 25px;
    border: 8px solid var(--background);
    border-radius: var(--radius-lg);
    color: var(--text-white);
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );
    box-shadow: var(--shadow-lg);
}

.about-story-visual__experience strong {
    font-size: 48px;
    font-weight: var(--font-weight-bold);
    line-height: 1;
}

.about-story-visual__experience span {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    line-height: 1.45;
}

.about-story-visual__pattern {
    position: absolute;
    top: -19px;
    left: -24px;
    z-index: -1;
    width: 130px;
    height: 130px;
    opacity: 0.27;
    background-image:
        radial-gradient(
            circle,
            var(--primary) 2px,
            transparent 2px
        );
    background-size: 14px 14px;
}


/* Story Content */

.about-story-content {
    max-width: 650px;
}

.about-story-content__lead {
    margin: 20px 0 15px;
    color: var(--text);
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    line-height: 1.8;
}

.about-story-content > p:not(.about-story-content__lead) {
    margin-top: 13px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.9;
}

.about-story-signature {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    padding: 18px 20px;
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: var(--background-soft);
}

.about-story-signature__icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(17, 185, 90, 0.10);
    font-size: 22px;
}

.about-story-signature strong,
.about-story-signature span {
    display: block;
}

.about-story-signature strong {
    color: var(--text);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
}

.about-story-signature span {
    margin-top: 4px;
    color: var(--text-light);
    font-size: 12px;
}

/* ==========================================================
   PHASE 3 — COMPANY TIMELINE
========================================================== */

.company-timeline-section {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 0;
    background:
        linear-gradient(
            180deg,
            var(--background) 0%,
            var(--background-soft) 50%,
            var(--background) 100%
        );
}

.company-timeline-section::before {
    content: "";
    position: absolute;
    top: 8%;
    right: -260px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(17, 185, 90, 0.035);
}

.company-timeline-section::after {
    content: "";
    position: absolute;
    bottom: 5%;
    left: -260px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(6, 39, 70, 0.035);
}

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

.timeline-heading {
    max-width: 820px;
    margin-right: auto;
    margin-bottom: 70px;
    margin-left: auto;
}


/* ==========================================================
   TIMELINE WRAPPER
========================================================== */

.company-timeline {
    position: relative;
    display: grid;
    gap: 58px;
}


/* Static center line */

.company-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background:
        linear-gradient(
            180deg,
            transparent 0%,
            var(--gray-300) 6%,
            var(--gray-300) 94%,
            transparent 100%
        );
    transform: translateX(-50%);
}


/* Animated progress */

.company-timeline__progress {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    width: 3px;
    height: 0;
    border-radius: var(--radius-pill);
    background:
        linear-gradient(
            180deg,
            var(--primary-light),
            var(--primary),
            var(--primary-dark)
        );
    box-shadow:
        0 0 18px rgba(17, 185, 90, 0.40);
    transform: translateX(-50%);
    transition: height 0.12s linear;
}


/* ==========================================================
   TIMELINE ITEM
========================================================== */

.timeline-item {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        92px
        minmax(0, 1fr);
    align-items: center;
    min-height: 330px;
}


/* Alternate visual/content positions */

.timeline-item--left .timeline-item__content {
    grid-column: 1;
    grid-row: 1;
}

.timeline-item--left .timeline-item__center {
    grid-column: 2;
    grid-row: 1;
}

.timeline-item--left .timeline-item__visual {
    grid-column: 3;
    grid-row: 1;
}


.timeline-item--right .timeline-item__visual {
    grid-column: 1;
    grid-row: 1;
}

.timeline-item--right .timeline-item__center {
    grid-column: 2;
    grid-row: 1;
}

.timeline-item--right .timeline-item__content {
    grid-column: 3;
    grid-row: 1;
}


/* ==========================================================
   CENTER DOT
========================================================== */

.timeline-item__center {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item__dot {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 7px solid var(--background-soft);
    border-radius: 50%;
    color: var(--text-white);
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );
    box-shadow:
        0 9px 26px rgba(17, 185, 90, 0.30);
    font-size: 19px;
    transition:
        transform var(--transition-fast) ease,
        box-shadow var(--transition-fast) ease;
}

.timeline-item.is-visible .timeline-item__dot {
    transform: scale(1.08);
    box-shadow:
        0 12px 32px rgba(17, 185, 90, 0.42);
}


/* ==========================================================
   TIMELINE CARD
========================================================== */

.timeline-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        transform var(--transition) ease,
        border-color var(--transition) ease,
        box-shadow var(--transition) ease;
}

.timeline-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background:
        linear-gradient(
            180deg,
            var(--primary),
            var(--primary-light)
        );
}

.timeline-card:hover {
    border-color: rgba(17, 185, 90, 0.28);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.timeline-card__year {
    display: inline-block;
    color: var(--primary-dark);
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    line-height: 1;
}

.timeline-card__tag {
    display: block;
    margin-top: 8px;
    color: var(--text-light);
    font-size: 10px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 1.7px;
}

.timeline-card h3 {
    margin-top: 19px;
    color: var(--text);
    font-size: 21px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.5;
}

.timeline-card p {
    margin-top: 11px;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.85;
}


/* ==========================================================
   TIMELINE IMAGE — FINAL CONSISTENCY
========================================================== */

.timeline-image {
    position: relative;
    width: 100%;
    height: 310px;
    min-height: 310px;
    overflow: hidden;

    border-radius: 22px;

    background: var(--gray-200);

    box-shadow:
        0 18px 45px rgba(0, 30, 55, 0.10);
}


.timeline-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.8s ease;
}


.timeline-image__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0, 20, 38, 0.00) 55%,
            rgba(0, 20, 38, 0.16) 100%
        );
}


.timeline-item:hover .timeline-image img {
    transform: scale(1.045);
    filter: saturate(1.05);
}


/* ==========================================================
   TIMELINE REVEAL STATE
========================================================== */

.timeline-item__content,
.timeline-item__visual,
.timeline-item__dot {
    opacity: 0;
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}


/* Left item */

.timeline-item--left .timeline-item__content {
    transform: translateX(-46px);
}

.timeline-item--left .timeline-item__visual {
    transform: translateX(46px);
}


/* Right item */

.timeline-item--right .timeline-item__visual {
    transform: translateX(-46px);
}

.timeline-item--right .timeline-item__content {
    transform: translateX(46px);
}


/* Dot */

.timeline-item__dot {
    transform: scale(0.65);
}


/* Visible */

.timeline-item.is-visible .timeline-item__content,
.timeline-item.is-visible .timeline-item__visual {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item.is-visible .timeline-item__dot {
    opacity: 1;
    transform: scale(1);
}


/* Stagger */

.timeline-item.is-visible .timeline-item__visual {
    transition-delay: 0.12s;
}

.timeline-item.is-visible .timeline-item__dot {
    transition-delay: 0.20s;
}

/* ==========================================================
   VISION / MISSION / VALUES
========================================================== */

.about-direction-section {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 0;
    background:
        linear-gradient(
            180deg,
            var(--background-soft),
            var(--background)
        );
}

.about-direction-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.about-direction-card {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    padding: 34px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--background);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition-fast) ease,
        border-color var(--transition-fast) ease,
        box-shadow var(--transition-fast) ease;
}

.about-direction-card:hover {
    border-color: rgba(17, 185, 90, 0.30);
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

.about-direction-card__number {
    position: absolute;
    top: 20px;
    right: 24px;
    color: rgba(17, 185, 90, 0.10);
    font-size: 72px;
    font-weight: var(--font-weight-bold);
    line-height: 1;
}

.about-direction-card__icon {
    position: relative;
    z-index: 2;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border-radius: 18px;
    color: var(--primary);
    background: rgba(17, 185, 90, 0.09);
    font-size: 27px;
}

.about-direction-card h3 {
    position: relative;
    z-index: 2;
    margin-top: 25px;
    color: var(--text);
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
}

.about-direction-card p {
    position: relative;
    z-index: 2;
    margin-top: 13px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.85;
}


/* ==========================================================
   WHY CHOOSE HOMIE
========================================================== */

.about-strength-section {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 0;
    background:
        linear-gradient(
            135deg,
            var(--navy-deep) 0%,
            var(--navy) 100%
        );
}

.about-strength-section::before {
    content: "";
    position: absolute;
    top: -190px;
    right: -170px;
    width: 440px;
    height: 440px;
    border: 80px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
}

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

.about-strength-content .section-label {
    color: var(--primary-light);
}

.about-strength-content .section-title {
    color: var(--text-white);
}

.about-strength-content .section-title span {
    color: var(--primary-light);
}

.about-strength-content .section-description {
    color: rgba(255, 255, 255, 0.67);
}

.about-strength-content .btn-homie {
    margin-top: 28px;
}


/* Strength Grid */

.about-strength-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.about-strength-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 142px;
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
        transform var(--transition-fast) ease,
        border-color var(--transition-fast) ease,
        background-color var(--transition-fast) ease;
}

.about-strength-card:hover {
    border-color: rgba(17, 185, 90, 0.34);
    background: rgba(255, 255, 255, 0.085);
    transform: translateY(-4px);
}

.about-strength-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 14px;
    color: var(--primary-light);
    background: rgba(17, 185, 90, 0.10);
    font-size: 21px;
}

.about-strength-card h3 {
    margin: 0 0 5px;
    color: var(--text-white);
    font-size: 15px;
    font-weight: var(--font-weight-semibold);
}

.about-strength-card p {
    color: rgba(255, 255, 255, 0.60);
    font-size: 12px;
    line-height: 1.65;
}


/* ==========================================================
   ABOUT SERVICES
========================================================== */

.about-services-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--background);
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-service-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 17px;
    min-height: 126px;
    padding: 21px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--background);
    box-shadow: var(--shadow-xs);
    transition:
        transform var(--transition-fast) ease,
        border-color var(--transition-fast) ease,
        box-shadow var(--transition-fast) ease;
}

.about-service-item:hover {
    border-color: rgba(17, 185, 90, 0.32);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-service-item__icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 17px;
    color: var(--primary);
    background: rgba(17, 185, 90, 0.09);
    font-size: 25px;
    transition:
        color var(--transition-fast) ease,
        background-color var(--transition-fast) ease;
}

.about-service-item:hover .about-service-item__icon {
    color: var(--text-white);
    background: var(--primary);
}

.about-service-item h3 {
    color: var(--text);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
}

.about-service-item p {
    margin-top: 5px;
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.65;
}

.about-service-item > i {
    color: var(--primary);
    font-size: 14px;
    transition: transform var(--transition-fast) ease;
}

.about-service-item:hover > i {
    transform: translateX(5px);
}


/* ==========================================================
   WORK PROCESS
========================================================== */

.about-process-section {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 0;
    background: var(--background-soft);
}

.about-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.about-process-grid::before {
    content: "";
    position: absolute;
    top: 51px;
    right: 9%;
    left: 9%;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(17, 185, 90, 0.40),
            transparent
        );
}

.about-process-step {
    position: relative;
    z-index: 2;
    min-height: 265px;
    padding: 25px 18px 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    background: var(--background);
    box-shadow: var(--shadow-xs);
}

.about-process-step__number {
    position: absolute;
    top: 16px;
    right: 17px;
    color: rgba(17, 185, 90, 0.15);
    font-size: 26px;
    font-weight: var(--font-weight-bold);
}

.about-process-step__icon {
    position: relative;
    z-index: 2;
    display: grid;
    width: 58px;
    height: 58px;
    margin: 0 auto;
    place-items: center;
    border: 5px solid var(--background-soft);
    border-radius: 50%;
    color: var(--text-white);
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );
    box-shadow: 0 10px 24px rgba(17, 185, 90, 0.23);
    font-size: 21px;
}

.about-process-step h3 {
    margin-top: 22px;
    color: var(--text);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
}

.about-process-step p {
    margin-top: 9px;
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.7;
}


/* ==========================================================
   PHASE 3 — ABOUT PAGE
   PREMIUM CONTACT CTA
========================================================== */

.inner-contact-cta {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    color: #ffffff;
    background: var(--navy-deep);
}


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

.inner-contact-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        url("../images/hero-placeholder.jpg")
        center 55% / cover no-repeat;

    transform: scale(1.04);
}


.inner-contact-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            100deg,
            rgba(0, 20, 39, 0.97) 0%,
            rgba(0, 31, 54, 0.92) 48%,
            rgba(0, 85, 56, 0.77) 100%
        );
}


/* Green Glow */

.inner-contact-cta::before {
    content: "";
    position: absolute;
    top: -240px;
    right: -160px;
    z-index: 2;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        rgba(22, 205, 108, 0.12);

    filter: blur(2px);
}


/* Decorative Circle */

.inner-contact-cta::after {
    content: "";
    position: absolute;
    right: 80px;
    bottom: -290px;
    z-index: 2;

    width: 500px;
    height: 500px;

    border: 85px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}


.inner-contact-cta .container {
    position: relative;
    z-index: 5;
}


/* ==========================================================
   LAYOUT
========================================================== */

.inner-contact-cta__content {
    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(320px, 0.65fr);

    align-items: center;
    gap: 80px;
}


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

.inner-contact-cta__text {
    max-width: 780px;
}


.inner-contact-cta__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 15px;

    color: var(--primary-light);

    font-size: 11px;
    font-weight: var(--font-weight-semibold);

    letter-spacing: 2.2px;
}


.inner-contact-cta__label::before {
    content: "";

    width: 34px;
    height: 2px;

    border-radius: 20px;

    background: var(--primary);
}


.inner-contact-cta h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(38px, 4.2vw, 60px);
    font-weight: var(--font-weight-bold);

    line-height: 1.25;

    letter-spacing: -1px;
}


.inner-contact-cta h2 span {
    color: var(--primary-light);
}


.inner-contact-cta__text > p {
    max-width: 700px;

    margin-top: 20px;

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

    font-size: 15px;
    line-height: 1.9;
}


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

.inner-contact-cta__features {
    display: flex;
    flex-wrap: wrap;

    gap: 12px 23px;

    margin-top: 26px;
}


.inner-contact-cta__features span {
    display: inline-flex;
    align-items: center;

    gap: 8px;

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

    font-size: 12px;
    font-weight: var(--font-weight-medium);
}


.inner-contact-cta__features i {
    color: var(--primary-light);
}


/* ==========================================================
   ACTION PANEL
========================================================== */

.inner-contact-cta__actions {
    display: grid;
    gap: 13px;

    padding: 22px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;

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

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.20);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}


.inner-contact-cta__actions .btn-homie {
    display: flex;

    width: 100%;
    min-height: 70px;

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

    gap: 14px;

    padding: 13px 18px;

    border-radius: 16px;

    text-align: left;

    transition:
        transform var(--transition-fast) ease,
        border-color var(--transition-fast) ease,
        box-shadow var(--transition-fast) ease;
}


.inner-contact-cta__actions .btn-homie i {
    display: grid;

    width: 40px;
    height: 40px;

    flex: 0 0 auto;

    place-items: center;

    border-radius: 12px;

    font-size: 17px;
}


/* Text */

.inner-contact-cta__actions .btn-homie span {
    display: flex;
    flex-direction: column;

    line-height: 1.3;
}


.inner-contact-cta__actions .btn-homie small {
    margin-bottom: 2px;

    font-size: 10px;
    font-weight: var(--font-weight-medium);

    opacity: 0.68;
}


.inner-contact-cta__actions .btn-homie span {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
}


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

.inner-contact-cta__primary {
    border: 1px solid var(--primary);

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    box-shadow:
        0 13px 32px rgba(17, 185, 90, 0.22);
}


.inner-contact-cta__primary i {
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.94);
}


.inner-contact-cta__primary:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 18px 38px rgba(17, 185, 90, 0.32);
}


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

.inner-contact-cta__phone {
    border: 1px solid rgba(255, 255, 255, 0.28);

    color: #ffffff;

    background: rgba(255, 255, 255, 0.06);
}


.inner-contact-cta__phone i {
    color: var(--primary-light);

    background: rgba(17, 185, 90, 0.10);
}


.inner-contact-cta__phone:hover {
    border-color: rgba(255, 255, 255, 0.60);

    color: #ffffff;

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

    transform: translateY(-3px);
}

/* ==========================================================
   PHASE 3 — ABOUT TEAM
   CORPORATE ALTERNATING LAYOUT
========================================================== */

.about-team-section {
    position: relative;
    overflow: hidden;

    padding: 60px 0 70px;

    background:
        radial-gradient(
            circle at 85% 12%,
            rgba(17, 185, 90, 0.055),
            transparent 28%
        ),
        radial-gradient(
            circle at 8% 88%,
            rgba(6, 39, 70, 0.045),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f5f9f7 0%,
            #f8fbfa 45%,
            #f3f8f5 100%
        );

    border-top: 1px solid rgba(6, 39, 70, 0.05);
    border-bottom: 1px solid rgba(6, 39, 70, 0.05);
}

.about-team-section::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -150px;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background:
        rgba(17, 185, 90, 0.055);

    filter: blur(1px);
}

.about-team-section::after {
    content: "";
    position: absolute;
    bottom: -190px;
    left: -170px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        rgba(6, 39, 70, 0.04);
}

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


/* ==========================================================
   HEADING
========================================================== */

.about-team-heading {
    max-width: 800px;
    margin-right: auto;
    margin-bottom: 38px;
    margin-left: auto;
}


/* ==========================================================
   TEAM LIST
========================================================== */

.about-team-list {
    display: grid;
    gap: 48px;
}


/* ==========================================================
   TEAM FEATURE
========================================================== */

.team-feature {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(0, 0.82fr);
    align-items: center;
    gap: 40px;
}


/* Alternating order */

.team-feature--image-left .team-feature__visual {
    grid-column: 1;
    grid-row: 1;
}

.team-feature--image-left .team-feature__content {
    grid-column: 2;
    grid-row: 1;
}


.team-feature--image-right {
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);
}

.team-feature--image-right .team-feature__content {
    grid-column: 1;
    grid-row: 1;
}

.team-feature--image-right .team-feature__visual {
    grid-column: 2;
    grid-row: 1;
}


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

.team-feature__visual {
    position: relative;
}

.team-feature__image {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    border-radius: 24px;
    background: var(--gray-200);
    box-shadow:
        0 20px 48px rgba(0, 30, 55, 0.11);
}

.team-feature__image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: inherit;
    pointer-events: none;
}

.team-feature__image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition:
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.9s ease;
}

.team-feature:hover .team-feature__image img {
    filter: saturate(1.05);
    transform: scale(1.035);
}

.team-feature__image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(0, 19, 37, 0.00) 45%,
            rgba(0, 19, 37, 0.22) 100%
        );
}


/* ==========================================================
   FLOATING IMAGE BADGE
========================================================== */

.team-feature__image-badge {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 4;
    display: flex;
    min-width: 160px;
    align-items: center;
    gap: 12px;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    color: var(--text-white);
    background: rgba(2, 29, 51, 0.78);
    box-shadow:
        0 15px 34px rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.team-feature__image-badge > span {
    color: var(--primary-light);
    font-size: 31px;
    font-weight: var(--font-weight-bold);
    line-height: 1;
}

.team-feature__image-badge small,
.team-feature__image-badge strong {
    display: block;
}

.team-feature__image-badge small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 8px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 1.5px;
}

.team-feature__image-badge strong {
    margin-top: 2px;
    color: var(--text-white);
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
}


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

.team-feature__content {
    position: relative;
}

.team-feature__content::before {
    content: "";
    position: absolute;
    top: 0;
    left: -26px;
    width: 3px;
    height: 58px;
    border-radius: var(--radius-pill);
    background:
        linear-gradient(
            180deg,
            var(--primary),
            var(--primary-light)
        );
}

.team-feature__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 1.8px;
}

.team-feature__content h3 {
    color: var(--navy-deep);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: var(--font-weight-bold);
    line-height: 1.25;
}

.team-feature__lead {
    margin-top: 12px;
    color: var(--text);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    line-height: 1.65;
}

.team-feature__description {
    margin-top: 9px;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.75;
}


/* ==========================================================
   FEATURE POINTS
========================================================== */

.team-feature__points {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.team-feature__point {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 8px 11px;
    border: 1px solid rgba(6, 39, 70, 0.07);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
    0 8px 22px rgba(0, 30, 55, 0.045);
    transition:
        transform var(--transition-fast) ease,
        border-color var(--transition-fast) ease,
        background-color var(--transition-fast) ease;
}

.team-feature__point:hover {
    border-color: rgba(17, 185, 90, 0.25);

    background: #ffffff;

    transform: translateX(4px);

    box-shadow:
        0 12px 28px rgba(0, 30, 55, 0.075);
}

.team-feature__point > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    color: var(--primary);
    background: rgba(17, 185, 90, 0.085);
    font-size: 15px;
}

.team-feature__point strong {
    display: block;
    color: var(--text);
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
}

.team-feature__point p {
    margin-top: 2px;
    color: var(--text-light);
    font-size: 11px;
    line-height: 1.5;
}


/* ==========================================================
   SEPARATOR BETWEEN TEAMS
========================================================== */

.team-feature:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 12%;
    bottom: -24px;
    left: 12%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(6, 39, 70, 0.09),
            transparent
        );
}

/* ==========================================================
   PHASE 3 — ABOUT ACHIEVEMENT
========================================================== */

.about-achievement-section {
    position: relative;
    overflow: hidden;
    padding: 82px 0 92px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faf9 100%
        );
}

.about-achievement-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(17, 185, 90, 0.045);
}

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

.about-achievement-heading {
    max-width: 780px;
    margin-right: auto;
    margin-bottom: 48px;
    margin-left: auto;
}


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

.about-achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}


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

.about-achievement-card {
    position: relative;
    min-height: 285px;
    overflow: hidden;
    padding: 28px 24px;
    border: 1px solid rgba(6, 39, 70, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        0 16px 38px rgba(0, 30, 55, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        transform var(--transition-fast) ease,
        border-color var(--transition-fast) ease,
        box-shadow var(--transition-fast) ease;
}

.about-achievement-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--primary-light)
        );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition) ease;
}

.about-achievement-card:hover {
    border-color: rgba(17, 185, 90, 0.26);
    transform: translateY(-8px);
    box-shadow:
        0 24px 50px rgba(0, 30, 55, 0.12);
}

.about-achievement-card:hover::before {
    transform: scaleX(1);
}


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

.about-achievement-card__icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 16px;
    color: var(--primary);
    background: rgba(17, 185, 90, 0.09);
    font-size: 24px;
}


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

.about-achievement-card__number {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-top: 22px;
}

.about-achievement-card__number strong {
    color: var(--navy-deep);
    font-size: 46px;
    font-weight: var(--font-weight-bold);
    line-height: 1;
    letter-spacing: -1.5px;
}

.about-achievement-card__number span {
    padding-bottom: 5px;
    color: var(--primary);
    font-size: 22px;
    font-weight: var(--font-weight-bold);
}


/* ==========================================================
   TEXT
========================================================== */

.about-achievement-card h3 {
    margin-top: 16px;
    color: var(--text);
    font-size: 17px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.45;
}

.about-achievement-card p {
    margin-top: 8px;
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.7;
}

/* ==========================================================
   PHASE 3 — ABOUT FAQ
========================================================== */

.about-faq-section {
    position: relative;
    overflow: hidden;
    padding: 88px 0 96px;
    background:
        linear-gradient(
            180deg,
            var(--background) 0%,
            var(--background-soft) 100%
        );
}

.about-faq-section::before {
    content: "";
    position: absolute;
    top: -210px;
    left: -220px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(17, 185, 90, 0.035);
}

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


/* Intro */

.about-faq-intro {
    position: sticky;
    top: 130px;
}

.about-faq-intro .section-description {
    max-width: 460px;
}


/* Contact Box */

.about-faq-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 410px;
    margin-top: 30px;
    padding: 18px;
    border: 1px solid rgba(17, 185, 90, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-sm);
}

.about-faq-contact__icon {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(17, 185, 90, 0.09);
    font-size: 22px;
}

.about-faq-contact small,
.about-faq-contact strong,
.about-faq-contact a {
    display: block;
}

.about-faq-contact small {
    color: var(--text-light);
    font-size: 10px;
}

.about-faq-contact strong {
    margin-top: 2px;
    color: var(--text);
    font-size: 14px;
}

.about-faq-contact a {
    margin-top: 5px;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
}

.about-faq-contact a i {
    margin-left: 5px;
    font-size: 10px;
}


/* Accordion */

.about-faq-accordion {
    display: grid;
    gap: 12px;
}

.about-faq-item {
    overflow: hidden;
    border: 1px solid rgba(6, 39, 70, 0.09) !important;
    border-radius: 16px !important;
    background: #ffffff;
    box-shadow:
        0 10px 28px rgba(0, 30, 55, 0.05);
}

.about-faq-item .accordion-button {
    min-height: 76px;
    gap: 15px;
    padding: 18px 22px;
    color: var(--text);
    background: #ffffff;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    box-shadow: none !important;
}

.about-faq-item .accordion-button:not(.collapsed) {
    color: var(--navy-deep);
    background:
        linear-gradient(
            90deg,
            rgba(17, 185, 90, 0.075),
            rgba(255, 255, 255, 0)
        );
}

.about-faq-item .accordion-button::after {
    width: 18px;
    height: 18px;
    background-size: 18px;
}

.about-faq-number {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    color: var(--primary-dark);
    background: rgba(17, 185, 90, 0.09);
    font-size: 11px;
    font-weight: var(--font-weight-bold);
}

.about-faq-item .accordion-button:not(.collapsed)
.about-faq-number {
    color: #ffffff;
    background: var(--primary);
}

.about-faq-item .accordion-body {
    padding: 2px 22px 22px 75px;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.85;
}

/* ==========================================================
   ABOUT PAGE — FINAL SECTION FLOW
   TEAM → ACHIEVEMENT → WHY CHOOSE
========================================================== */

/* ลดช่องว่างปลาย Team */
.about-team-section {
    padding-bottom: 58px;
}

/* ดึง Achievement ขึ้นมาใกล้ Team ขึ้น */
.about-achievement-section {
    padding-top: 52px;
    padding-bottom: 62px;
}

/* ลดระยะ Heading ของ Achievement */
.about-achievement-heading {
    margin-bottom: 34px;
}

/* ทำให้รอยต่อ Team → Achievement นุ่มขึ้น */
.about-achievement-section {
    position: relative;
}

.about-achievement-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: min(760px, 78%);
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(6, 39, 70, 0.10),
            transparent
        );

    transform: translateX(-50%);
}

/* กระชับ Achievement Cards */
.about-achievement-grid {
    gap: 16px;
}

.about-achievement-card {
    min-height: 250px;
    padding: 24px 22px;
}

.about-achievement-card__number {
    margin-top: 18px;
}

.about-achievement-card h3 {
    margin-top: 13px;
}

.about-achievement-card p {
    margin-top: 6px;
}


/* ==========================================================
   ACHIEVEMENT → WHY CHOOSE HOMIE
========================================================== */

/* ให้ WHY CHOOSE ต่อจาก Achievement แบบพอดี */
.about-strength-section {
    padding-top: 64px;
    padding-bottom: 68px;
}

/* ลดช่องว่างก่อนปุ่ม */
.about-strength-content .btn-homie {
    margin-top: 22px;
}

/* กระชับ Card ฝั่งขวาเล็กน้อย */
.about-strength-grid {
    gap: 12px;
}

.about-strength-card {
    min-height: 128px;
    padding: 17px;
}

.about-strength-card__icon {
    width: 44px;
    height: 44px;
    font-size: 19px;
}

.about-strength-card h3 {
    font-size: 14px;
}

.about-strength-card p {
    font-size: 11px;
    line-height: 1.6;
}

/* ==========================================================
   HEADER — STABLE SCROLL FIX
========================================================== */

.site-header {
    width: 100%;
}

.homie-navbar {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    will-change: box-shadow, background-color;
}

/* ==========================================================
   HEADER — ANTI JITTER FINAL FIX
========================================================== */

.site-header,
.top-bar,
.homie-navbar,
.homie-brand,
.homie-brand img,
.homie-brand__image {
    transform: none;
}

.site-header,
.top-bar,
.homie-navbar {
    height: auto;
}

.homie-navbar {
    min-height: var(--navbar-height);
}

.site-header {
    width: 100%;
}

/* ==========================================================
   HOMIE HEADER — FINAL STABLE STICKY
========================================================== */

.site-header {
    position: sticky;
    top: 0;

    z-index: 1050;

    width: 100%;

    transform: none;

    /*
     * แยก Header ออกจากการ repaint ของเนื้อหาด้านล่าง
     */
    isolation: isolate;

    background: #ffffff;
}