@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --color-green: #729c40;
    --color-text-body: #4a4a68;
    --color-text-subtile: #a8a8ab;
    --color-terrakon: #115733;
    --color-dark: #141414;

    --bg-page: #f6f8fd;
    --border-color: #e3e3e0;
    --muted: #dbdbd7;

    --font-primary: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

    --shadow-primary: 0px 23px 47.5px rgba(64, 156, 95, 0.25);

    --radius-20: 20px;
    --radius-24: 24px;
    --radius-36: 36px;

    --size-hero-title: 55px;
    --weight-hero-title: 700;
    --color-hero-title: var(--color-text-body);

    --size-hero-subtitle: 18px;
    --weight-hero-subtitle: 400;
    --color-hero-subtitle: var(--color-text-body);

    --size-section-title: 28px;
    --weight-section-title: 700;
    --color-section-title: var(--color-text-body);

    --size-section-subtitle: 18px;
    --weight-section-subtitle: 400;
    --color-section-subtitle: var(--color-text-subtile);
    --navbar-height: 105px;
}

.dark {
    --bg-page: #0a0a0a;
    --color-text-body: #ededec;
    --border-color: #3e3e3a;
    --muted: #3e3e3a;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: var(--font-primary);
    color: var(--color-text-body);
    background-color: var(--bg-page);
}
main {
    padding-top: var(--navbar-height);
}
a {
    color: var(--color-terrakon);
    text-decoration: none;
}

.text-body {
    color: var(--color-text-body);
}
.text-subtile {
    color: var(--color-text-subtile);
}
.text-terrakon {
    color: var(--color-terrakon);
}
.bg-terrakon {
    background-color: var(--color-terrakon);
    color: #fff;
}

.radius-20 {
    border-radius: var(--radius-20);
}
.radius-24 {
    border-radius: var(--radius-24);
}
.radius-36 {
    border-radius: var(--radius-36);
}
.shadow-primary {
    box-shadow: var(--shadow-primary);
}
.border {
    border: 1px solid var(--border-color);
}
.muted {
    color: var(--muted);
}

.hero {
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-media {
    position: absolute;
    inset: 0;
}
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 18%,
        rgba(255, 255, 255, 0.85) 38%,
        rgba(255, 255, 255, 0.6) 58%,
        rgba(255, 255, 255, 0.3) 78%,
        rgba(255, 255, 255, 0) 95%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 1rem;
}
.hero-content .hero-title,
.hero-content .hero-subtitle {
    margin: 0;
}
.hero-title {
    font-size: var(--size-hero-title);
    font-weight: var(--weight-hero-title);
    color: var(--color-hero-title);
}
.hero-subtitle {
    font-size: var(--size-hero-subtitle);
    font-weight: var(--weight-hero-subtitle);
    color: var(--color-hero-subtitle);
}

@media (max-width: 576px) {
    .hero {
        min-height: 240px;
    }
    .hero-title {
        font-size: calc(var(--size-hero-title) * 0.6);
    }
    .hero-subtitle {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .hero {
        min-height: 430px;
    }
}

.section {
    display: block;
}
.section-title {
    font-size: var(--size-section-title);
    font-weight: var(--weight-section-title);
    color: var(--color-section-title);
}
.section-subtitle {
    font-size: var(--size-section-subtitle);
    font-weight: var(--weight-section-subtitle);
    color: var(--color-section-subtitle);
}

.text-dark {
    color: var(--color-dark);
}

.about {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
@media (min-width: 992px) {
    .about {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}
.about-card {
    background-color: var(--bg-page);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-36);
    box-shadow: var(--shadow-primary);
    padding: 1.5rem;
}
@media (min-width: 768px) {
    .about-card {
        padding: 2rem;
    }
}
.stacked-photos {
    display: flex;
    align-items: center;
}
.stacked-photos .photo {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--bg-page);
}
.stacked-photos .photo + .photo {
    margin-left: -16px;
}
.stars svg {
    width: 18px;
    height: 18px;
    fill: #ffc107;
}
.stars i {
    color: #ffc107;
    font-size: 18px;
}
.rating-value {
    margin-left: 0.5rem;
    font-weight: 700;
    color: var(--color-text-body);
}
.rating-text {
    margin-top: 4px;
}
.about-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-text-body);
}
.about-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-body);
}
.icon-check {
    width: 18px;
    height: 18px;
    object-fit: contain;
    vertical-align: middle;
    margin: 0 6px;
}
.about-desc {
    font-size: 16px;
    color: var(--color-text-subtile);
}
.about-media {
    min-height: 280px;
    border-radius: var(--radius-36);
    overflow: hidden;
}
.about-media .about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-24);
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
}
.btn-primary {
    background: var(--color-terrakon);
    color: #fff;
    border-color: var(--color-terrakon);
}
.btn-outline {
    background: transparent;
    color: var(--color-terrakon);
    border-color: var(--color-terrakon);
}
.btn-ghost {
    background: transparent;
    color: var(--color-text-body);
    border-color: transparent;
}
.btn-lg {
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-36);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-20);
    border: 1px solid var(--border-color);
    background-color: var(--bg-page);
    color: var(--color-text-body);
    font-size: 0.75rem;
}

.card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-24);
}
.card-body {
    padding: 1rem;
    color: var(--color-text-body);
}

.navbar-terrakon {
    padding-top: 27px;
    padding-bottom: 27px;
    background-color: var(--bg-page);
    transition: background-color 0.2s ease, box-shadow 0.2s ease,
        backdrop-filter 0.2s ease;
}
.navbar-terrakon.scrolled {
    background-color: rgba(246, 248, 253, 0.7);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 20px rgba(20, 20, 20, 0.06);
    border-bottom: 1px solid var(--border-color);
}
.navbar-terrakon .navbar-nav .nav-link {
    font-weight: 600;
    color: var(--color-text-body);
    padding: 0.5rem 0.75rem;
}
.navbar-terrakon .navbar-nav .nav-link:hover,
.navbar-terrakon .navbar-nav .nav-link:focus {
    color: var(--color-terrakon);
}
.navbar-terrakon .navbar-nav .nav-link.active {
    color: var(--color-green);
}
.navbar-terrakon .dropdown-menu {
    border-radius: var(--radius-20);
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-terrakon);
}
.logo-img {
    height: 40px;
    width: auto;
}
.btn-cta {
    background: var(--color-green);
    color: #fff;
    border-color: var(--color-green);
    border-radius: 9999px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
}
.btn-cta:hover {
    filter: brightness(1.05);
}

.portfolio {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
@media (min-width: 992px) {
    .portfolio {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}
.portfolio .section-subtitle {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
.portfolio-controls .btn,
.radio-pill {
    font-weight: 600;
}
.btn-pill {
    border-radius: 9999px;
    padding: 16px 27px;
    border: 1px solid var(--color-text-subtile);
    background: transparent;
    color: var(--color-text-body);
}
.btn-pill:hover,
.btn-pill:focus {
    border-color: var(--color-text-subtile);
}
.btn-pill .icon,
.radio-pill .icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.btn-green {
    background: var(--color-green);
    color: #fff;
    border-color: var(--color-green);
}
.radio-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.radio-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 27px;
    border-radius: 9999px;
    border: 1px solid var(--color-text-subtile);
    background: transparent;
    color: var(--color-text-body);
    line-height: 1;
    cursor: pointer;
}
.radio-pill:hover,
.radio-pill:focus {
    border-color: var(--color-text-subtile);
}
.radio-input:checked + .radio-pill {
    border-color: var(--color-green);
    color: var(--color-green);
}
.btn-pill.btn-green:hover,
.btn-pill.btn-green:focus {
    border-color: var(--color-green);
}
.card-portfolio {
    border: 0;
    border-radius: var(--radius-24);
}
.portfolio-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.radius-12 {
    border-radius: 12px;
}
.portfolio-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-body);
    margin-bottom: 0.5rem;
}
.icon-star-green {
    color: var(--color-green);
}
.card-cta .cta-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-body);
}
.card-cta {
    height: 100%;
}
.card-cta .card-body {
    height: 100%;
}
.icon-box-green {
    background: var(--color-green);
    border-radius: 12px;
    padding: 16px;
}
.icon-box-green img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.why {
    position: relative;
    background: var(--color-terrakon);
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}
.why::before,
.why::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(255, 153, 0, 0.45) 0%,
        rgba(255, 153, 0, 0.25) 40%,
        rgba(255, 153, 0, 0) 70%
    );
    filter: blur(60px);
    pointer-events: none;
}
.why::before {
    top: -120px;
    left: -120px;
}
.why::after {
    bottom: -120px;
    right: -120px;
}
.why .section-title {
    color: #fafcfe;
}
.why .section-subtitle {
    color: #fafcfe;
}
.why-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.why-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-text-subtile);
    color: #fafcfe;
}
.chevron-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--color-text-subtile);
    color: #fafcfe;
}
.accordion-why {
    --bs-accordion-border-radius: 0;
}
.accordion-why .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-text-subtile);
}
.accordion-why .accordion-button {
    background: transparent;
    color: #fafcfe;
    padding: 14px 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
}
.accordion-why .accordion-button::after {
    display: none;
}
.accordion-why .accordion-button:not(.collapsed) {
    background: transparent;
    color: #fafcfe;
    box-shadow: none;
}
.accordion-why .accordion-body {
    color: #fafcfe;
    padding: 14px 0;
}
.why-media {
    border-radius: var(--radius-24);
    overflow: hidden;
}
.why-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.advantage {
    padding-top: 100px;
    padding-bottom: 100px;
}
.card-advantage {
    border: 0;
    background-color: #fff;
    border-radius: var(--radius-24);
    padding: 20px;
}
.adv-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.adv-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-body);
    margin-bottom: 4px;
}
.adv-card-desc {
    font-size: 16px;
    color: var(--color-text-subtile);
}

.blog {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.blog-cover {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.blog-category {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-text-body);
}
.blog-meta {
    color: var(--color-text-subtile);
    font-size: 12px;
    font-weight: 700;
}
.blog-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.blog-card-title,
.blog-item-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
}
.blog-item-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-item .blog-thumb {
    width: 160px;
    height: 110px;
    object-fit: cover;
}
@media (max-width: 576px) {
    .blog-item .blog-thumb {
        width: 120px;
        height: 90px;
    }
}

.accordion-ask .accordion-button {
    border-radius: 12px;
}
.accordion-ask
    .accordion-item:first-of-type
    > .accordion-header
    .accordion-button {
    border-radius: 12px;
}
.accordion-ask
    .accordion-item:last-of-type
    > .accordion-header
    .accordion-button {
    border-radius: 12px;
}
.accordion-ask .accordion-item:first-of-type {
    border-radius: 12px;
}
.accordion-ask .accordion-item:last-of-type {
    border-radius: 12px !important;
}

.cta {
    padding-top: 50px;
    padding-bottom: 50px;
}
.cta-card {
    background: url("../images/cta/image.png") center/cover no-repeat;
    position: relative;
}
.cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 87, 51, 0.6);
    border-radius: inherit;
}
.cta-card .card-body {
    padding: 50px;
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer {
    background: var(--color-dark);
    padding-top: 100px;
    padding-bottom: 100px;
    color: #fff;
}
.footer-logo {
    width: 182px;
    height: auto;
}
.footer-desc {
    margin-top: 50px;
    font-size: 16px;
    color: var(--color-text-subtile);
}
.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.footer-links a {
    display: inline-block;
    font-size: 16px;
    color: var(--color-text-subtile);
    text-decoration: none;
    margin-bottom: 12px;
}
.footer-divider {
    height: 1px;
    background-color: #353535;
    margin: 50px 0;
}
.footer-bottom {
    font-size: 16px;
    color: #A8A8A8;
}
