/* Halaman About dan Halaman Collaboration */
/* ================= VISION MISSION ================= */
.vision-mission {
    padding: 100px 0 0 0;
}

.vm-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 100px;
}

/* reverse layout */
.vm-row.reverse {
    flex-direction: row-reverse;
}

/* CONTENT */
.vm-content {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vm-content.align-right {
    text-align: right;
}

/* ICON */
.vm-icon img {
    width: 50px;
}

/* TITLE */
.vm-title {
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 80px;
    line-height: 72px;
    margin: 0;
    color: #1e1e1e;
}

/* TEXT */
.vm-text {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: rgba(82, 82, 82, 1);
}

/* IMAGE */
.vm-image img {
    width: 100%;
    max-width: 736px;
    height: 460px;
    object-fit: cover;
    border-radius: 24px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .vision-mission {
        padding-top: 80px;
    }

    .vm-row {
        gap: 24px;
        margin-bottom: 80px;
    }

    .vm-content {
        max-width: 400px;
    }

    .vm-title {
        font-size: 64px;
        line-height: 60px;
    }

    .vm-text {
        font-size: 16px;
        line-height: 24px;
    }

    .vm-image img {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .vision-mission {
        padding-top: 64px;
    }

    .vm-row,
    .vm-row.reverse {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        margin-bottom: 64px;
    }

    .vm-content {
        max-width: 100%;
    }

    .vm-content.align-right {
        text-align: left;
    }

    .vm-title {
        font-size: 52px;
        line-height: 50px;
    }

    .vm-text {
        font-size: 16px;
        line-height: 26px;
    }

    .vm-image {
        width: 100%;
    }

    .vm-image img {
        max-width: 100%;
        height: 340px;
        border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .vision-mission {
        padding-top: 48px;
    }

    .vm-row {
        gap: 24px;
        margin-bottom: 48px;
    }

    .vm-content {
        gap: 18px;
    }

    .vm-icon img {
        width: 40px;
    }

    .vm-title {
        font-size: 40px;
        line-height: 40px;
    }

    .vm-text {
        font-size: 15px;
        line-height: 24px;
    }

    .vm-image img {
        height: 240px;
        border-radius: 16px;
    }
}

/* ================= EXPERTISE ================= */
.expertise {
    padding: 0 0 100px 0;
}

/* HEADER */
.expertise-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 60px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expertise-title {
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 80px;
    line-height: 72px;
    margin: 0;
    color: #1e1e1e;
}

.expertise-desc {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: rgba(82, 82, 82, 1);
}

/* LIST */
.expertise-list {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* CARD */
.expertise-card {
    position: relative;
    width: 260px;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
}

/* IMAGE */
.expertise-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* OVERLAY */
.expertise-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.6) 80%,
        rgba(0, 0, 0, 1) 100%
    );
}

/* TEXT */
.expertise-card h3 {
    position: absolute;
    bottom: 24px;
    left: 24px;

    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 36px;
    color: white;
    margin: 0;
    z-index: 3;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .expertise {
        padding-bottom: 80px;
    }

    .expertise-header {
        margin-bottom: 48px;
        max-width: 480px;
    }

    .expertise-title {
        font-size: 64px;
        line-height: 60px;
    }

    .expertise-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .expertise-list {
        gap: 20px;
    }

    .expertise-card {
        width: 220px;
        height: 360px;
    }

    .expertise-card h3 {
        font-size: 30px;
        line-height: 30px;
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 768px) {
    .expertise {
        padding-bottom: 64px;
    }

    .expertise-header {
        margin-bottom: 40px;
        gap: 16px;
        padding: 0 16px;
    }

    .expertise-title {
        font-size: 52px;
        line-height: 50px;
    }

    .expertise-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .expertise-list {
        gap: 20px;
    }

    .expertise-card {
        width: calc(50% - 10px);
        max-width: 320px;
        height: 320px;
        border-radius: 20px;
    }

    .expertise-card h3 {
        font-size: 28px;
        line-height: 28px;
        bottom: 18px;
        left: 18px;
    }
}

@media (max-width: 576px) {
    .expertise {
        padding-bottom: 48px;
    }

    .expertise-header {
        margin-bottom: 32px;
        padding: 0 12px;
    }

    .expertise-title {
        font-size: 40px;
        line-height: 40px;
    }

    .expertise-desc {
        font-size: 15px;
        line-height: 24px;
    }

    .expertise-list {
        gap: 16px;
    }

    .expertise-card {
        width: 100%;
        max-width: 100%;
        height: 280px;
        border-radius: 16px;
    }

    .expertise-card h3 {
        font-size: 24px;
        line-height: 24px;
        bottom: 16px;
        left: 16px;
    }
}

/* ================= VALUES ================= */
.values {
    padding: 100px 0;
    margin: 0 auto;
    position: relative;
    color: white;
    overflow: hidden;
    background: transparent; /* hapus solid color */
}

/* optional background image */
.values::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/value/bg-value.png") center/cover no-repeat;
    opacity: 0.6;
    filter: blur(1.5px);
    transform: scale(1);
    z-index: 0;
}

.values::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(35, 76, 155, 0.8);
    z-index: 1;
}

/* biar konten di atas overlay */
.values .container {
    position: relative;
    z-index: 2;
}

/* HEADER */
.values-header {
    text-align: center;
    margin-bottom: 120px;

    display: flex;
    flex-direction: column;
    gap: 16px;
}

.values-title {
    font-family: "Anton SC", sans-serif;
    font-size: 80px;
    line-height: 72px;
}

/* LIST */
.values-list {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* ITEM */
.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    width: 200px;
}

/* ICON */
.value-icon {
    width: 120px;
    height: 120px;

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

.value-icon img {
    width: 100%;
}

/* TEXT */
.value-item h3 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
    margin: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .values {
        padding: 80px 0;
    }

    .values-header {
        margin-bottom: 80px;
    }

    .values-title {
        font-size: 64px;
        line-height: 60px;
    }

    .values-list {
        gap: 40px;
    }

    .value-item {
        width: 180px;
        gap: 32px;
    }

    .value-icon {
        width: 100px;
        height: 100px;
    }

    .value-item h3 {
        font-size: 30px;
        line-height: 32px;
    }
}

@media (max-width: 768px) {
    .values {
        padding: 64px 0;
    }

    .values-header {
        margin-bottom: 56px;
        padding: 0 16px;
    }

    .values-title {
        font-size: 52px;
        line-height: 50px;
    }

    .values-list {
        gap: 32px;
    }

    .value-item {
        width: calc(50% - 16px);
        max-width: 220px;
        gap: 24px;
    }

    .value-icon {
        width: 90px;
        height: 90px;
    }

    .value-item h3 {
        font-size: 24px;
        line-height: 28px;
    }
}

@media (max-width: 576px) {
    .values {
        padding: 48px 0;
    }

    .values-header {
        margin-bottom: 40px;
        padding: 0 12px;
    }

    .values-title {
        font-size: 40px;
        line-height: 40px;
    }

    .values-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
        justify-items: center;
    }

    .value-item {
        width: 100%;
        max-width: 140px;
        gap: 16px;
    }

    .value-icon {
        width: 64px;
        height: 64px;
    }

    .value-item h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .values::before {
        filter: blur(1px);
    }
}

/* ================= CREATIVE PROCESS ================= */
.creative-process {
    padding: 100px 0;
}

/* WRAPPER */
.process-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* TITLE */
.process-title {
    font-family: "Anton SC", sans-serif;
    font-size: 80px;
    line-height: 72px;
    color: #1e1e1e;
    max-width: 450px;
}

/* GRID */
.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* CARD */
.process-card {
    position: relative;
    flex: 1 1 calc(50% - 8px);
    height: 224px;

    border-radius: 24px;
    overflow: hidden;

    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 32px;
}

/* OVERLAY biar text kebaca */
.process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30, 30, 30, 0.82);
    z-index: 1;
}

/* TEXT */
.process-card h3,
.process-card p {
    position: relative;
    z-index: 2;
    color: white;
    margin: 0;
}

.process-card h3 {
    font-family: "Anton SC", sans-serif;
    font-size: 48px;
    line-height: 40px;
}

.process-card p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    line-height: 22px;
    max-width: 500px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .creative-process {
        padding: 80px 0;
    }

    .process-wrapper {
        gap: 48px;
    }

    .process-title {
        font-size: 64px;
        line-height: 60px;
        max-width: 380px;
    }

    .process-grid {
        gap: 14px;
    }

    .process-card {
        padding: 28px;
        height: 210px;
        border-radius: 20px;
    }

    .process-card h3 {
        font-size: 40px;
        line-height: 36px;
    }

    .process-card p {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .creative-process {
        padding: 64px 0;
    }

    .process-wrapper {
        gap: 40px;
    }

    .process-title {
        font-size: 52px;
        line-height: 50px;
        max-width: 100%;
    }

    .process-grid {
        gap: 16px;
    }

    .process-card {
        flex: 1 1 100%;
        height: 220px;
        padding: 24px;
        border-radius: 20px;
    }

    .process-card h3 {
        font-size: 36px;
        line-height: 34px;
    }

    .process-card p {
        font-size: 15px;
        line-height: 24px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .creative-process {
        padding: 48px 0;
    }

    .process-wrapper {
        gap: 32px;
    }

    .process-title {
        font-size: 40px;
        line-height: 40px;
    }

    .process-grid {
        gap: 14px;
    }

    .process-card {
        height: auto;
        min-height: 200px;
        padding: 20px;
        border-radius: 16px;
    }

    .process-card h3 {
        font-size: 30px;
        line-height: 30px;
    }

    .process-card p {
        font-size: 14px;
        line-height: 22px;
    }
}

/* ================= BANNER ================= */
.banner {
    padding: 0 0 100px 0;
}

/* BOX */
.banner-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 120px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30, 30, 30, 0.72); /* 72% sesuai Figma */
    z-index: 1;
}

.banner-box > * {
    position: relative;
    z-index: 2;
}

/* TITLE */
.banner-title {
    font-family: "Anton SC", sans-serif;
    font-size: 80px;
    line-height: 72px;
    color: white;
    max-width: 750px;
}

/* DESC */
.banner-desc {
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 840px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .banner {
        padding-bottom: 80px;
    }

    .banner-box {
        padding: 100px 32px;
        gap: 40px;
        border-radius: 20px;
    }

    .banner-title {
        font-size: 64px;
        line-height: 60px;
        max-width: 640px;
    }

    .banner-desc {
        font-size: 16px;
        line-height: 24px;
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .banner {
        padding-bottom: 64px;
    }

    .banner-box {
        padding: 80px 24px;
        gap: 32px;
        border-radius: 20px;
    }

    .banner-title {
        font-size: 52px;
        line-height: 50px;
        max-width: 100%;
    }

    .banner-desc {
        font-size: 16px;
        line-height: 26px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .banner {
        padding-bottom: 48px;
    }

    .banner-box {
        padding: 64px 20px;
        gap: 24px;
        border-radius: 16px;
    }

    .banner-title {
        font-size: 40px;
        line-height: 40px;
    }

    .banner-desc {
        font-size: 15px;
        line-height: 24px;
    }
}

/* ================= COLLABORATE ================= */
.contact-section {
    padding: 120px 0 100px 0;
    position: relative;
    overflow: visible;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
    padding: 0 16px;
    align-items: stretch;
}

/* LEFT */
.contact-info {
    width: 40%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 650px;
}

.contact-info .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.info-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 30px;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-header h4 {
    font-family: "Anton SC", sans-serif;
    font-weight: 200;
    font-size: 34px;
    margin-bottom: 10px;
}

.info-header p {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    opacity: 0.9;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item-wrap {
    width: 40px;
    height: 40px; /* penting biar ada area vertikal */
    background-color: #ffffff33;
    border-radius: 8px;

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

    flex-shrink: 0;
}

.info-item-wrap img {
    width: 20px;
    height: 20px;
}

.info-item a,
.info-item p {
    font-family: "Nunito Sans", sans-serif;
    color: white;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    line-height: 20px;
    word-break: break-word;
}

/* RIGHT */
.contact-form {
    width: 60%;
}

/* WRAPPER */
.topic-dropdown {
    position: relative; /* penting buat absolute dropdown */
    width: 230px;
    border: 1px solid #9f9f9f;
    border-radius: 16px;
    overflow: visible; /* biar dropdown keluar */
    margin-bottom: 20px;
}

/* SUMMARY */
.topic-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 16px;
    cursor: pointer;
    list-style: none;
    gap: 15px;
}

#topicLabel {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #1e1e1e;
    letter-spacing: 0.3px;
}

/* remove default arrow */
.topic-selected::-webkit-details-marker {
    display: none;
}

/* LEFT SIDE */
.topic-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topic-left img {
    width: 18px;
}

/* RIGHT ARROW */
.topic-arrow img {
    width: 14px;
    transition: 0.3s;
}

/* rotate arrow when open */
.topic-dropdown[open] .topic-arrow img {
    transform: rotate(180deg);
}

/* DROPDOWN MENU */
.topic-options {
    position: absolute;
    top: 110%; /* muncul di bawah tanpa dorong layout */
    left: 0;

    width: 100%;
    background: #f5f8fa;
    border-radius: 16px;
    padding: 10px 0;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

/* ITEM */
.topic-item {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 16px;
    cursor: pointer;
}

.topic-item:hover {
    background: #e9eef5;
}

/* TITLE */
#dynamicTitle {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-form h3 {
    font-size: 20px;
    margin-bottom: 30px;
}

/* FORM */
.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #5d5d5d;
}

.form-group input,
.form-group textarea {
    border: none;
    border-bottom: 1px solid #d9d9d9;
    padding: 10px 0;
    font-size: 16px;
    outline: none;
    background: transparent;
    font-family: "Nunito Sans", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom: 1px solid #224b9a;
}

/* BUTTON */
.btn-submit {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 16spx;
    margin-top: 10px;
    padding: 12px 20px;
    background: #224b9a;
    color: white;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.btn-submit:hover {
    background: #1b3f85;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .contact-container {
        gap: 24px;
    }

    /* LEFT */
    .contact-info {
        min-height: 580px;
        border-radius: 20px;
    }

    .info-content {
        padding: 24px;
        height: 100%;
    }

    .info-header h4 {
        font-size: 30px;
        line-height: 34px;
    }

    .info-header p {
        font-size: 15px;
        line-height: 24px;
    }

    .info-list {
        gap: 18px;
    }

    /* RIGHT */
    .contact-form {
        width: 60%;
    }

    #dynamicTitle {
        font-size: 17px;
        margin-bottom: 24px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 15px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 100px 0;
    }
    .contact-container {
        flex-direction: column;
        gap: 32px;
    }

    /* LEFT */
    .contact-info {
        width: 100%;
        height: 500px;
        border-radius: 20px;
    }

    .info-content {
        padding: 24px;
        height: 100%;
    }

    .info-header h4 {
        font-size: 28px;
        line-height: 32px;
    }

    .info-header p {
        font-size: 15px;
        line-height: 24px;
    }

    /* RIGHT */
    .contact-form {
        width: 100%;
    }

    /* DROPDOWN */
    .topic-dropdown {
        width: 100%;
        max-width: 280px;
    }

    #dynamicTitle {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        font-size: 15px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 15px;
    }

    .btn-submit {
        width: 100%;
        padding: 14px 20px;
    }
}

@media (max-width: 576px) {
    .contact-container {
        padding: 0 12px;
        gap: 24px;
    }

    /* LEFT */
    .contact-info {
        min-height: auto;
        border-radius: 16px;
    }

    .info-content {
        padding: 20px;
        gap: 32px;
    }

    .info-header h4 {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 8px;
    }

    .info-header p {
        font-size: 14px;
        line-height: 22px;
    }

    .info-list {
        gap: 16px;
    }

    .info-item {
        align-items: flex-start;
    }

    .info-item-wrap {
        width: 36px;
        height: 36px;
        border-radius: 6px;
    }

    .info-item-wrap img {
        width: 18px;
        height: 18px;
    }

    .info-item a,
    .info-item p {
        font-size: 13px;
        line-height: 20px;
    }

    /* RIGHT */
    .contact-form {
        width: 100%;
    }

    /* DROPDOWN */
    .topic-dropdown {
        width: 100%;
        max-width: 100%;
        border-radius: 14px;
    }

    .topic-selected {
        padding: 12px 14px;
    }

    .topic-left {
        gap: 14px;
    }

    #topicLabel {
        font-size: 14px;
    }

    .topic-options {
        border-radius: 14px;
    }

    .topic-item {
        padding: 10px 14px;
    }

    #dynamicTitle {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    /* FORM */
    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 8px 0;
    }

    .btn-submit {
        width: 100%;
        font-size: 14px;
        padding: 12px 18px;
        border-radius: 8px;
    }
}

/* ================= TOPIC DROPDOWN ================= */
.topic-wrapper {
    margin-bottom: 32px;
}

/* WRAPPER */
.topic-dropdown {
    position: relative;
    width: 280px;

    border: 1px solid #d9d9d9;
    border-radius: 18px;

    background: #fff;

    overflow: visible;
    transition: all 0.25s ease;
}

/* ACTIVE */
.topic-dropdown[open] {
    border-color: #224b9a;
    box-shadow: 0 10px 30px rgba(34, 75, 154, 0.08);
}

/* SUMMARY */
.topic-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px 18px;
    cursor: pointer;
    list-style: none;

    gap: 16px;
}

/* remove default arrow */
.topic-selected::-webkit-details-marker {
    display: none;
}

/* LEFT */
.topic-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* ICON */
.topic-left img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* LABEL */
#topicLabel {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.2px;
    color: #1e1e1e;
}

/* RIGHT ARROW */
.topic-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topic-arrow img {
    width: 14px;
    transition: transform 0.3s ease;
}

/* rotate */
.topic-dropdown[open] .topic-arrow img {
    transform: rotate(180deg);
}

/* DROPDOWN MENU */
.topic-options {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;

    width: 100%;

    background: #fff;

    border: 1px solid #ececec;
    border-radius: 18px;

    padding: 10px;

    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);

    z-index: 100;

    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ITEM */
.topic-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 14px 14px;

    border-radius: 12px;

    cursor: pointer;
    transition: all 0.2s ease;
}

/* ITEM ICON */
.topic-item img {
    width: 18px;
    height: 18px;
}

/* ITEM TEXT */
.topic-item span {
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1e1e1e;
}

/* HOVER */
.topic-item:hover {
    background: rgba(34, 75, 154, 0.08);
}

/* ACTIVE ITEM */
.topic-item.active {
    background: rgba(34, 75, 154, 0.12);
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {
    .topic-dropdown {
        width: 100%;
        border-radius: 16px;
    }

    .topic-selected {
        padding: 14px 16px;
    }

    #topicLabel {
        font-size: 14px;
    }

    .topic-options {
        border-radius: 16px;
        padding: 8px;
    }

    .topic-item {
        padding: 12px;
    }
}
