
/* =========================================================
   MICE CENTER
   Pusat Data dan Kajian Pengembangan MICE Berkelanjutan
   Theme: Orange • Black • White • Red Accent
========================================================= */

:root {
    --orange: #f97316;
    --orange-dark: #c2410c;
    --orange-light: #fff7ed;

    --black: #080808;
    --black-2: #111111;
    --black-3: #1a1a1a;

    --red: #dc2626;
    --red-dark: #b91c1c;

    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;

    --shadow-sm: 0 5px 20px rgba(0, 0, 0, .06);
    --shadow-md: 0 15px 40px rgba(0, 0, 0, .10);
    --shadow-lg: 0 25px 70px rgba(0, 0, 0, .16);

    --radius: 18px;
    --radius-sm: 12px;

    --transition: all .3s ease;
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--black);
    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: var(--orange);
    color: var(--white);
}


/* =========================================================
   BUTTON
========================================================= */

.btn {
    border-radius: 10px;
    padding: 11px 22px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-orange {
    background: var(--orange);
    border: 1px solid var(--orange);
    color: var(--white);
}

.btn-orange:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, .25);
}

.btn-orange i {
    margin-left: 7px;
}

.btn-outline-light {
    border-width: 1px;
}


/* =========================================================
   NAVBAR
========================================================= */

.main-navbar {
    padding: 16px 0;
    background: rgba(8, 8, 8, .94);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    transition: var(--transition);
}

.navbar-brand {
    color: var(--white) !important;
}

.brand-mark {
    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--orange);
    color: var(--white);

    border-radius: 11px;

    margin-right: 11px;

    font-size: 19px;
}

.brand-text {
    font-size: 19px;
    line-height: 1.1;

    display: flex;
    flex-direction: column;
}

.brand-text strong {
    color: var(--orange);
}

.brand-text small {
    margin-top: 4px;

    font-size: 7px;
    letter-spacing: 2px;

    color: #aaa;
    font-weight: 600;
}

.brand-logo {
    width: 43px;
    height: 43px;
    object-fit: contain;
    margin-right: 10px;
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    color: rgba(255, 255, 255, .72) !important;

    font-size: 14px;
    font-weight: 600;

    padding: 9px 12px !important;

    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, .25);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(249, 115, 22, .2);
}


/* =========================================================
   HERO
========================================================= */

.hero-new {
    position: relative;

    min-height: 100vh;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(249, 115, 22, .14),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #050505 0%,
            #0d0d0d 55%,
            #17100c 100%
        );

    color: var(--white);

    overflow: hidden;
}

.hero-new::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    border: 1px solid rgba(249, 115, 22, .15);

    right: -150px;
    top: 18%;
}

.hero-new::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    border: 1px solid rgba(220, 38, 38, .14);

    right: 15%;
    bottom: -120px;
}

.hero-grid {
    position: absolute;
    inset: 0;

    opacity: .18;

    background-image:
        linear-gradient(
            rgba(255,255,255,.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.05) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image: linear-gradient(
        to right,
        black,
        transparent 85%
    );
}

.hero-label {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;
}

.hero-label span {
    display: inline-block;

    width: 35px;
    height: 2px;

    background: var(--orange);
}

.hero-title {
    max-width: 780px;

    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;

    margin-bottom: 28px;
}

.hero-title span {
    color: var(--orange);
}

.hero-description {
    max-width: 680px;

    color: rgba(255,255,255,.67);

    font-size: 17px;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-mini-info {
    display: flex;

    gap: 45px;

    margin-top: 55px;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.1);

    max-width: 600px;
}

.hero-mini-info div {
    display: flex;
    flex-direction: column;
}

.hero-mini-info strong {
    color: var(--white);

    font-size: 25px;
}

.hero-mini-info span {
    color: #888;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


/* =========================================================
   HERO DATA CARD
========================================================= */

.hero-data-card {
    position: relative;

    padding: 28px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.1),
            rgba(255,255,255,.025)
        );

    border: 1px solid rgba(255,255,255,.12);

    box-shadow:
        0 30px 80px rgba(0,0,0,.35),
        inset 0 1px rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    overflow: hidden;
}

.hero-data-card::before {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    background: var(--orange);

    filter: blur(100px);

    opacity: .15;

    right: -80px;
    top: -80px;
}

.data-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #aaa;

    font-size: 11px;

    letter-spacing: 1.5px;

    margin-bottom: 45px;
}

.data-card-header i {
    color: var(--orange);

    margin-right: 6px;
}

.data-card-header small {
    color: var(--orange);

    font-weight: 800;
}

.data-card-main small {
    color: #888;

    font-size: 10px;

    letter-spacing: 2px;
}

.data-card-main h2 {
    font-size: 65px;

    line-height: 1;

    margin: 8px 0 20px;

    font-weight: 800;
}

.data-line {
    width: 80px;
    height: 4px;

    background: var(--orange);

    border-radius: 10px;
}

.data-chart {
    height: 150px;

    display: flex;
    align-items: end;

    gap: 10px;

    margin: 35px 0;
}

.data-chart div {
    flex: 1;

    min-height: 20px;

    border-radius: 4px 4px 0 0;

    background:
        linear-gradient(
            to top,
            var(--orange-dark),
            var(--orange)
        );

    opacity: .85;

    transition: var(--transition);
}

.data-chart div:hover {
    opacity: 1;

    transform: scaleY(1.05);
}

.data-card-footer {
    display: flex;
    justify-content: space-between;

    border-top: 1px solid rgba(255,255,255,.1);

    padding-top: 18px;

    color: #888;

    font-size: 10px;

    letter-spacing: 1px;
}

.data-card-footer i {
    color: #22c55e;
    margin-right: 5px;
}

.data-card-footer strong {
    color: #ccc;
}


/* =========================================================
   SECTION
========================================================= */

.section-padding {
    padding: 110px 0;
}

.section-label {
    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1.5px;

    margin-bottom: 20px;
}

.section-title span {
    color: var(--orange);
}

.section-description {
    color: var(--gray-600);

    font-size: 15px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-new {
    background: var(--white);
}

.about-data-box {
    display: flex;

    gap: 25px;

    padding: 25px 0;

    border-bottom: 1px solid var(--gray-200);
}

.about-data-box:first-child {
    padding-top: 0;
}

.about-big-number {
    color: var(--orange);

    font-size: 35px;

    font-weight: 800;

    line-height: 1;
}

.about-data-box span {
    color: var(--gray-500);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}

.about-data-box h4 {
    font-size: 25px;

    font-weight: 800;

    margin: 3px 0 5px;
}

.about-data-box p {
    color: var(--gray-600);

    font-size: 14px;

    margin: 0;

    max-width: 430px;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--orange);

    font-size: 13px;

    font-weight: 800;

    transition: var(--transition);
}

.text-link:hover {
    color: var(--orange-dark);

    gap: 13px;
}


/* =========================================================
   DATA SECTION
========================================================= */

.data-section {
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(249,115,22,.12),
            transparent 30%
        ),
        var(--black);
}

.section-heading-row {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 40px;

    margin-bottom: 50px;
}

.section-heading-row > p {
    max-width: 350px;

    color: #777;

    font-size: 14px;

    margin: 0;
}

.stat-card {
    height: 100%;

    padding: 28px;

    background: var(--black-2);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: var(--radius);

    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-7px);

    border-color: rgba(249,115,22,.4);

    box-shadow:
        0 20px 50px rgba(0,0,0,.3);
}

.stat-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(249,115,22,.1);

    color: var(--orange);

    border-radius: 12px;

    margin-bottom: 30px;

    font-size: 19px;
}

.stat-card span {
    display: block;

    color: #777;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.stat-card strong {
    display: block;

    color: var(--white);

    font-size: 42px;

    line-height: 1.2;

    margin: 8px 0;
}

.stat-card small {
    color: #666;

    font-size: 12px;
}

.stat-red .stat-icon {
    color: var(--red);

    background: rgba(220,38,38,.1);
}


/* =========================================================
   ARTICLE / KAJIAN
========================================================= */

.article-modern {
    height: 100%;

    background: var(--white);

    border: 1px solid var(--gray-200);

    border-radius: var(--radius);

    overflow: hidden;

    transition: var(--transition);
}

.article-modern:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow-md);

    border-color: #ddd;
}

.article-image {
    height: 230px;

    position: relative;

    background: var(--black);
}

.article-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.article-modern:hover .article-image img {
    transform: scale(1.05);
}

.article-placeholder {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #111,
            #292929
        );

    color: var(--orange);

    font-size: 55px;
}

.article-tag {
    position: absolute;

    top: 16px;
    left: 16px;

    background: var(--orange);

    color: var(--white);

    padding: 6px 10px;

    border-radius: 6px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}

.article-body {
    padding: 25px;
}

.article-body > small {
    color: var(--orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}

.article-body h3 {
    font-size: 21px;

    line-height: 1.3;

    font-weight: 800;

    margin: 10px 0;
}

.article-body p {
    color: var(--gray-600);

    font-size: 13px;

    margin-bottom: 20px;
}


/* =========================================================
   EVENT
========================================================= */

.event-modern {
    display: flex;

    height: 100%;

    background: var(--white);

    border: 1px solid var(--gray-200);

    border-radius: var(--radius);

    padding: 22px;

    gap: 20px;

    transition: var(--transition);
}

.event-modern:hover {
    border-color: var(--orange);

    box-shadow: var(--shadow-sm);

    transform: translateY(-4px);
}

.event-date-modern {
    min-width: 62px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    background: var(--black);

    color: var(--white);

    border-radius: 11px;

    line-height: 1;
}

.event-date-modern strong {
    font-size: 25px;
}

.event-date-modern span {
    color: var(--orange);

    font-size: 9px;

    font-weight: 800;

    margin-top: 5px;
}

.event-category {
    color: var(--orange);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.event-info h3 {
    font-size: 18px;

    font-weight: 800;

    line-height: 1.3;

    margin: 7px 0;
}

.event-info p {
    color: var(--gray-500);

    font-size: 12px;

    margin: 0;
}

.event-info p i {
    color: var(--orange);

    margin-right: 4px;
}


/* =========================================================
   VENUE
========================================================= */

.venue-modern {
    height: 100%;

    background: var(--white);

    border: 1px solid var(--gray-200);

    border-radius: var(--radius);

    overflow: hidden;

    transition: var(--transition);
}

.venue-modern:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow-md);
}

.venue-image {
    height: 220px;

    overflow: hidden;

    background: var(--black);
}

.venue-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.venue-modern:hover .venue-image img {
    transform: scale(1.06);
}

.venue-placeholder-modern {
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #111,
            #262626
        );

    color: var(--orange);

    font-size: 55px;
}

.venue-body {
    padding: 25px;
}

.venue-body h3 {
    font-size: 21px;

    font-weight: 800;

    margin-bottom: 8px;
}

.venue-body p {
    color: var(--gray-500);

    font-size: 13px;

    margin-bottom: 18px;
}

.venue-body p i {
    color: var(--orange);

    margin-right: 5px;
}

.venue-capacity {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 7px 10px;

    background: var(--orange-light);

    color: var(--orange-dark);

    border-radius: 7px;

    font-size: 11px;
}

.venue-capacity i {
    color: var(--orange);
}

.venue-capacity strong {
    font-weight: 800;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 90px 0;

    background: var(--gray-100);
}

.cta-box {
    position: relative;

    overflow: hidden;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    padding: 60px;

    background:
        radial-gradient(
            circle at 90% 50%,
            rgba(249,115,22,.18),
            transparent 30%
        ),
        var(--black);

    border-radius: 25px;

    color: var(--white);
}

.cta-box::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border: 1px solid rgba(220,38,38,.25);

    border-radius: 50%;

    right: -60px;
    top: -60px;
}

.cta-box h2 {
    position: relative;
    z-index: 1;

    max-width: 700px;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 15px;
}

.cta-box p {
    position: relative;
    z-index: 1;

    max-width: 650px;

    color: #999;

    margin: 0;
}

.cta-box .btn {
    flex-shrink: 0;

    position: relative;
    z-index: 2;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-new {
    background: var(--white);
}

.contact-list {
    margin-top: 40px;
}

.contact-item-new {
    display: flex;

    align-items: center;

    gap: 17px;

    padding: 18px 0;

    border-bottom: 1px solid var(--gray-200);
}

.contact-item-new > i {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 18px;
}

.contact-item-new small {
    display: block;

    color: var(--gray-500);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}

.contact-item-new strong {
    display: block;

    font-size: 14px;

    margin-top: 2px;
}

.contact-form-box {
    padding: 35px;

    background: var(--gray-50);

    border: 1px solid var(--gray-200);

    border-radius: 20px;
}

.contact-form-box label {
    display: block;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 7px;
}

.contact-form-box .form-control {
    min-height: 48px;

    border: 1px solid var(--gray-200);

    border-radius: 9px;

    font-size: 13px;

    padding: 11px 14px;

    box-shadow: none;
}

.contact-form-box .form-control:focus {
    border-color: var(--orange);

    box-shadow:
        0 0 0 3px rgba(249,115,22,.1);
}

.contact-form-box textarea {
    resize: vertical;
}


/* =========================================================
   EMPTY DATA
========================================================= */

.empty-data {
    text-align: center;

    padding: 60px 20px;

    background: var(--gray-50);

    border: 1px dashed var(--gray-300);

    border-radius: var(--radius);
}

.empty-data i {
    display: block;

    color: var(--orange);

    font-size: 42px;

    margin-bottom: 15px;
}

.empty-data h4 {
    font-weight: 800;
}

.empty-data p {
    color: var(--gray-500);

    font-size: 14px;

    margin: 0;
}


/* =========================================================
   FOOTER
========================================================= */

.footer-new {
    padding: 70px 0 25px;

    background: #050505;

    color: var(--white);
}

.footer-brand strong {
    display: block;

    font-size: 28px;

    font-weight: 800;
}

.footer-brand strong span {
    color: var(--orange);
}

.footer-brand p {
    max-width: 430px;

    color: #777;

    font-size: 13px;

    margin-top: 12px;
}

.footer-new h6 {
    color: #888;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.footer-new ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-new li {
    margin-bottom: 8px;
}

.footer-new li a {
    color: #aaa;

    font-size: 13px;

    transition: var(--transition);
}

.footer-new li a:hover {
    color: var(--orange);
}

.footer-accent {
    display: inline-block;

    padding: 8px 12px;

    margin: 0 5px 7px 0;

    background: rgba(249,115,22,.08);

    color: var(--orange);

    border-radius: 6px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}

.footer-accent.red {
    background: rgba(220,38,38,.08);

    color: var(--red);
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-top: 55px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.08);

    color: #555;

    font-size: 11px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .main-navbar {
        padding: 12px 0;
    }

    .navbar-collapse {
        margin-top: 15px;

        padding: 15px;

        background: var(--black-2);

        border-radius: 12px;
    }

    .nav-link {
        padding: 10px 8px !important;
    }

    .hero-new .min-vh-100 {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-data-card {
        margin-top: 50px;
    }

    .section-padding {
        padding: 80px 0;
    }

    .section-heading-row {
        display: block;
    }

    .section-heading-row > p {
        margin-top: 15px;
    }

    .cta-box {
        display: block;

        padding: 45px 35px;
    }

    .cta-box .btn {
        margin-top: 25px;
    }

}

@media (max-width: 767px) {

    .brand-text {
        font-size: 17px;
    }

    .hero-title {
        font-size: 39px;

        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-mini-info {
        gap: 25px;
    }

    .hero-mini-info strong {
        font-size: 20px;
    }

    .hero-data-card {
        padding: 22px;
    }

    .data-card-main h2 {
        font-size: 50px;
    }

    .section-title {
        font-size: 35px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .cta-box {
        padding: 35px 25px;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom span {
        display: block;

        margin-bottom: 8px;
    }

}

@media (max-width: 480px) {

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-mini-info {
        justify-content: space-between;
    }

    .hero-mini-info strong {
        font-size: 18px;
    }

    .hero-mini-info span {
        font-size: 9px;
    }

    .contact-form-box {
        padding: 22px;
    }

}

/* ==========================================
   AGENDA KAJIAN - HOMEPAGE
========================================== */

.agenda-home-section {
    background: var(--gray-50);
}

.agenda-home-section .section-heading-row {
    align-items: flex-end;
    margin-bottom: 40px;
}

.agenda-home-section .section-title span {
    color: var(--orange);
}

.section-heading-action {
    flex-shrink: 0;
}

.section-heading-action .btn {
    border-radius: 10px;
    padding: 11px 20px;
    font-weight: 600;
}


/* CARD */

.agenda-home-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    overflow: hidden;
    transition: all .25s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,.04);
}

.agenda-home-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
}


/* IMAGE */

.agenda-home-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--black-3);
}

.agenda-home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.agenda-home-card:hover .agenda-home-image img {
    transform: scale(1.05);
}

.agenda-home-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            var(--black),
            var(--black-3)
        );
    color: var(--orange);
    font-size: 60px;
}

.agenda-home-type {
    position: absolute;
    left: 16px;
    top: 16px;
    background: var(--orange);
    color: var(--white);
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
}


/* BODY */

.agenda-home-body {
    padding: 24px;
}

.agenda-home-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--orange-dark);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.agenda-home-date i {
    font-size: 15px;
}

.agenda-home-body h3 {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 16px;
    min-height: 54px;
}

.agenda-home-body h3 a {
    color: var(--black);
    text-decoration: none;
    transition: color .2s ease;
}

.agenda-home-body h3 a:hover {
    color: var(--orange);
}


/* META */

.agenda-home-meta {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 8px;
}

.agenda-home-meta i {
    width: 18px;
    color: var(--orange);
}

.agenda-home-speaker {
    color: var(--gray-700);
    font-size: 14px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

.agenda-home-speaker i {
    color: var(--orange);
    margin-right: 5px;
}


/* DETAIL LINK */

.agenda-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
}

.agenda-home-link:hover {
    color: var(--orange);
    gap: 12px;
}


/* EMPTY */

.agenda-home-empty {
    background: var(--white);
    border: 1px dashed var(--gray-300);
    border-radius: 18px;
    padding: 60px 25px;
    text-align: center;
}

.agenda-home-empty-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--orange-light);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.agenda-home-empty h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.agenda-home-empty p {
    color: var(--gray-500);
    max-width: 600px;
    margin: auto;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .agenda-home-section .section-heading-row {
        align-items: flex-start;
        gap: 20px;
    }

    .section-heading-action {
        margin-top: 5px;
    }

}

@media (max-width: 767px) {

    .agenda-home-section .section-heading-row {
        display: block;
    }

    .section-heading-action {
        margin-top: 20px;
    }

    .agenda-home-image {
        height: 200px;
    }

    .agenda-home-body {
        padding: 20px;
    }

    .agenda-home-body h3 {
        min-height: auto;
        font-size: 19px;
    }

}

@media (max-width: 480px) {

    .agenda-home-image {
        height: 190px;
    }

    .agenda-home-empty {
        padding: 45px 20px;
    }

}

/* =====================================================
   BERITA / ARTIKEL
===================================================== */

.berita-card {
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.berita-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.10) !important;
}

.berita-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.berita-card:hover .berita-image {
    transform: scale(1.04);
}

.berita-placeholder {
    height: 220px;
    background: linear-gradient(
        135deg,
        #111111,
        #252525
    );

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f97316;
    font-size: 55px;
}

.berita-title {
    transition: color 0.2s ease;
}

.berita-title:hover {
    color: #f97316 !important;
}

.section-badge {
    display: inline-block;

    background: #fff7ed;
    color: #f97316;

    padding: 7px 15px;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
}

@media (max-width: 767px) {

    .berita-image,
    .berita-placeholder {
        height: 200px;
    }

}

/* =====================================================
   PARTNER / MITRA
===================================================== */

.partner-card {
    height: 180px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 20px;

    transition: all 0.3s ease;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.partner-card:hover {
    transform: translateY(-6px);
    border-color: #f97316;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);
}

.partner-logo-wrapper {
    height: 90px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-home {
    max-width: 150px;
    max-height: 75px;

    width: auto;
    height: auto;

    object-fit: contain;
}

.partner-logo-empty {
    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: #fff7ed;
    color: #f97316;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
}

.partner-name {
    margin-top: 12px;

    text-align: center;

    font-size: 14px;
    font-weight: 600;

    color: #333333;
}

.partner-card:hover .partner-name {
    color: #f97316;
}

/* =====================================================
   KONTAK
===================================================== */

.contact-info-card,
.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #eeeeee;
}

.contact-info-card {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.contact-form-card {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;

    border-radius: 12px;

    background: #fff7ed;
    color: #f97316;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 10px;
    border-color: #dddddd;
    padding: 11px 14px;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: #f97316;

    box-shadow:
        0 0 0 0.2rem rgba(249, 115, 22, 0.12);
}

.site-logo {
    max-height: 48px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
}

.site-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #111;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #222;
    color: #fff;

    text-decoration: none;

    transition: all .25s ease;
}

.footer-social a:hover {
    background: #f97316;
    color: #fff;
    transform: translateY(-3px);
}
