:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors */
:root {
    --background-color: #f9fbff;
    --default-color: #1f2937;
    --heading-color: #0f172a;
    --accent-color: #0d59c9;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
    --nav-color: #ffffff;
    --nav-hover-color: #ffcc00;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #1f2937;
    --nav-dropdown-hover-color: #1834be;
}

/* Color Presets */
.light-background {
    --background-color: #e0f0ff; /* Biru muda lembut untuk section light */
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #17273eae; /* Biru tua elegan */
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #1e3a8a; /* Lebih gelap sedikit dari background */
    --contrast-color: #ffffff;
}

/* Smooth scroll
   --------------------------------------------------------------
   Membuat efek scroll halus saat klik link anchor (#id)
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth; /* Aktifkan scroll halus */
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
   Gaya dasar untuk body, link, dan heading
--------------------------------------------------------------*/
body {
    color: var(--default-color); /* Warna teks utama */
    background-color: var(--background-color); /* Warna background global */
    font-family: var(--default-font); /* Gunakan font default */
}

a {
    color: #000; /* Warna link hitam */
    text-decoration: none; /* Hilangkan garis bawah */
    transition: 0.3s; /* Animasi transisi saat hover */
}

a:hover {
    color: #f6f6f6; /* Saat hover link jadi abu muda */
    text-decoration: none; /* Tetap tanpa garis bawah */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color); /* Warna heading sesuai variable */
    font-family: var(--heading-font); /* Font heading khusus */
}

/* Pulsating Play Button
   --------------------------------------------------------------
   Tombol play berbentuk lingkaran dengan animasi berdenyut (pulse)
--------------------------------------------------------------*/
.pulsating-play-btn {
    width: 94px; /* Lebar tombol */
    height: 94px; /* Tinggi tombol */
    background: radial-gradient(
        var(--accent-color) 50%,
        color-mix(in srgb, var(--accent-color), transparent 75%) 52%
    ); /* Gradasi biru accent */
    border-radius: 50%; /* Membentuk lingkaran */
    display: block; /* Tampilkan sebagai block */
    position: relative; /* Posisi relatif untuk elemen anak */
    overflow: hidden; /* Sembunyikan overflow */
}

/* Efek lingkaran luar yang berdenyut */
.pulsating-play-btn:before {
    content: ""; /* Elemen pseudo kosong */
    position: absolute;
    width: 120px; /* Lebih besar dari tombol */
    height: 120px;
    animation-delay: 0s; /* Tanpa delay */
    animation: pulsate-play-btn 2s; /* Jalankan animasi */
    animation-direction: forwards;
    animation-iteration-count: infinite; /* Berulang terus */
    animation-timing-function: steps; /* Gaya animasi */
    opacity: 1;
    border-radius: 50%; /* Bentuk lingkaran */
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%); /* Border transparan */
    top: -15%; /* Geser keluar sedikit */
    left: -15%;
    background: rgba(198, 16, 0, 0); /* Transparan */
}

/* Segitiga play di tengah tombol */
.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%); /* Pusatkan segitiga */
    width: 0;
    height: 0;
    border-top: 10px solid transparent; /* Bagian atas segitiga */
    border-bottom: 10px solid transparent; /* Bagian bawah segitiga */
    border-left: 15px solid #fff; /* Segitiga putih (ikon play) */
    z-index: 100; /* Letakkan di depan */
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19); /* Efek animasi saat hover */
}

/* Saat tombol di-hover */
.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none; /* Hilangkan border */
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff; /* Tetap segitiga putih */
    z-index: 200;
    animation: none; /* Hentikan animasi pulse */
    border-radius: 0;
}

/* Efek tambahan saat hover: segitiga membesar */
.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color); /* Segitiga jadi biru */
    transform: scale(20); /* Membesar */
}

/* Animasi pulsating (berdenyut) */
@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6); /* Kecil */
        opacity: 1; /* Terlihat */
    }

    100% {
        transform: scale(1, 1); /* Normal */
        opacity: 0; /* Hilang */
    }
}

/* PHP Email Form Messages
   --------------------------------------------------------------
   Pesan error, sukses, dan loading di form email
--------------------------------------------------------------*/
.php-email-form .error-message {
    display: none; /* Disembunyikan default */
    background: #df1529; /* Background merah untuk error */
    color: #ffffff; /* Teks putih */
    text-align: left; /* Rata kiri */
    padding: 15px; /* Padding dalam */
    margin-bottom: 24px; /* Spasi bawah */
    font-weight: 600; /* Teks tebal */
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff; /* Teks putih */
    background: #059652; /* Background hijau untuk sukses */
    text-align: center; /* Rata tengah */
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color); /* Background putih */
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

/* Loading spinner saat kirim form */
.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%; /* Bentuk lingkaran */
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color); /* Border biru */
    border-top-color: var(--surface-color); /* Bagian atas transparan */
    animation: php-email-form-loading 1s linear infinite; /* Animasi berputar */
}

/* Animasi loading */
@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg); /* Awal 0 derajat */
    }
    100% {
        transform: rotate(360deg); /* Berputar penuh */
    }
}

/*--------------------------------------------------------------
# Global Header
   Bagian ini mengatur tampilan header (bagian atas website)
--------------------------------------------------------------*/
/* Header utama */
.header {
    --background-color: rgba(0, 0, 0, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 10px 15px; /* kasih jarak kiri-kanan biar ga mepet banget */
    transition: all 0.5s;
    z-index: 997;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color));
    display: flex; /* flex header */
    align-items: center; /* sejajarkan logo dan navbar */
    justify-content: space-between; /* logo kiri, navbar kanan */
}

/* Logo */
.header .logo {
    display: flex;
    align-items: flex-end; /* biar h1 & h4 sejajar ke bawah */
    margin: 0; /* hapus margin kanan yang 700px */
}

/* Logo gambar */
.header .logo img {
    max-height: 50px;
    margin-right: 5px;
}

/* Bungkus teks logo */
.header .logo .text-logo {
    align-items: baseline; /* sejajar dasar teks */
    margin: 0;
}

/* Judul utama */
.header .logo h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    color: #fff;
}

/* Subjudul */
.header .logo h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 0 5px; /* jarak kecil dari h1 */
    color: #fff;
}

/* Tombol CTA (Call To Action) seperti "Daftar" atau "Kontak" */
.header .cta-btn,
.header .cta-btn:focus {
    color: var(--contrast-color); /* Warna teks kontras agar terbaca jelas */
    background: var(--accent-color); /* Warna utama (biru aksen) untuk tombol */
    font-size: 24px; /* Ukuran teks tombol */
    padding: 8px 26px; /* Spasi dalam tombol (atas-bawah, kiri-kanan) */
    margin: 0; /* Hilangkan margin */
    border-radius: 50px; /* Membuat tombol oval/rounded pill */
    transition: 0.3s; /* Efek transisi hover */
}

/* Efek hover untuk tombol CTA */
.header .cta-btn:hover,
.header .cta-btn:focus:hover {
    color: var(--contrast-color); /* Tetap warna teks kontras */
    background: color-mix(
        in srgb,
        var(--accent-color),
        transparent 15%
    ); /* Biru lebih terang saat hover */
}

/* Responsif untuk layar kecil (tablet/HP) */
@media (max-width: 1200px) {
    .header .logo {
        order: 1; /* Logo tetap tampil di urutan pertama */
    }

    .header .logo h1 {
        font-size: 20px; /* Perkecil teks logo agar sesuai layar kecil */
    }

    .header .cta-btn {
        order: 2; /* Tombol CTA tampil setelah logo */
        margin: 0 15px 0 0; /* Tambah jarak kanan */
        padding: 6px 20px; /* Perkecil padding agar tidak terlalu besar */
    }

    .header .navmenu {
        order: 3; /* Menu navigasi diurutkan terakhir */
    }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgb(13, 65, 144);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
        font-weight: 700;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu > ul > li {
        white-space: nowrap;
        padding: 8px 8px;
    }

    .navmenu > ul > li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: color-mix(in srgb, var(--nav-color), transparent 30%);
        font-size: 1px;
        padding: 0 0px;
        font-family: var(--nav-font);
        font-weight: 400;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu > ul > li > a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -27px;
        left: 0;
        background-color: var(--nav-hover-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover > a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 18px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    background: #001f3f; /* Biru tua elegan */
    color: #f6f6f6;
    font-size: 14px;
    padding: 50px 0 30px 0;
}

.footer h3,
.footer h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer p {
    font-size: 14px;
    line-height: 24px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin: 10px 0;
}

.footer ul li a {
    color: #f6f6f6;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #00aaff;
}

.footer .social-links a {
    font-size: 18px;
    margin: 0 8px;
    color: #fff;
    background: #00aaff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: 0.3s;
}

.footer .social-links a:hover {
    background: #0077cc;
}

.footer .map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--accent-color);
    border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 72px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 57px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
}

.section-title p {
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color) 90%, white 50%);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding-top: 80px; /* hanya jarak atas */
    padding-bottom: 100px; /* jarak bawah tetap */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 210px; /* atur seberapa jauh turun */
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 10;
}
.hero h4 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 20px 0;
    font-size: 20px;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
    list-style: none;
    padding: 0;
}

.about ul li {
    padding-bottom: 5px;
    display: flex;
    align-items: center;
}

.about ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.about .read-more {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px 28px;
    border-radius: 50px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.about .read-more:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
    transform: translate(5px, 0);
}
.custom-media-wrapper img,
.custom-media-wrapper iframe {
    border-radius: 16px;
    margin-bottom: 50px;
}

.custom-media-wrapper {
    width: 100%;
    height: 500px; /* ubah sesuai kebutuhan */
    overflow: hidden;
    position: relative;
}

.custom-media-wrapper img,
.custom-media-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-media-wrapper {
    width: 100%;
}

.custom-media-wrapper img.media-foto {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    padding: 60px 30px;
    transition: all ease-in-out 0.3s;
    border-radius: 18px;
    border-bottom: 5px solid var(--surface-color);
    height: 100%;
}

.services .service-item .icon {
    color: var(--contrast-color);
    background: var(--accent-color);
    margin: 0;
    width: 64px;
    height: 64px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: ease-in-out 0.3s;
}

.services .service-item h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: ease-in-out 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

@media (min-width: 1365px) {
    .services .service-item:hover {
        transform: translateY(-10px);
        border-color: var(--accent-color);
    }

    .services .service-item:hover h3 {
        color: var(--accent-color);
    }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 120px 0;
    position: relative;
    clip-path: inset(0);
}

.call-to-action img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.call-to-action:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.call-to-action .container {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    color: var(--default-color);
    font-size: 28px;
    font-weight: 700;
}

.call-to-action p {
    color: var(--default-color);
}

.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    background: var(--accent-color);
    color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
    # Clients Section - Compact Style
    --------------------------------------------------------------*/
.clients.section {
    background: transparent;
    padding: 40px 0 20px 0;
    position: relative;
}

.clients .clients-wrap {
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    position: relative;
    margin-bottom: 0; /* Hilangkan margin bawah */
}

.clients .client-logo {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    padding: 15px 10px; /* Padding diperkecil */
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 0; /* Hilangkan margin bawah */
}

.clients .client-logo:hover {
    background-color: transparent;
    transform: translateY(-3px) scale(1.05); /* Efek hover lebih kecil */
}

.client-logo img {
    width: 80px; /* Diperkecil dari 180px */
    height: 80px; /* Diperkecil dari 180px */
    object-fit: contain;
    transition: 0.3s ease;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.7;
}

.clients .client-logo img {
    padding: 0;
    max-width: 100%;
    transition: 0.3s ease;
}

.clients .client-logo:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Efek cahaya halus saat hover */
.clients .client-logo::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(
        circle,
        rgba(33, 150, 243, 0.15) 0%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: -1;
}

.clients .client-logo:hover::before {
    width: 80px; /* Diperkecil */
    height: 80px; /* Diperkecil */
}

/* Empty State Styling - diperkecil */
.clients .text-center {
    grid-column: 1 / -1;
    padding: 30px 20px 10px 20px;
    text-align: center;
    color: #78909c;
    font-style: italic;
    margin-bottom: 0;
    font-size: 0.9rem; /* Font lebih kecil */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px); /* Animasi lebih pendek */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.clients .client-logo {
    animation: fadeInUp 0.4s ease forwards; /* Animasi lebih cepat */
    opacity: 0;
}

/* Stagger animation delays */
.clients .client-logo:nth-child(1) {
    animation-delay: 0.05s;
}
.clients .client-logo:nth-child(2) {
    animation-delay: 0.1s;
}
.clients .client-logo:nth-child(3) {
    animation-delay: 0.15s;
}
.clients .client-logo:nth-child(4) {
    animation-delay: 0.2s;
}
.clients .client-logo:nth-child(5) {
    animation-delay: 0.25s;
}
.clients .client-logo:nth-child(6) {
    animation-delay: 0.3s;
}
.clients .client-logo:nth-child(7) {
    animation-delay: 0.35s;
}
.clients .client-logo:nth-child(8) {
    animation-delay: 0.4s;
}

@media (max-width: 1200px) {
    .client-logo img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 992px) {
    .client-logo img {
        width: 60px;
        height: 60px;
    }

    .clients .client-logo {
        padding: 12px 8px;
    }

    .clients .client-logo:hover::before {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .clients.section {
        padding: 30px 0 15px 0;
    }

    .client-logo img {
        width: 50px;
        height: 50px;
    }

    .clients .client-logo {
        padding: 10px 5px;
    }

    .clients .client-logo:hover::before {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 640px) {
    .client-logo img {
        width: 45px;
        height: 45px;
    }

    .clients .client-logo {
        padding: 8px 4px;
    }

    .clients .text-center {
        padding: 20px 15px 5px 15px;
        font-size: 0.8rem;
    }

    .clients .client-logo:hover::before {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .client-logo img {
        width: 40px;
        height: 40px;
    }

    .clients .client-logo {
        padding: 6px 3px;
    }

    .clients .client-logo:hover::before {
        width: 45px;
        height: 45px;
    }
}

.clients .container {
    padding-bottom: 0;
}

.clients .row {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    position: relative;
}

.stats img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.stats:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 20%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

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

.stats .subheading {
    text-align: center;
}

.stats .subheading h3 {
    font-weight: 700;
    font-size: 36px;
}

.stats .stats-item {
    padding: 30px;
    width: 100%;
}

.stats .stats-item span {
    font-size: 48px;
    display: block;
    color: var(--default-color);
    font-weight: 700;
}

.stats .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 700;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 0 10px 0;
    }
}

.portfolio .portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -100%;
    z-index: 3;
    transition: all ease-in-out 0.5s;
    background: color-mix(in srgb, var(--surface-color), transparent 10%);
    padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 14px);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: 0.3s;
    line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 14px;
    font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
    font-weight: 400;
    font-size: 34px;
}

.faq .content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
    margin-top: 15px;
}

.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 17px;
    line-height: 24px;
    margin: 0 30px 0 32px;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
    position: absolute;
    top: 22px;
    left: 20px;
    font-size: 22px;
    line-height: 0;
    transition: 0.3s;
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/* Artikel Card Styles - FIXED IMAGE */
.recent-posts article {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.recent-posts article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Gambar tidak terpotong */
.post-img-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    padding: 15px;
}

.recent-posts article:hover .post-img {
    transform: scale(1.05);
}

.article-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.title {
    margin-bottom: 1rem;
}

.title a {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.title a:hover {
    color: var(--accent-blue);
}

/* Deskripsi Artikel */
.article-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

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

.post-author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff0000;
    transition: border-color 0.3s ease;
}

.recent-posts article:hover .post-author-img {
    border-color: var(--accent-blue);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.post-author {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.post-date {
    color: #6c757d;
    font-size: 0.8rem;
    margin-bottom: 0;
}

.read-time {
    background: var(--accent-blue);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Kategori Badge */
.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 35, 81, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.btn-all-articles {
    display: inline-block; /* Ubah dari block ke inline-block */
    width: auto; /* Biarkan width mengikuti konten */
    margin: 3rem auto 0;
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 125, 252, 0.3);
    cursor: pointer; /* Tambahkan cursor pointer */
    position: relative; /* Pastikan di atas elemen lain */
    z-index: 10;
}

.btn-all-articles:hover {
    background: var(--light-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 125, 252, 0.4);
    text-decoration: none;
}

/* Container untuk tombol agar lebih aman */
.button-container {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem 0;
    position: relative;
    z-index: 10;
}

/* Fallback untuk gambar tidak ada */
.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #6c757d;
}

.img-placeholder i {
    font-size: 3rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .recent-posts {
        padding: 2.5rem 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .post-img-container {
        height: 200px;
    }

    .article-content {
        padding: 1.2rem;
    }

    .title a {
        font-size: 1.1rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .read-time {
        align-self: flex-end;
    }

    .btn-all-articles {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.6rem;
    }

    .post-img-container {
        height: 180px;
    }

    .post-img {
        padding: 10px;
    }

    .category-badge {
        top: 10px;
        left: 10px;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .btn-all-articles {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Animasi */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recent-posts .col-xl-4 {
    animation: fadeInUp 0.6s ease forwards;
}

.recent-posts .col-xl-4:nth-child(1) {
    animation-delay: 0.1s;
}
.recent-posts .col-xl-4:nth-child(2) {
    animation-delay: 0.2s;
}
.recent-posts .col-xl-4:nth-child(3) {
    animation-delay: 0.3s;
}
.recent-posts .col-xl-4:nth-child(4) {
    animation-delay: 0.4s;
}
.recent-posts .col-xl-4:nth-child(5) {
    animation-delay: 0.5s;
}
.recent-posts .col-xl-4:nth-child(6) {
    animation-delay: 0.6s;
}

/*--------------------------------------------------------------
# LAYANAN MASYARAKAT
--------------------------------------------------------------*/

.layanan-blue-theme {
    background: linear-gradient(135deg, #e8f4fd 0%, #d4e7fa 50%, #bbdefb 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.layanan-blue-theme::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 10% 10%,
            rgba(179, 229, 252, 0.3) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(187, 222, 251, 0.3) 0%,
            transparent 50%
        );
    pointer-events: none;
}

/* Container khusus */
.layanan-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.layanan-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.layanan-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1565c0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.layanan-subtitle {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.layanan-header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.layanan-decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #64b5f6, transparent);
}

.layanan-decoration-icon {
    font-size: 1.8rem;
    opacity: 0.7;
}

/* Grid Layout */
.layanan-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* Info Side */
.layanan-info-side {
    position: sticky;
    top: 20px;
}

.layanan-info-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 100%
    );
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15),
        0 5px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    height: fit-content;
}

.layanan-info-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e3f2fd;
}

.layanan-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 8px;
}

.layanan-info-desc {
    color: #78909c;
    font-size: 0.95rem;
}

/* Info Items */
.layanan-info-items {
    margin-bottom: 25px;
}

.layanan-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f8ff;
    transition: all 0.3s ease;
}

.layanan-info-item:hover {
    transform: translateX(5px);
    border-bottom-color: #bbdefb;
}

.layanan-info-item:last-child {
    border-bottom: none;
}

.layanan-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #42a5f5, #2196f3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.layanan-icon {
    font-size: 1.3rem;
    color: white;
}

.layanan-info-content {
    flex: 1;
}

.layanan-info-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1565c0;
    margin-bottom: 5px;
}

.layanan-info-text {
    color: #546e7a;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Info Footer */
.layanan-info-footer {
    padding-top: 20px;
    border-top: 2px solid #e3f2fd;
}

.layanan-working-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    background: rgba(33, 150, 243, 0.1);
    padding: 12px 20px;
    border-radius: 10px;
    color: #1976d2;
    font-weight: 500;
    font-size: 0.9rem;
}

.layanan-time-icon {
    font-size: 1.1rem;
}

/* Form Side */
.layanan-form-side {
    position: relative;
}

.layanan-form-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 100%
    );
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15),
        0 5px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Alerts */
.layanan-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    animation: slideIn 0.5s ease;
}

.layanan-alert.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #2e7d32;
}

.layanan-alert.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #c62828;
}

.layanan-alert-icon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.layanan-error-list {
    margin: 8px 0 0 0;
    padding-left: 20px;
}

.layanan-error-list li {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

/* Form Styles */
.layanan-form {
    width: 100%;
}

.layanan-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.layanan-form-group {
    position: relative;
    margin-bottom: 25px;
}

.layanan-form-label {
    display: block;
    font-weight: 600;
    color: #1565c0;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.layanan-form-input,
.layanan-form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e3f2fd;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    resize: vertical;
    position: relative;
    z-index: 2;
}

.layanan-form-input:focus,
.layanan-form-textarea:focus {
    outline: none;
    border-color: #42a5f5;
    background: white;
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.15);
    transform: translateY(-2px);
}

.layanan-input-decoration,
.layanan-textarea-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #42a5f5, #2196f3);
    border-radius: 0 0 12px 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.layanan-form-input:focus ~ .layanan-input-decoration,
.layanan-form-textarea:focus ~ .layanan-textarea-decoration {
    opacity: 1;
}

/* Submit Button */
.layanan-form-submit {
    text-align: center;
    margin-top: 30px;
}

.layanan-submit-btn {
    background: linear-gradient(135deg, #42a5f5, #1976d2);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
    position: relative;
    overflow: hidden;
}

.layanan-submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.layanan-submit-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(33, 150, 243, 0.6);
}

.layanan-submit-btn:hover::before {
    left: 100%;
}

.layanan-btn-text {
    position: relative;
    z-index: 2;
}

.layanan-btn-icon {
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .layanan-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .layanan-info-side {
        position: static;
    }

    .layanan-form-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .layanan-blue-theme {
        padding: 60px 0;
    }

    .layanan-main-title {
        font-size: 2rem;
    }

    .layanan-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .layanan-info-card,
    .layanan-form-card {
        padding: 25px;
    }

    .layanan-submit-btn {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .layanan-container {
        padding: 0 15px;
    }

    .layanan-main-title {
        font-size: 1.7rem;
    }

    .layanan-info-card,
    .layanan-form-card {
        padding: 20px;
        border-radius: 15px;
    }

    .layanan-info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .layanan-icon-wrapper {
        align-self: center;
    }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .swiper-wrapper {
    height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.15);
    font-size: 24px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
    background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
    .portfolio-details .swiper-button-prev,
    .portfolio-details .swiper-button-next {
        display: none;
    }
}

.portfolio-details .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.portfolio-details .portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    float: left;
    margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px 0;
    padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0 0 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid
        color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list a:hover {
    border-color: var(--accent-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
    background-color: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.blog-posts .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}

.blog-posts .post-category {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 10px;
}

.blog-posts .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.blog-posts .title a {
    color: var(--heading-color);
    transition: 0.3s;
}

.blog-posts .title a:hover {
    color: var(--accent-color);
}

.blog-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.blog-posts .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.blog-posts .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
    padding-top: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog-pagination li a {
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    padding-bottom: 30px;
}

.blog-details .article {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog-details .title {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.blog-details .content {
    margin-top: 20px;
}

.blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog-details .content blockquote {
    overflow: hidden;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog-details .content blockquote p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-details .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog-details .meta-top ul li + li {
    padding-left: 20px;
}

.blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: inline;
}

.blog-details .meta-bottom a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
    color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog-details .meta-bottom .cats li {
    display: inline-block;
}

.blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog-details .meta-bottom .tags li {
    display: inline-block;
}

.blog-details .meta-bottom .tags li + li::before {
    padding-right: 6px;
    color: var(--default-color);
    content: ",";
}

.blog-details .meta-bottom .share {
    font-size: 16px;
}

.blog-details .meta-bottom .share i {
    padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
    padding: 10px 0;
}

.blog-comments .comments-count {
    font-weight: bold;
}

.blog-comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog-comments .comment .comment-img {
    margin-right: 14px;
}

.blog-comments .comment .comment-img img {
    width: 60px;
}

.blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.blog-comments .comment h5 a {
    font-weight: bold;
    color: var(--default-color);
    transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
    color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
    font-size: 20px;
}

.blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
    padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
    padding-top: 10px;
}

.comment-form form {
    background-color: var(--surface-color);
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
    font-weight: bold;
    font-size: 22px;
}

.comment-form form p {
    font-size: 14px;
}

.comment-form form input {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    font-size: 14px;
    border-radius: 4px;
    padding: 10px 10px;
}

.comment-form form input:focus {
    color: var(--default-color);
    background-color: var(--surface-color);
    box-shadow: none;
    border-color: var(--accent-color);
}

.comment-form form input::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
    height: 120px;
}

.comment-form form textarea:focus {
    color: var(--default-color);
    box-shadow: none;
    border-color: var(--accent-color);
    background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
    margin-bottom: 25px;
}

.comment-form form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
    color: var(--contrast-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
    background-color: var(--surface-color);
    padding: 30px;
    margin: 60px 0 30px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.widget-item {
    margin-bottom: 40px;
}

.widget-item:last-child {
    margin-bottom: 0;
}

.blog-author-widget img {
    max-width: 120px;
    margin-right: 20px;
}

.blog-author-widget h4 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 0px;
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
    margin: 5px 0;
}

.blog-author-widget .social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-right: 5px;
    font-size: 18px;
}

.blog-author-widget .social-links a:hover {
    color: var(--accent-color);
}

.blog-author-widget p {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 10px 0 0 0;
}

.search-widget form {
    background: var(--background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
    padding: 3px 10px;
    position: relative;
    border-radius: 50px;
    transition: 0.3s;
}

.search-widget form input[type="text"] {
    border: 0;
    padding: 4px 10px;
    border-radius: 4px;
    width: calc(100% - 40px);
    background-color: var(--background-color);
    color: var(--default-color);
}

.search-widget form input[type="text"]:focus {
    outline: none;
}

.search-widget form button {
    background: none;
    color: var(--default-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    font-size: 16px;
    padding: 0 16px;
    transition: 0.3s;
    line-height: 0;
}

.search-widget form button i {
    line-height: 0;
}

.search-widget form button:hover {
    color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
    border-color: var(--accent-color);
}

.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget ul li {
    padding-bottom: 10px;
}

.categories-widget ul li:last-child {
    padding-bottom: 0;
}

.categories-widget ul a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.categories-widget ul a:hover {
    color: var(--accent-color);
}

.categories-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

.recent-posts-widget .post-item {
    display: flex;
    margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
    margin-bottom: 0;
}

.recent-posts-widget .post-item img {
    width: 80px;
    margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
    color: var(--default-color);
    transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
    color: var(--accent-color);
}

.recent-posts-widget .post-item time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tags-widget ul li {
    display: inline-block;
}

.tags-widget ul a {
    background-color: color-mix(in srgb, var(--default-color), transparent 94%);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    border-radius: 50px;
    font-size: 14px;
    padding: 5px 15px;
    margin: 0 6px 8px 0;
    display: inline-block;
    transition: 0.3s;
}

.tags-widget ul a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.tags-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    font-size: 14px;
}

.btn-lihat-semua {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    background-color: #0d6efd;
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-lihat-semua:hover {
    background-color: #0b5ed7;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.4);
    color: #fff;
}

/* Hover effect untuk kartu prestasi */
.card {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
}

.card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 18px 45px rgba(13, 110, 253, 0.15);
}

/* Batas kiri judul */
.section-title-bordered {
    border-left: 6px solid #0d6efd;
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Card image */
.card-img-top {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    object-fit: cover;
    height: 230px;
    width: 100%;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.03);
}

/* Card body */
.card-body {
    padding: 1.25rem;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0d6efd;
}

.card-text {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.5;
}

/* Card footer */
.card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 0.85rem;
    color: #6c757d;
    background-color: transparent;
    border-top: none;
    padding: 0 1.25rem 1rem;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .card-img-top {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.8rem;
    }

    .card-img-top {
        height: 180px;
    }

    .card-body {
        padding: 1rem;
    }

    .card-footer {
        padding: 0 1rem 1rem;
    }
}

@media (min-width: 768px) {
    .prestasi-image {
        max-width: 350px !important;
        max-height: none !important;
        border-radius: 0.25rem 0 0 0.25rem !important;
    }

    .prestasi-image img {
        border-radius: 0.25rem 0 0 0.25rem !important;
    }
}

@media (max-width: 767.98px) {
    .prestasi-image img {
        border-radius: 0.25rem 0.25rem 0 0 !important;
    }
}

/* ===== VARIABEL CSS ===== */
:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --accent-color: #004cff;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --text-light: #777;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

/* ===== STYLING UTAMA ===== */
#berita {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#berita::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.2" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,128C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.5;
}

/* ===== JUDUL SECTION ===== */
.section-title {
    margin-bottom: 6px;
    position: relative;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(
        to right,
        var(--primary-color),
        var(--secondary-color)
    );
    border-radius: 2px;
}

/* ===== ARTIKEL CARD ===== */
#berita .row.gy-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#berita .col-xl-4.col-md-6 {
    margin-bottom: 30px;
}

#berita article {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

#berita article:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

#berita article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        to right,
        var(--primary-color),
        var(--secondary-color)
    );
    z-index: 1;
}

/* ===== GAMBAR ARTIKEL ===== */
.post-img {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.post-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: var(--transition);
}

#berita article:hover .post-img::after {
    opacity: 1;
}

#berita article:hover .post-img {
    transform: scale(1.05);
}

/* ===== AUTHOR INFO ===== */
#berita article > .d-flex {
    padding: 0 20px 20px;
    margin-top: auto;
}

.post-author-img {
    border: 3px solid var(--light-color);
    transition: var(--transition);
}

#berita article:hover .post-author-img {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.post-meta {
    margin-left: 12px;
}

.post-author {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* ===== TOMBOL LIHAT SEMUA ===== */
#berita .btn-primary {
    display: inline-block; /* Ubah dari block ke inline-block */
    margin: 0px auto 0;
    border: none;
    padding: 8px 20px; /* Diperkecil dari 12px 30px */
    font-weight: 600;
    font-size: 0.9rem; /* Diperkecil dari 1rem */
    text-transform: uppercase;
    letter-spacing: 0.5px; /* Diperkecil dari 1px */
    color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: auto; /* Pastikan lebar mengikuti konten */
    max-width: 200px; /* Batas maksimal lebar */
}

#berita .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

#berita .btn-primary:hover::before {
    left: 0;
}

/* ===== ANIMASI ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#berita .col-xl-4.col-md-6 {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

#berita .col-xl-4.col-md-6:nth-child(1) {
    animation-delay: 0.1s;
}
#berita .col-xl-4.col-md-6:nth-child(2) {
    animation-delay: 0.2s;
}
#berita .col-xl-4.col-md-6:nth-child(3) {
    animation-delay: 0.3s;
}
#berita .col-xl-4.col-md-6:nth-child(4) {
    animation-delay: 0.4s;
}
#berita .col-xl-4.col-md-6:nth-child(5) {
    animation-delay: 0.5s;
}
#berita .col-xl-4.col-md-6:nth-child(6) {
    animation-delay: 0.6s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    #berita {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .title a {
        font-size: 1.1rem;
    }

    #berita .col-xl-4.col-md-6 {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    #berita .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

.section {
    padding: 2rem 0;
}

.section-title-bordered {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title-bordered p {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: #0d6efd;
    font-weight: 600;
}

.section-title-bordered h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* Kartu Prestasi dengan Gambar Lebar */
.prestasi-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.prestasi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.prestasi-content-wrapper {
    display: flex;
    min-height: 180px;
}

/* Gambar Lebar */
.prestasi-image {
    flex: 0 0 200px; /* Lebar gambar diperbesar */
    position: relative;
    overflow: hidden;
}

.prestasi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.prestasi-card:hover .prestasi-image img {
    transform: scale(1.05);
}

/* Konten dengan spacing yang lebih baik */
.prestasi-content {
    flex: 1;
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    margin-bottom: 0.6rem;
}

.card-title a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    line-height: 1.3;
}

.card-title a:hover {
    color: #0d6efd;
}

.card-text {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prestasi-siswa {
    font-size: 0.85rem;
    color: #495057;
    margin-bottom: 1rem;
    font-weight: 500;
}

.prestasi-content-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.btn-detail {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    font-weight: 500;
}

.prestasi-date {
    font-size: 0.8rem;
    color: #868e96;
    font-style: italic;
}

/* Badge */
.prestasi-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

/* Tombol Lihat Semua */
.btn-lihat-semua {
    padding: 0.6rem 1.8rem;
    font-size: 0.9rem;
    border-radius: 25px;
    margin-top: 1.5rem;
    font-weight: 500;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-title p {
    color: #0d6efd;
    font-size: 1.1rem;
    font-weight: 600;
}

.jurusan-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: none;
}

.jurusan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.jurusan-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.jurusan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.jurusan-card:hover .jurusan-image img {
    transform: scale(1.1);
}

.jurusan-logo {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.jurusan-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.jurusan-content {
    padding: 1.5rem;
}

.jurusan-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.jurusan-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jurusan-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.jurusan-duration {
    color: #868e96;
    font-size: 0.5rem;
}

.btn-jurusan {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border: none;
    border-radius: 6px;
    border-radius: 25px; /* Diperkecil dari 50px */
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-jurusan:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    color: white;
}

.keunggulan-baru-section {
    background: linear-gradient(to right, #eaf0f6, #f9fbfd);
}

.keunggulan-header p {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.keunggulan-header h3 {
    font-size: 1.8rem;
    line-height: 1.3;
}

.keunggulan-item {
    transition: all 0.3s ease;
}

.keunggulan-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.keunggulan-item i {
    min-width: 32px;
    text-align: center;
}

.keunggulan-image img {
    object-fit: cover;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .jurusan-image {
        height: 180px;
    }

    .features-item {
        padding: 1rem;
    }
}

/* Font Variables - Improved for readability */
:root {
    --default-font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto,
        "Helvetica Neue", Arial, sans-serif;
    --heading-font: "Poppins", "Raleway", sans-serif;
    --nav-font: "Poppins", "Inter", sans-serif;
}

/* Enhanced Typography Scale */
:root {
    --text-xs: 0.75rem; /* 12px */
    --text-sm: 0.875rem; /* 14px */
    --text-base: 1rem; /* 16px */
    --text-lg: 1.125rem; /* 18px */
    --text-xl: 1.25rem; /* 20px */
    --text-2xl: 1.5rem; /* 24px */
    --text-3xl: 1.875rem; /* 30px */
    --text-4xl: 2.25rem; /* 36px */
    --text-5xl: 3rem; /* 48px */
}

/* Improved Base Typography */
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    font-size: var(--text-base);
    line-height: 1.6;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Headings with better hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 {
    font-size: var(--text-4xl);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--text-3xl);
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

h5 {
    font-size: var(--text-lg);
}

h6 {
    font-size: var(--text-base);
    font-weight: 500;
}

/* Improved Paragraphs and Text Elements */
p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

.lead {
    font-size: var(--text-lg);
    font-weight: 300;
    line-height: 1.6;
}

/* Enhanced Links */
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 20%);
    text-decoration: underline;
}

/* Improved Navigation Fonts */
.navmenu a,
.navmenu a:focus {
    font-family: var(--nav-font);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Enhanced Section Titles */
.section-title h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}

.section-title p {
    font-size: var(--text-lg);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Improved Hero Section Typography */
.hero h2 {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.hero h4 {
    font-size: var(--text-3xl);
    font-weight: 600;
    line-height: 1.2;
}

.hero p {
    font-size: var(--text-xl);
    line-height: 1.6;
    font-weight: 300;
}

/* Enhanced Card Text Elements */
.card-title {
    font-size: var(--text-xl);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.card-text {
    font-size: var(--text-base);
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* Improved Button Typography */
.btn,
.cta-btn,
.btn-lihat-semua {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: var(--text-base);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

/* Better Form Typography */
.form-control,
.form-select {
    font-family: var(--default-font);
    font-size: var(--text-base);
    line-height: 1.5;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Enhanced Footer Typography */
.footer {
    font-size: var(--text-sm);
    line-height: 1.6;
}

.footer h3,
.footer h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Improved Blog/Article Typography */
.article-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    line-height: 1.3;
}

.article-meta {
    font-size: var(--text-sm);
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/* Better Table Typography */
table {
    font-size: var(--text-sm);
    line-height: 1.5;
}

th {
    font-weight: 600;
}

/* Enhanced Mobile Typography */
@media (max-width: 768px) {
    :root {
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
        --text-2xl: 1.5rem;
        --text-xl: 1.25rem;
        --text-lg: 1.125rem;
    }

    body {
        font-size: var(--text-base);
        line-height: 1.6;
    }

    .hero h2 {
        font-size: var(--text-4xl);
        line-height: 1.2;
    }

    .hero h4 {
        font-size: var(--text-2xl);
    }

    .hero p {
        font-size: var(--text-lg);
    }
}

/* Additional readability improvements */
.content-area {
    font-size: var(--text-base);
    line-height: 1.7;
}

.content-area h2 {
    font-size: var(--text-2xl);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-area h3 {
    font-size: var(--text-xl);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-area ul,
.content-area ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-area li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

code,
pre {
    font-family: "Monaco", "Consolas", "Courier New", monospace;
    font-size: var(--text-sm);
}

blockquote {
    font-size: var(--text-lg);
    font-style: italic;
    line-height: 1.6;
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.recent-posts {
}

.recent-posts a {
    text-decoration: none !important;
}

.recent-posts .title a {
    text-decoration: none !important;
    border-bottom: none !important;
}

.recent-posts .title a:hover {
    text-decoration: none !important;
    border-bottom: none !important;
}

.recent-posts .section-title h2:after {
    content: none;
}

.recent-posts article {
    border-bottom: none;
    box-shadow: none;
}

/* alumni */
.alumni-blue-theme {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.alumni-blue-theme::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 10% 20%,
            rgba(179, 229, 252, 0.4) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(187, 222, 251, 0.4) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(144, 202, 249, 0.2) 0%,
            transparent 50%
        );
    pointer-events: none;
}

/* Container khusus */
.alumni-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
}

/* Section Header - Premium */
.alumni-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.alumni-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1565c0;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(21, 101, 192, 0.1);
    position: relative;
}

.alumni-header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #64b5f6, transparent);
}

.decoration-icon {
    font-size: 1.5rem;
    opacity: 0.7;
}

/* Main Slider Premium */
.alumni-main-slider {
    width: 100%;
    padding: 0;
    position: relative;
}

/* Alumni Card Premium */
.alumni-custom-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 100%
    );
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15),
        0 5px 20px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 480px;
    margin: 0 auto;
}

.card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 30%,
            rgba(100, 181, 246, 0.03) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(30, 136, 229, 0.03) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.alumni-custom-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(33, 150, 243, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Quote Section Premium dengan pembuka dan penutup */

/* Profile Section Premium dengan foto yang TIDAK TERPOTONG */
.alumni-profile-compact {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}

.alumni-photo-container {
    position: relative;
    flex-shrink: 0;
}

/* Foto Persegi dengan background dan gambar utuh */
.alumni-photo-square {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #e3f2fd;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.25), inset 0 0 0 2px white;
    position: relative;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #f8fdff, #e3f2fd);
}

.photo-background {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fdff, #e3f2fd);
    padding: 8px;
}

.alumni-profile-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s ease;
    border-radius: 8px;
}

.alumni-custom-card:hover .alumni-photo-square {
    transform: scale(1.1);
    border-color: #64b5f6;
    box-shadow: 0 12px 35px rgba(33, 150, 243, 0.35), inset 0 0 0 2px white;
}

.alumni-custom-card:hover .alumni-profile-image {
    transform: scale(1.05);
}

.photo-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 15px;
    background: linear-gradient(45deg, #42a5f5, #29b6f6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.alumni-custom-card:hover .photo-glow {
    opacity: 0.3;
}

/* Corner decorations untuk foto persegi */
.photo-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #42a5f5;
    opacity: 0;
    transition: all 0.4s ease;
}

.photo-corner.top-left {
    top: -2px;
    left: -2px;
    border-radius: 0 0 8px 0;
}

.photo-corner.top-right {
    top: -2px;
    right: -2px;
    border-radius: 0 0 0 8px;
}

.photo-corner.bottom-left {
    bottom: -2px;
    left: -2px;
    border-radius: 0 8px 0 0;
}

.photo-corner.bottom-right {
    bottom: -2px;
    right: -2px;
    border-radius: 8px 0 0 0;
}

.alumni-custom-card:hover .photo-corner {
    opacity: 0.6;
}

.photo-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.decoration-square {
    position: absolute;
    border: 2px solid rgba(100, 181, 246, 0.3);
    border-radius: 20px;
    animation: squarePulse 3s infinite;
}

.sq-1 {
    width: 110px;
    height: 110px;
    animation-delay: 0s;
}

.sq-2 {
    width: 120px;
    height: 120px;
    animation-delay: 1s;
}

@keyframes squarePulse {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05) rotate(5deg);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.4;
    }
}

/* Info Section Premium */
.alumni-info-compact {
    flex: 1;
    text-align: left;
}

.name-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.alumni-custom-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1565c0;
    margin: 0;
    line-height: 1.2;
}

.verified-badge {
    width: 18px;
    height: 18px;
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    box-shadow: 0 2px 5px rgba(76, 175, 80, 0.3);
}

.alumni-program,
.alumni-occupation {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 6px 0;
    font-size: 0.85rem;
    color: #546e7a;
}

.alumni-program {
    font-weight: 600;
    color: #1976d2;
}

.alumni-occupation {
    color: #78909c;
    font-style: italic;
}

/* Card Footer */
.card-footer {
    position: relative;
    padding-top: 15px;
}

.footer-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #90caf9, transparent);
    margin-bottom: 12px;
}

.school-badge {
    font-size: 0.75rem;
    color: #78909c;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Custom Navigation Premium */
.alumni-swiper-prev,
.alumni-swiper-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    margin-top: -25px;
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.alumni-swiper-prev {
    left: 15px;
}

.alumni-swiper-next {
    right: 15px;
}

.alumni-nav-arrow {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1976d2;
    transition: all 0.3s ease;
}

.alumni-swiper-prev:hover,
.alumni-swiper-next:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.alumni-swiper-prev:hover .alumni-nav-arrow,
.alumni-swiper-next:hover .alumni-nav-arrow {
    color: #1565c0;
}

/* Custom Pagination Premium */
.alumni-swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(33, 150, 243, 0.4);
    opacity: 0.7;
    transition: all 0.3s ease;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    transition: left 0.6s ease;
}

.swiper-pagination-bullet-active {
    background: #1976d2;
    opacity: 1;
    transform: scale(1.3);
}

.swiper-pagination-bullet-active::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .alumni-blue-theme {
        padding: 40px 0;
    }

    .alumni-main-title {
        font-size: 1.8rem;
    }

    .alumni-custom-card {
        padding: 25px;
        max-width: 400px;
    }

    .alumni-photo-square {
        width: 90px;
        height: 90px;
    }

    .sq-1 {
        width: 100px;
        height: 100px;
    }

    .sq-2 {
        width: 110px;
        height: 110px;
    }

    .alumni-custom-name {
        font-size: 1.1rem;
    }

    .alumni-swiper-prev,
    .alumni-swiper-next {
        width: 45px;
        height: 45px;
        margin-top: -22px;
    }
}

@media (max-width: 480px) {
    .alumni-main-title {
        font-size: 1.5rem;
    }

    .alumni-custom-card {
        padding: 20px;
        max-width: 320px;
    }

    .alumni-profile-compact {
        gap: 15px;
    }

    .alumni-photo-square {
        width: 80px;
        height: 80px;
    }

    .sq-1 {
        width: 90px;
        height: 90px;
    }

    .sq-2 {
        width: 100px;
        height: 100px;
    }

    .quote-number {
        font-size: 3.5rem;
    }
}

/* Global Colors */
:root {
    --background-color: #f9fbff;
    --default-color: #1f2937;
    --heading-color: #0f172a;
    --accent-color: #0d59c9;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
    --nav-color: #ffffff;
    --nav-hover-color: #ffcc00;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #1f2937;
    --nav-dropdown-hover-color: #1834be;
}

/* Color Presets */
.light-background {
    --background-color: #e0f0ff;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #17273eae;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #1e3a8a;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #f6f6f6;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    /* Remove any default underlines */
    text-decoration: none;
    border-bottom: none !important;
}

/* Remove underline from all section titles */
.section-title h2,
.page-title h1,
.card-title,
.title {
    text-decoration: none !important;
    border-bottom: none !important;
}

.section-title h2:after {
    content: "" !important;
    display: none !important;
}

/* Pulsating Play Button */
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(
        var(--accent-color) 50%,
        color-mix(in srgb, var(--accent-color), transparent 75%) 52%
    );
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/* PHP Email Form Messages */
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(0, 0, 0, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 10px 15px;
    transition: all 0.5s;
    z-index: 997;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color));
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo {
    display: flex;
    align-items: flex-end;
    margin: 0;
}

.header .logo img {
    max-height: 50px;
    margin-right: 5px;
}

.header .logo .text-logo {
    align-items: baseline;
    margin: 0;
}

.header .logo h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    border-bottom: none;
}

.header .logo h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 0 5px;
    color: #fff;
    text-decoration: none;
    border-bottom: none;
}

.header .cta-btn,
.header .cta-btn:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 24px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 50px;
    transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .logo h1 {
        font-size: 24px;
    }

    .header .cta-btn {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    --background-color: rgb(13, 65, 144);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu > ul > li {
        white-space: nowrap;
        padding: 8px 8px;
    }

    .navmenu > ul > li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: color-mix(in srgb, var(--nav-color), transparent 10%);
        font-size: 13px;
        padding: 0 0px;
        font-family: var(--nav-font);
        font-weight: 400;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-decoration: none;
        border-bottom: none;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }
    .navmenu > ul > li > a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -27px;
        left: 0;
        background-color: var(--nav-hover-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover > a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 18px;
        text-transform: none;
        color: var(--nav-dropdown-color);
        text-decoration: none;
        border-bottom: none;
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        text-decoration: none;
        border-bottom: none;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    background: #001f3f;
    color: #f6f6f6;
    font-size: 14px;
    padding: 50px 0 30px 0;
}

.footer h3,
.footer h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-decoration: none;
    border-bottom: none;
}

.footer p {
    font-size: 14px;
    line-height: 24px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin: 10px 0;
}

.footer ul li a {
    color: #f6f6f6;
    transition: 0.3s;
    text-decoration: none;
    border-bottom: none;
}

.footer ul li a:hover {
    color: #00aaff;
    text-decoration: none;
}

.footer .social-links a {
    font-size: 18px;
    margin: 0 8px;
    color: #fff;
    background: #00aaff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
    border-bottom: none;
}

.footer .social-links a:hover {
    background: #0077cc;
}

.footer .map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--accent-color);
    border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    text-decoration: none;
    border-bottom: none;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 72px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 57px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Remove the underline from section titles */
.section-title h2:after {
    content: "" !important;
    display: none !important;
}

.section-title p {
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color) 90%, white 50%);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding-top: 80px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 210px;
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

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

.hero h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 800;
    text-decoration: none;
    border-bottom: none;
}

.hero h4 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: none;
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 0%);
    margin: 10px 0 20px 0;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
    list-style: none;
    padding: 0;
}

.about ul li {
    padding-bottom: 5px;
    display: flex;
    align-items: center;
}

.about ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.about .read-more {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px 28px;
    border-radius: 50px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-bottom: none;
}

.about .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.about .read-more:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
    transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Recent Posts Section 
--------------------------------------------------------------*/
.recent-posts {
    /* Ensure no underlines in entire section */
}

.recent-posts a {
    text-decoration: none !important;
    border-bottom: none !important;
}

.recent-posts .title a {
    text-decoration: none !important;
    border-bottom: none !important;
}

.recent-posts .title a:hover {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Remove decorative line under section title */
.recent-posts .section-title h2:after {
    content: none !important;
    display: none !important;
}

/* Remove border from card/article */
.recent-posts article {
    border-bottom: none;
    box-shadow: none;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.recent-posts article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Gambar tidak terpotong */
.post-img-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    padding: 15px;
}

.recent-posts article:hover .post-img {
    transform: scale(1.05);
}

.article-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.title {
    margin-bottom: 1rem;
}

.title a {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.8rem;
    text-decoration: none !important;
    border-bottom: none !important;
}

.title a:hover {
    color: var(--accent-blue);
}

/* Deskripsi Artikel */
.article-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

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

.post-author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.recent-posts article:hover .post-author-img {
    border-color: var(--accent-blue);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.post-author {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    text-decoration: none;
    border-bottom: none;
}

.post-date {
    color: #6c757d;
    font-size: 0.8rem;
    margin-bottom: 0;
}

.read-time {
    background: var(--accent-blue);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Kategori Badge */
.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 35, 81, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.btn-all-articles {
    display: inline-block;
    width: auto;
    margin: 3rem auto 0;
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 125, 252, 0.3);
    cursor: pointer;
    position: relative;
    z-index: 10;
    border-bottom: none;
}

.btn-all-articles:hover {
    background: var(--light-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 125, 252, 0.4);
    text-decoration: none;
}

/* Container untuk tombol agar lebih aman */
.button-container {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem 0;
    position: relative;
    z-index: 10;
}

/* Fallback untuk gambar tidak ada */
.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #6c757d;
}

.img-placeholder i {
    font-size: 3rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .recent-posts {
        padding: 2.5rem 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .post-img-container {
        height: 200px;
    }

    .article-content {
        padding: 1.2rem;
    }

    .title a {
        font-size: 1.1rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .read-time {
        align-self: flex-end;
    }

    .btn-all-articles {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.6rem;
    }

    .post-img-container {
        height: 180px;
    }

    .post-img {
        padding: 10px;
    }

    .category-badge {
        top: 10px;
        left: 10px;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .btn-all-articles {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Animasi */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recent-posts .col-xl-4 {
    animation: fadeInUp 0.6s ease forwards;
}

.recent-posts .col-xl-4:nth-child(1) {
    animation-delay: 0.1s;
}
.recent-posts .col-xl-4:nth-child(2) {
    animation-delay: 0.2s;
}
.recent-posts .col-xl-4:nth-child(3) {
    animation-delay: 0.3s;
}
.recent-posts .col-xl-4:nth-child(4) {
    animation-delay: 0.4s;
}
.recent-posts .col-xl-4:nth-child(5) {
    animation-delay: 0.5s;
}
.recent-posts .col-xl-4:nth-child(6) {
    animation-delay: 0.6s;
}

/*--------------------------------------------------------------
# Berita Section
--------------------------------------------------------------*/
#berita {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#berita::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.2" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,128C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.5;
}

/* Section title without underline */
#berita .section-title h2 {
    text-decoration: none !important;
    border-bottom: none !important;
}

#berita .section-title h2:after {
    content: "" !important;
    display: none !important;
}

#berita .row.gy-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#berita .col-xl-4.col-md-6 {
    margin-bottom: 30px;
}

/* Alumni Section Styling */
.alumni-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
    position: relative;
}

.layanan-main-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.layanan-section-header {
    margin-bottom: 60px;
}

.layanan-header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.layanan-decoration-line {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
}

.layanan-decoration-icon {
    margin: 0 20px;
    font-size: 1.8rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Alumni Card Styling - ID Card Style */
.alumni-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    margin: 10px;
    border: 2px solid #e0e0e0;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.alumni-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: #3498db;
}

/* Card Header */
.card-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    padding: 20px;
    text-align: center;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Bungkus logo */
.school-logo {
    text-align: center;
    margin: 20px 0;
}

/* Kotak placeholder biar rapi */
.logo-placeholder {
    width: 50px; /* ubah sesuai kebutuhan */
    height: 50px; /* ubah sesuai kebutuhan */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px; /* kalau mau agak melengkung */
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Logo sekolah */
.logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* biar tidak ketarik */
}

.school-info h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Alumni Photo */
.alumni-photo {
    width: 120px;
    height: 120px;
    margin: 20px auto;
    border-radius: 20%;
    overflow: hidden;
    border: 4px solid #3498db;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: white;
}

.alumni-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* gambar utuh, tapi bisa ada ruang kosong */
    object-position: center; /* biar tetap rata tengah */
    transition: transform 0.3s ease;
    background: #fff; /* kasih background putih kalau ada ruang kosong */
}

.alumni-card:hover .alumni-photo img {
    transform: scale(1.05);
}

/* Alumni Info */
.alumni-info {
    padding: 0 25px 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #7f8c8d;
    font-size: 0.9rem;
    min-width: 80px;
}

.info-value {
    font-weight: 500;
    color: #2c3e50;
    text-align: right;
    flex: 1;
    margin-left: 15px;
}

/* Quote Section */
.quote-section {
    background: #f8f9fa;
    padding: 20px 25px;
    border-top: 2px dashed #e0e0e0;
    margin-top: 10px;
}

.alumni-quote {
    font-style: italic;
    color: #555;
    text-align: center;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
    position: relative;
}

.alumni-quote::before {
    content: "❝";
    font-size: 1.5rem;
    color: #3498db;
    position: absolute;
    left: -5px;
    top: -5px;
    opacity: 0.7;
}

.alumni-quote::after {
    content: "❞";
    font-size: 1.5rem;
    color: #3498db;
    position: absolute;
    right: -5px;
    bottom: -10px;
    opacity: 0.7;
}

/* Swiper Customization */
.alumni-slider {
    padding: 20px 0 60px;
    position: relative;
}

.swiper-button-prev,
.swiper-button-next {
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #3498db;
    transition: all 0.3s ease;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #3498db;
    color: white;
    transform: scale(1.1);
}

.swiper-pagination {
    bottom: 10px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #bdc3c7;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #3498db;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .layanan-main-title {
        font-size: 2rem;
    }

    .alumni-card {
        max-width: 300px;
    }

    .card-header {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }

    .school-info h3 {
        font-size: 1rem;
    }

    .alumni-photo {
        width: 100px;
        height: 100px;
    }

    .alumni-info {
        padding: 0 20px 15px;
    }

    .quote-section {
        padding: 15px 20px;
    }
}

/* Hero Section Mobile First Approach */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

#heroSlider {
    height: 100%;
}

.carousel-inner,
.carousel-item {
    height: 100%;
}

.slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 109, 235, 0.447),
        rgba(26, 76, 183, 0.623),
        rgba(115, 150, 255, 0.6)
    );
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}


.hero-text-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 15px;
    /* Opsi tambahan untuk push lebih bawah */
    margin-top: 50px;
}

/* Typography untuk Mobile */
.hero-welcome {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-school-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffd700;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.3;
}

.hero-motto {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    opacity: 0.95;
}

/* Hilangkan line break di mobile */
.hero-motto br {
    display: none;
}

/* Tombol Play Video - Tema Biru Premium */
.hero-video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.video-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066ff 0%, #0044cc 50%, #002266 100%);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.5),
        0 0 0 10px rgba(0, 102, 255, 0.2), 0 0 0 15px rgba(0, 102, 255, 0.1),
        inset 0 2px 15px rgba(255, 255, 255, 0.4),
        inset 0 -2px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.video-play-btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.video-play-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: 50%;
}

.video-play-btn:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, #0088ff 0%, #0066ff 50%, #0044cc 100%);
    box-shadow: 0 15px 40px rgba(0, 136, 255, 0.7),
        0 0 0 12px rgba(0, 136, 255, 0.3), 0 0 0 18px rgba(0, 136, 255, 0.15),
        inset 0 2px 20px rgba(255, 255, 255, 0.5),
        inset 0 -2px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.video-play-btn:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(20%, 20%);
}

.video-play-btn:active {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.6),
        0 0 0 8px rgba(0, 102, 255, 0.25), 0 0 0 12px rgba(0, 102, 255, 0.1);
}

.video-play-btn i {
    font-size: 2.5rem;
    margin-left: 4px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.video-play-btn:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

/* Pulse Animation dengan efek biru */
@keyframes pulse-blue {
    0% {
        box-shadow: 0 10px 30px rgba(0, 102, 255, 0.5),
            0 0 0 10px rgba(0, 102, 255, 0.2), 0 0 0 15px rgba(0, 102, 255, 0.1);
    }

    50% {
        box-shadow: 0 10px 35px rgba(0, 136, 255, 0.7),
            0 0 0 12px rgba(0, 136, 255, 0.3),
            0 0 0 18px rgba(0, 136, 255, 0.15);
    }

    100% {
        box-shadow: 0 10px 30px rgba(0, 102, 255, 0.5),
            0 0 0 10px rgba(0, 102, 255, 0.2), 0 0 0 15px rgba(0, 102, 255, 0.1);
    }
}

.video-play-btn {
    animation: pulse-blue 3s ease-in-out infinite;
}

/* Glow Effect Tambahan */
@keyframes glow-blue {
    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }
}

.video-play-btn:hover {
    animation: none;
    animation: glow-blue 1.5s ease-in-out infinite;
}

/* Responsive Design */
@media (min-width: 768px) {
    .video-play-btn {
        width: 90px;
        height: 90px;
    }

    .video-play-btn i {
        font-size: 3rem;
        margin-left: 5px;
    }
}

@media (max-width: 360px) {
    .video-play-btn {
        width: 65px;
        height: 65px;
        border-width: 2px;
    }

    .video-play-btn i {
        font-size: 2rem;
        margin-left: 3px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn i {
        font-size: 1.8rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .video-play-btn {
        background: linear-gradient(
            135deg,
            #0088ff 0%,
            #0066ff 50%,
            #0044cc 100%
        );
        box-shadow: 0 10px 30px rgba(0, 102, 255, 0.6),
            0 0 0 10px rgba(0, 102, 255, 0.25),
            0 0 0 15px rgba(0, 102, 255, 0.1);
    }
}

/* Carousel Indicators - Perbaikan Mobile */
.carousel-indicators {
    bottom: 100px;
    z-index: 3;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 6px;
    border: 1px solid transparent;
}

/* Info Bar - Mobile Optimization */
.hero-info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(52, 83, 142, 0.95);
    color: white;
    z-index: 4;
    padding: 12px 0;
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(238, 3, 3, 0.1);
}

.info-bar-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.info-item i {
    color: #ffd700;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-welcome,
.hero-school-name,
.hero-motto,
.hero-video-btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .hero-text-content {
        max-width: 800px;
        padding: 0 20px;
    }

    .hero-welcome {
        font-size: 2.5rem;
        letter-spacing: 3px;
        margin-bottom: 1rem;
    }

    .hero-school-name {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .hero-motto {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 3rem;
    }

    .hero-motto br {
        display: inline;
    }

    .video-play-btn {
        width: 80px;
        height: 80px;
        border: 3px solid white;
    }

    .video-play-btn i {
        font-size: 3rem;
        margin-left: 5px;
    }

    .carousel-indicators {
        bottom: 120px;
    }

    .carousel-indicators button {
        width: 12px;
        height: 12px;
        margin: 0 8px;
    }

    .hero-info-bar {
        padding: 15px 0;
    }

    .info-item {
        gap: 10px;
        font-size: 0.9rem;
    }

    .info-item i {
        font-size: 1.1rem;
    }

    .hero-content {
        padding-top: 20vh;
    }

    .hero-text-content {
        margin-top: 30px;
    }
}

@media (min-width: 1200px) {
    .hero-welcome {
        font-size: 3rem;
    }

    .hero-school-name {
        font-size: 2rem;
    }

    .hero-motto {
        font-size: 1.2rem;
    }

    .hero-content {
        padding-top: 18vh;
    }
}

/* Very Small Mobile Devices */
@media (max-width: 360px) {
    .hero-text-content {
        max-width: 95%;
        padding: 0 10px;
    }

    .hero-welcome {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .hero-school-name {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-motto {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .video-play-btn {
        width: 50px;
        height: 50px;
    }

    .video-play-btn i {
        font-size: 1.5rem;
    }

    .carousel-indicators {
        bottom: 80px;
    }

    .info-bar-content {
        gap: 10px;
    }

    .info-item {
        font-size: 0.75rem;
        gap: 4px;
    }

    .info-item i {
        font-size: 0.8rem;
    }

    .hero-content {
        padding-top: 30vh;
    }

    .hero-text-content {
        margin-top: 20px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: 120vh;
        min-height: 120vh;
    }

    .hero-content {
        padding-top: 15vh;
        /* Kurangi di landscape */
    }

    .hero-text-content {
        margin-top: 20px;
    }

    .carousel-indicators {
        bottom: 70px;
    }
}

/*logo */
.client-logo-small {
    max-height: 50px;
    object-fit: contain;
    padding: 4px;
    transition: transform 0.3s ease;
}

.client-logo-small:hover {
    filter: grayscale(0%);
}

@media (max-width: 576px) {
    .client-logo-small {
        max-height: 40px;
    }
}

/* tampilan HP 
/* ===== VARIABEL RESPONSIF ===== 
:root {
    --mobile-padding: 1rem;
    --tablet-padding: 1.5rem;
    --mobile-font-scale: 0.9;
    --tablet-font-scale: 0.95;
}

/* ===== GLOBAL MOBILE FIXES ===== 
@media (max-width: 768px) {
    body {
        font-size: calc(16px * var(--mobile-font-scale));
        line-height: 1.5;
    }
    
    /* Perbaikan container 
    .container {
        padding-left: var(--mobile-padding);
        padding-right: var(--mobile-padding);
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Perbaikan section padding 
    section, .section {
        padding: 2rem 0;
        overflow: hidden;
    }
}

/* ===== HEADER MOBILE ===== 
@media (max-width: 768px) {
    .header {
        padding: 8px 12px;
        flex-wrap: wrap;
        position: relative;
    }
    
    .header .logo {
        order: 1;
        flex: 1;
        min-width: 0;
    }
    
    .header .logo img {
        max-height: 35px;
        margin-right: 3px;
    }
    
    .header .logo h1 {
        font-size: 16px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .header .logo h4 {
        font-size: 14px !important;
        margin: 0 0 0 3px;
        white-space: nowrap;
    }
    
    .header .cta-btn {
        order: 2;
        font-size: 14px !important;
        padding: 6px 16px !important;
        margin: 0 8px 0 0 !important;
        white-space: nowrap;
    }
    
    .mobile-nav-toggle {
        order: 3;
        font-size: 20px !important;
        margin-right: 0 !important;
    }
    
    /* Navmenu mobile 
    .navmenu ul {
        inset: 50px 15px 15px 15px !important;
        padding: 8px 0 !important;
    }
    
    .navmenu a, .navmenu a:focus {
        font-size: 15px !important;
        padding: 8px 16px !important;
    }
}

/* ===== HERO SECTION MOBILE ===== 
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding-top: 120px !important;
        padding-bottom: 60px;
    }
    
    .hero h2 {
        font-size: 24px !important;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .hero h4 {
        font-size: 20px !important;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 14px !important;
        line-height: 1.4;
        margin: 8px 0 16px 0;
    }
    
    .hero-content {
        padding-top: 15vh !important;
    }
    
    .hero-text-content {
        max-width: 95% !important;
        padding: 0 10px;
    }
    
    .hero-welcome {
        font-size: 1.2rem !important;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }
    
    .hero-school-name {
        font-size: 0.9rem !important;
        margin-bottom: 1rem;
    }
    
    .hero-motto {
        font-size: 0.8rem !important;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    /* Tombol play lebih kecil 
    .video-play-btn {
        width: 50px !important;
        height: 50px !important;
    }
    
    .video-play-btn i {
        font-size: 1.5rem !important;
    }
    
    /* Info bar mobile 
    .hero-info-bar {
        padding: 8px 0;
    }
    
    .info-bar-content {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .info-item {
        font-size: 0.7rem !important;
        gap: 3px;
    }
    
    .info-item i {
        font-size: 0.7rem !important;
    }
}

/* ===== SECTION TITLES MOBILE ===== 
@media (max-width: 768px) {
    .section-title {
        padding-bottom: 2rem !important;
    }
    
    .section-title h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .section-title p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .layanan-main-title,
    .alumni-main-title {
        font-size: 1.5rem !important;
        letter-spacing: 1px;
    }
}

/* ===== CARD & GRID MOBILE ===== 
@media (max-width: 768px) {
    /* Grid system improvement 
    .row {
        margin-left: -8px;
        margin-right: -8px;
    }
    
    .col-xl-4, .col-md-6, .col-sm-6 {
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 1rem;
    }
    
    /* Card adjustments 
    .card, .jurusan-card, .alumni-card, .prestasi-card {
        margin-bottom: 1rem;
        border-radius: 8px;
    }
    
    .card-body, .jurusan-content, .article-content {
        padding: 1rem !important;
    }
    
    .card-title, .jurusan-content h3 {
        font-size: 1.1rem !important;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .card-text, .jurusan-content p, .article-description {
        font-size: 0.85rem !important;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    /* Image containers 
    .post-img-container, .jurusan-image, .prestasi-image {
        height: 160px !important;
    }
    
    .post-img {
        padding: 10px !important;
    }
}

/* ===== LAYANAN SECTION MOBILE ===== 
@media (max-width: 768px) {
    .layanan-blue-theme {
        padding: 2rem 0 !important;
    }
    
    .layanan-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .layanan-info-card, .layanan-form-card {
        padding: 1.5rem !important;
        border-radius: 12px;
    }
    
    .layanan-form-row {
        grid-template-columns: 1fr !important;
        gap: 0;
    }
    
    .layanan-form-group {
        margin-bottom: 1rem;
    }
    
    .layanan-form-input, .layanan-form-textarea {
        padding: 12px !important;
        font-size: 14px;
    }
    
    .layanan-submit-btn {
        padding: 12px 30px !important;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* ===== ALUMNI SECTION MOBILE ===== 
@media (max-width: 768px) {
    .alumni-blue-theme {
        padding: 2rem 0 !important;
    }
    
    .alumni-custom-card {
        padding: 1.5rem !important;
        max-width: 100% !important;
        margin: 0 10px;
    }
    
    .alumni-profile-compact {
        gap: 12px;
    }
    
    .alumni-photo-square {
        width: 70px !important;
        height: 70px !important;
    }
    
    .alumni-custom-name {
        font-size: 1rem !important;
    }
    
    .alumni-program, .alumni-occupation {
        font-size: 0.8rem !important;
    }
    
    /* Navigation buttons 
    .alumni-swiper-prev, .alumni-swiper-next {
        width: 35px !important;
        height: 35px !important;
        margin-top: -17px !important;
    }
    
    .alumni-nav-arrow {
        font-size: 1rem !important;
    }
}

/* ===== BUTTONS MOBILE ===== 
@media (max-width: 768px) {
    .btn, .cta-btn, .btn-lihat-semua, .btn-all-articles {
        font-size: 0.85rem !important;
        padding: 0.5rem 1.2rem !important;
        border-radius: 6px;
        width: auto;
        min-width: 120px;
    }
    
    .btn-jurusan {
        padding: 0.4rem 1rem !important;
        font-size: 0.8rem !important;
    }
    
    .read-more {
        padding: 8px 20px !important;
        font-size: 0.85rem !important;
    }
}

/* ===== CLIENTS SECTION MOBILE ===== 
@media (max-width: 768px) {
    .clients.section {
        padding: 1.5rem 0 0.5rem 0 !important;
    }
    
    .client-logo {
        padding: 8px 4px !important;
    }
    
    .client-logo img {
        width: 35px !important;
        height: 35px !important;
    }
    
    .client-logo-small {
        max-height: 35px !important;
        padding: 3px;
    }
}

/* ===== FOOTER MOBILE ===== 
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1.5rem 0 !important;
        font-size: 0.85rem;
    }
    
    .footer h3, .footer h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer .social-links a {
        width: 32px;
        height: 32px;
        font-size: 16px;
        margin: 0 4px;
    }
    
    .map-container {
        height: 200px;
        margin-top: 1rem;
    }
}

/* ===== TYPOGRAPHY MOBILE IMPROVEMENT ===== 
@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.25rem !important;
        line-height: 1.3;
    }
    
    h4 {
        font-size: 1.1rem !important;
    }
    
    h5 {
        font-size: 1rem !important;
    }
    
    h6 {
        font-size: 0.9rem !important;
    }
    
    .lead {
        font-size: 1rem !important;
    }
    
    p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
}

/* ===== FORM ELEMENTS MOBILE ===== 
@media (max-width: 768px) {
    .form-control, .form-select, .form-input, textarea {
        font-size: 14px !important;
        padding: 10px 12px !important;
        border-radius: 6px;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
}

/* ===== UTILITY CLASSES FOR MOBILE ===== 
@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center !important;
    }
    
    .d-block-mobile {
        display: block !important;
    }
    
    .d-none-mobile {
        display: none !important;
    }
    
    .w-100-mobile {
        width: 100% !important;
    }
    
    .mb-2-mobile {
        margin-bottom: 0.5rem !important;
    }
    
    .mt-2-mobile {
        margin-top: 0.5rem !important;
    }
}

/* ===== LANDSCAPE MODE FIXES ===== 
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 100px !important;
    }
    
    .hero-content {
        padding-top: 10vh !important;
    }
    
    .hero-text-content {
        margin-top: 10px !important;
    }
    
    .mobile-nav-toggle {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 10000;
    }
}

/* ===== VERY SMALL DEVICES (iPhone 5/SE) ===== 
@media (max-width: 320px) {
    :root {
        --mobile-padding: 0.5rem;
        --mobile-font-scale: 0.85;
    }
    
    .header .logo h1 {
        font-size: 14px !important;
    }
    
    .header .logo h4 {
        font-size: 12px !important;
    }
    
    .header .cta-btn {
        font-size: 12px !important;
        padding: 4px 12px !important;
    }
    
    .hero-welcome {
        font-size: 1rem !important;
    }
    
    .hero-school-name {
        font-size: 0.8rem !important;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== 
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices 
    .card:hover, 
    .jurusan-card:hover, 
    .alumni-card:hover, 
    .prestasi-card:hover {
        transform: none !important;
    }
    
    /* Increase tap target sizes 
    .btn, .cta-btn, a, button {
        min-height: 44px;
        min-width: 44px;
    }
    
    .navmenu a {
        padding: 12px 16px !important;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== 
@media (max-width: 768px) {
    /* Reduce animations on mobile 
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.3s !important;
    }
    
    /* Optimize images 
    img {
        max-width: 100%;
        height: auto;
    }
}

/* ===== SCROLL BAR OPTIMIZATION ===== 
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 4px;
    }
    
    ::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 2px;
    }
} */

.col-md-1-2 {
    flex: 0 0 auto;
    width: 10%;
}
