/* Custom Variables */
:root {
    --primary-color: #01994e;
    --background-light: #f6f7f8;
    --background-dark: #101922;
    --text-dark: #111418;
    --text-gray: #617589;
    --border-light: #f0f2f4;
    --border-dark: #2a3441;
}

/* Global Styles */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--background-light);
  color: var(--text-dark);
}

/* html,
body {
    overflow-x: hidden;
} */

#wrapper {
    overflow-x: clip;
}

img,
video,
canvas,
svg {
    max-width: 100%;
}


.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Header Styles */
.header-navbar {
    background: white;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.header-navbar.navbar-transparent {
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
}

.navbar-brand-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.header-navbar .nav-link:focus,
.header-navbar .nav-link:focus-visible,
.header-navbar .nav-link.dropdown-toggle.show {
    outline: none;
    box-shadow: none;
    background-color: transparent;
}

/* Specific styles for transparent navbar links */
.header-navbar.navbar-transparent .nav-link,
.header-navbar.navbar-transparent .navbar-brand {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.header-navbar.navbar-transparent .nav-link:hover {
    color: var(--primary-color); /* Or maybe a lighter shade like #60a5fa */
}

.header-navbar.navbar-transparent .navbar-brand-icon {
    color: white;
}

/* Ensure navbar toggler is visible on dark bg */
.header-navbar.navbar-transparent .navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}

.header-navbar.navbar-transparent .navbar-toggler .material-symbols-outlined {
    color: #fff;
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    padding: 0.75rem;
    margin-top: 0px !important;
    border-top: 3px solid var(--primary-color);
}

@media (min-width: 992px) {
    .nav-item.dropdown > .dropdown-menu.show {
        display: block;
        animation: dropdownFadeIn 0.3s ease;
    }
}

.dropdown-item {
    border-radius: 0.5rem;
    padding: 0.625rem 1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(19, 127, 236, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item:active {
    background-color: var(--primary-color);
    color: white;
}

.dropdown-submenu {
    position: relative;
}

.submenu-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.submenu-arrow {
    font-size: 1rem;
    line-height: 1;
    opacity: 0.7;
}

.submenu-panel {
    display: none;
    min-width: 240px;
}

@media (min-width: 992px) {
    .dropdown-submenu:hover > .submenu-panel {
        display: block;
        position: absolute;
        top: -0.5rem;
        left: 100%;
        margin-left: 0.35rem;
        z-index: 1100;
    }
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-navbar.navbar-transparent .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .header-navbar,
    .header-navbar.navbar-transparent {
        background: #fff !important;
        border-bottom: 1px solid var(--border-light) !important;
        box-shadow: none;
    }

    .header-navbar.navbar-transparent .nav-link,
    .header-navbar.navbar-transparent .navbar-brand {
        color: var(--text-dark) !important;
        text-shadow: none;
    }

    .header-navbar.navbar-transparent .navbar-brand-icon {
        color: var(--primary-color) !important;
    }

    .header-navbar .navbar-toggler,
    .header-navbar.navbar-transparent .navbar-toggler {
        border-color: var(--border-light);
    }

    .header-navbar .navbar-toggler .material-symbols-outlined,
    .header-navbar.navbar-transparent .navbar-toggler .material-symbols-outlined {
        color: #111418 !important;
    }

    .header-navbar .navbar {
        position: relative;
    }

    .header-navbar.navbar-transparent .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #fff;
        border: 1px solid var(--border-light);
        border-radius: 0;
        margin-top: 0 !important;
        padding: 0.8rem 1rem;
        box-shadow: 0 10px 24px rgba(16, 25, 34, 0.1);
        z-index: 1100;
    }

    .header-navbar.navbar-transparent .navbar-collapse .nav-link,
    .header-navbar.navbar-transparent .navbar-collapse .navbar-brand {
        color: var(--text-dark) !important;
        text-shadow: none;
    }

    .header-navbar.navbar-transparent .navbar-collapse .dropdown-item {
        color: var(--text-dark);
    }

    .submenu-panel {
        display: block;
        position: static;
        float: none;
        width: 100%;
        margin: 0.35rem 0 0 0;
        padding: 0.35rem 0 0 0.75rem;
        border: 0;
        border-top: 0;
        box-shadow: none;
        background: transparent;
    }

    .submenu-child {
        font-size: 0.93rem;
    }

    .submenu-arrow {
        display: none;
    }

}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: rgba(1, 153, 78, 0.9);
}

/* Hero Section */
.hero-section {
    min-height: 100vh; /* Changed to full height for better impact */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: -76px; /* Pull hero up behind navbar (approx navbar height) */
    padding-top: 76px; /* Push content down */
}

.hero-section .container {
    position: relative;
    z-index: 2; /* Content stays on top */
}

.hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 0;
}

/* Gradient Fade at Bottom of Hero */
.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0.9) 8%,
    rgba(255,255,255,0.65) 38%,
    rgba(255,255,255,0.35) 60%,
    rgba(255,255,255,0.12) 78%,
    rgba(255,255,255,0) 100%
  );
  pointer-events: none;
  z-index: 1; /* Below content but above background image/overlay */
}


/* Update kelas dasar dengan transition agar animasi halus */
.btn-hero-primary {
    background-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(19, 127, 236, 0.3);
    /* Tambahan untuk animasi */
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Tambahan untuk animasi */
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: #017d3e; 
    box-shadow: 0 8px 25px rgba(1, 153, 78, 0.5);
    transform: translateY(-2px);
}
.btn-hero-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(1, 153, 78, 0.3);
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-hero-warning {
    background-color: #fef216;
    border-color: #fef216;
    color: #1f2937 !important;
    transition: all 0.25s ease;
}

.btn-hero-warning:hover {
    background-color: #f2e500;
    border-color: #f2e500;
    color: #1f2937 !important;
    box-shadow: 0 8px 25px rgba(254, 242, 22, 0.45);
    transform: translateY(-2px);
}

.btn-hero-warning:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(254, 242, 22, 0.3);
}

/* About Section */
.section-label {
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.875rem;
}
.about-section .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    padding: 20px;
}

.kepsek-media-box {
    aspect-ratio: 3 / 4;
    background: transparent;
    max-width: 500px;
    margin: 0 auto;
}

.kepsek-media-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 0.5rem;
    background-color: rgba(19, 127, 236, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.text-primary-custom {
    color: var(--primary-color);
}

.text-gray-custom {
    color: var(--text-gray);
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(19, 127, 236, 0.5);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(19, 127, 236, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Testimonial Cards */
.testimonial-card {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(19, 127, 236, 0.2);
}

.star-rating {
    color: #fbbf24;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

/* Blog Cards */
.blog-card {
    transition: transform 0.3s ease;
}

.blog-image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 0.75rem;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

.blog-card h3 {
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #111418;
    color: white;
}

footer a {
    transition: color 0.3s ease;
}

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

.social-icon {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
}

/* Utility Classes */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aspect-4-3 {
    aspect-ratio: 4/3;
}

.aspect-video {
    aspect-ratio: 16/9;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* About Page Styles */
.about-hero-section {
    min-height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sticky-title {
    position: sticky;
    top: 100px;
}

.video-cta-section {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-cta-section:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
}

.video-cta-section:hover .video-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.video-play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.video-cta-section:hover .video-play-button {
    transform: scale(1.1);
}

.video-play-inner {
    width: 56px;
    height: 56px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding-left: 4px;
    box-shadow: 0 4px 20px rgba(19, 127, 236, 0.4);
}

.vision-mission-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #dbe0e6;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.vision-mission-card:hover {
    border-color: rgba(19, 127, 236, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-placeholder {
    height: 48px;
    background-color: #e5e7eb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #9ca3af;
}

.header-navbar .nav-link.active {
    color: var(--primary-color) !important;
}

.header-navbar .dropdown-item.active {
    color: var(--primary-color);
    background-color: rgba(1, 153, 78, 0.12);
}

/* Contact Page Styles */
.contact-hero-section {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.contact-hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.breadcrumb-nav .breadcrumb-item::before {
    content: none !important;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: white;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
    color: var(--primary-color);
}

.contact-info-icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(19, 127, 236, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-form-card {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.contact-form .form-control {
    border: 2px solid #e5e7eb;
    padding-right: 1rem;
    height: 40px;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background: #f9fafb;
    transition: all 0.2s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(19, 127, 236, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 160px;
}

.contact-form .form-label {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.social-link {
    width: 44px;
    height: 44px;
    background-color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #e5e7eb;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Form Validation Styles */
.was-validated .form-control:invalid {
    border-color: #dc3545;
}

.was-validated .form-control:valid {
    border-color: #28a745;
}

/* Services Page Styles */
.services-hero-section {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #111418;
}

.services-hero-overlay {
    background-color: rgba(17, 20, 24, 0.6);
    mix-blend-mode: overlay;
}

.services-hero-gradient {
    background: linear-gradient(to top, #111418, transparent);
}

.btn-filter {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    background-color: white;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.btn-filter:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-filter.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(19, 127, 236, 0.25);
}

.service-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-image-wrapper {
    height: 224px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

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

.service-image-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.service-card:hover .service-image-overlay {
    background-color: rgba(0, 0, 0, 0);
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    background-color: rgba(19, 127, 236, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-link-wrapper {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.service-link {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link .material-symbols-outlined {
    font-size: 1.25rem;
}

/* Service Detail Page Styles */
.breadcrumb-nav-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.breadcrumb-link-detail {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link-detail:hover {
    color: var(--primary-color);
}

.breadcrumb-separator-detail {
    color: #cbd5e0;
}

.breadcrumb-current-detail {
    color: var(--text-dark);
    font-weight: 500;
}

/* NEW STYLES FOR CODE.HTML REPLICATION */

/* Article Container */
.article-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.article-hero-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.article-padding {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .article-padding {
        padding: 3rem;
    }
}

.article-title {
    font-size: 1.875rem;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .article-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .article-title {
        font-size: 3rem;
    }
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-icon {
    font-size: 20px;
}

/* Prose Content */
.prose-content {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.125rem;
}

.prose-content p {
    margin-bottom: 1.5rem;
}

.prose-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.prose-content li {
    margin-bottom: 0.5rem;
}

.prose-content li::marker {
    color: var(--primary-color);
}

/* Related Articles */
.related-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: white;
    border-top: 1px solid var(--border-light);
}

.related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.related-card {
    cursor: pointer;
    group: hover;
}

.related-image-container {
    overflow: hidden;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    position: relative;
    aspect-ratio: 4/3;
}

.related-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

.category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.related-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.375;
    transition: color 0.3s ease;
}

.related-card:hover .related-title {
    color: var(--primary-color);
}

.related-excerpt {
    color: var(--text-gray);
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.related-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

/* CTA Section */
.cta-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: var(--background-light);
    border-top: 1px solid var(--border-light);
}

@media (min-width: 768px) {
    .cta-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.033em;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-text {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.625;
}

.btn-cta {
    min-width: 140px;
    height: 3rem;
    padding: 0 2rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    border-radius: 0.5rem;
    border: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(19, 127, 236, 0.3);
}

.btn-cta:hover {
    background-color: rgba(19, 127, 236, 0.9);
}

/* Social Share Buttons */
.share-btn-group {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    transition: opacity 0.3s ease;
}

.share-btn:hover {
    opacity: 0.9;
}

.share-btn-fb { background-color: #1877F2; }
.share-btn-tw { background-color: #1DA1F2; }
.share-btn-in { background-color: #0A66C2; }

.share-btn-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background-color: var(--background-light);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: background-color 0.3s ease;
}

.share-btn-icon:hover {
    background-color: #e5e7eb;
}

/* Blog Page Styles - RESTORED */
.blog-hero-section {
    background-color: white;
}

.btn-filter-blog {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    background-color: white;
    color: var(--text-gray);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-filter-blog:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-filter-blog.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(19, 127, 236, 0.25);
}

.featured-article {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.featured-article:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.featured-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.featured-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: inherit;
    transition: transform 0.7s ease;
}

.featured-article:hover .featured-image::before {
    transform: scale(1.05);
}

.badge-featured {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(19, 127, 236, 0.3);
}

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.btn-read-more:hover {
    gap: 0.75rem;
}

.blog-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    margin: 1rem 1rem 0 1rem;
}

.blog-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: inherit;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image::before {
    transform: scale(1.05);
}

.badge-blog-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.625rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.blog-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card-title {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.pagination .page-link {
    border-radius: 0.5rem;
    margin: 0 0.25rem;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(19, 127, 236, 0.25);
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

.newsletter-box {
    background: var(--background-light);
    padding: 3rem 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(19, 127, 236, 0.1);
}

.newsletter-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(19, 127, 236, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.newsletter-icon .material-symbols-outlined {
    font-size: 2.5rem;
}

/* Partner Swiper Marquee Effect */
.partnerSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Home News Portal */
.news-portal-section {
    background: #f3f5f7;
}

.news-portal-section .section-label {
    font-size: 0.72rem;
    letter-spacing: 1.8px;
}

.news-portal-section .btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.featured-news-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 12px 32px rgba(16, 25, 34, 0.15);
}

.featured-news-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.featured-news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.4) 45%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.featured-news-content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 1;
    padding: 1.4rem;
    color: #fff;
}

.news-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    margin-bottom: 0.75rem;
}

.featured-news-content h3 {
    font-size: clamp(1.55rem, 2.7vw, 2.2rem);
    line-height: 1.2;
    color: #fff;
}

.featured-news-content p {
    color: rgba(255, 255, 255, 0.86);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.news-list-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: #fff;
    border-radius: 0.9rem;
    border: 1px solid #edf0f4;
    padding: 0.75rem;
    min-height: 88px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.news-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(16, 25, 34, 0.08);
    border-color: rgba(1, 153, 78, 0.25);
}

.news-list-img {
    width: 72px;
    height: 72px;
    border-radius: 0.65rem;
    flex: 0 0 72px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-list-content {
    flex: 1;
    min-width: 0;
}

.news-list-content .small {
    color: #2a86ff !important;
    font-weight: 700 !important;
    font-size: 0.72rem;
}

.news-list-content h4 {
    font-size: 1rem;
    line-height: 1.35;
    color: #20262d;
}

.news-list-content p {
    margin-top: 0.25rem;
    margin-bottom: 0;
    color: #637384;
    font-size: 0.82rem;
}

@media (max-width: 991.98px) {
    .featured-news-card {
        min-height: 340px;
    }
}

/* Home Swiper: intro, video, gallery */
.introSwiper {
    border-radius: 1rem;
}

.intro-slide-img {
    width: 100%;
    min-height: 280px;
    aspect-ratio: 16 / 7;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.intro-swiper-pagination .swiper-pagination-bullet,
.video-swiper-pagination .swiper-pagination-bullet {
    background: rgba(1, 153, 78, 0.35);
    opacity: 1;
}

.intro-swiper-pagination .swiper-pagination-bullet-active,
.video-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.intro-swiper-next,
.intro-swiper-prev {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(16, 25, 34, 0.2);
}

.intro-swiper-next::after,
.intro-swiper-prev::after {
    font-size: 16px;
    font-weight: 700;
}

.video-swiper-next,
.video-swiper-prev {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(16, 25, 34, 0.2);
}

.video-swiper-next::after,
.video-swiper-prev::after {
    font-size: 16px;
    font-weight: 700;
}

.video-card {
    position: relative;
    display: block;
    border-radius: 1.05rem;
    overflow: hidden;
    border: 1px solid #e7edf3;
    box-shadow: 0 12px 28px rgba(16, 25, 34, 0.1);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(16, 25, 34, 0.16);
}

.video-thumbnail {
    width: 100%;
    min-height: 250px;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-overlay-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.12));
    transition: background-color 0.25s ease, opacity 0.25s ease;
}

.play-icon-box {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 12px 28px rgba(0, 0, 0, 0.26);
    overflow: hidden;
}

.play-icon-box::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 12px;
    width: 42%;
    height: 26%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    filter: blur(0.4px);
}

.play-icon-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background:
        radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.28), transparent 42%),
        radial-gradient(circle at 70% 74%, rgba(255, 255, 255, 0.18), transparent 48%);
    animation: liquidPulse 3.1s ease-in-out infinite;
}

.play-icon-box .material-symbols-outlined {
    position: relative;
    z-index: 1;
    font-size: 1.7rem !important;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
}

.video-card:hover .video-overlay-play {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.16));
}

.video-card:hover .play-icon-box {
    transform: scale(1.06);
    transition: transform 0.26s ease;
}

@keyframes liquidPulse {
    0% {
        opacity: 0.65;
        transform: scale(1);
    }
    50% {
        opacity: 0.92;
        transform: scale(1.04);
    }
    100% {
        opacity: 0.65;
        transform: scale(1);
    }
}

.video-title-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: 0.95rem;
    overflow: hidden;
    border: 1px solid #e7edf3;
    box-shadow: 0 8px 22px rgba(16, 25, 34, 0.08);
}

.gallery-img {
    width: 100%;
    min-height: 210px;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.32s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.16));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.video-section,
.gallery-section {
    background: #f3f5f7;
}

.video-section .section-label,
.gallery-section .section-label {
    font-size: 0.72rem;
    letter-spacing: 1.8px;
}

@media (max-width: 991.98px) {
    .video-thumbnail {
        min-height: 220px;
    }

    .play-icon-box {
        width: 58px;
        height: 58px;
    }

    .gallery-img {
        min-height: 170px;
    }
}

/* Home Menu Grid */
.menu-item {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    text-align: center;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(254, 242, 22, 0.28);
    border-color: rgba(254, 242, 22, 0.7);
    color: var(--text-dark);

   /* hijau  */
    /* box-shadow: 0 12px 28px rgba(16, 25, 34, 0.1);
    border-color: rgba(1, 153, 78, 0.28); */
}

.menu-icon-box {
    width: 68px;
    height: 68px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-text {
    display: block;
    font-weight: 700;
    line-height: 1.35;
}

/* Home Contact */
.contact-section {
    background: #f3f5f7;
}

.contact-section .row.g-5 {
    align-items: stretch;
}

.contact-info-card {
    background: linear-gradient(180deg, #fef102 0%, #fef102 100%);
    color: #000000;
    border-radius: 1rem;
    padding: 1.7rem;
    box-shadow: 0 14px 30px rgba(254, 241, 2, 0.22);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-card h2 {
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    line-height: 1.2;
}

.contact-info-card .text-white-50,
.contact-info-card .text-white-80 {
    color: rgba(255, 255, 255, 0.88) !important;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.35rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0.55rem;
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.08);
}

.contact-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: #000000;
    flex: 0 0 38px;
}

.contact-info-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem !important;
}

.contact-info-item p {
    font-size: 0.88rem;
    line-height: 1.4;
}

.feedback-form-card {
    background: #e8eaed;
    border: 1px solid #d9dee5;
    border-radius: 1rem;
    padding: 1.6rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feedback-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feedback-form .form-label {
    font-size: 0.95rem;
    color: #2d333b;
    margin-bottom: 0.45rem;
}

.feedback-form .form-control {
    border-radius: 0.55rem;
    border: 1px solid #d3d8df;
    background: #f4f6f8;
    min-height: 44px;
}

.feedback-form textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

#feedbackSubmitBtn {
    border-radius: 0.45rem;
    font-size: 1.3rem;
    padding-top: 0.9rem !important;
    padding-bottom: 0.9rem !important;
    box-shadow: none !important;
}

/* Home Quotes */
.quotes-section {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.88)),
        url('/assets_guest/image/sliders/1.jpg') center / cover no-repeat;
}

.quotes-overlay {
    position: absolute;
    inset: 0;
    background: rgba(245, 247, 249, 0.65);
    pointer-events: none;
}

.quote-content {
    position: relative;
    z-index: 1;
}

.quote-icon {
    display: inline-block;
    font-size: 3.2rem;
    margin-bottom: 0.25rem;
    /* color: #fef216; */
    color: rgba(1, 153, 78, 0.35);
}

.quote-text {
    font-size: clamp(1.65rem, 2.6vw, 2.55rem);
    line-height: 1.3;
    font-weight: 800;
    font-style: italic;
    color: #18202a;
    margin-bottom: 1rem;
}

.quote-author {
    display: inline-block;
    margin-top: 0.35rem;
    font-weight: 800;
    color: #01994e;
    font-size: 1.2rem;
}

/* Footer Guests */
.school-footer {
    background: linear-gradient(180deg, #f1f3f5 0%, #e9ecef 100%);
    color: #2f3640;
}

.footer-main {
    border-bottom: 1px solid #d5dbe1;
}

.footer-logo {
    max-height: 58px;
    width: auto;
    display: block;
}

.footer-address {
    color: #5f6873;
}

.footer-group .footer-heading {
    color: #222b35;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

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

.footer-list li + li {
    margin-top: 0.5rem;
}

.footer-list a {
    color: #4e5967;
    text-decoration: none;
}

.footer-list a:hover {
    color: #01994e;
}

.footer-social-inline {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-social-inline a {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dfe4ea;
    color: #334155;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.footer-social-inline a:hover {
    transform: translateY(-2px);
    background: #01994e;
    color: #fff;
}

.footer-map {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #cfd6de;
    background: #fff;
    width: 100%;
    max-width: 600px;
    height: 250px;
}

.footer-map iframe {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 0;
    border: 0;
}

.footer-bottom-line {
    color: #626d7a;
}

@media (max-width: 767.98px) {
    .menu-item {
        padding: 1rem 0.75rem;
    }

    .menu-icon-box {
        width: 56px;
        height: 56px;
        border-radius: 0.85rem;
    }

    .quote-text {
        font-size: 1.25rem;
    }

    .quote-author {
        font-size: 1rem;
    }

    .quotes-section {
        min-height: 380px;
    }

    #feedbackSubmitBtn {
        font-size: 1.1rem;
    }

    .footer-map {
        max-width: 100%;
        height: 220px;
    }
}

/* Authentication Page Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
}

.auth-side-image {
    background: url('https://lh3.googleusercontent.com/aida-public/AB6AXuBVhXsOXaYEyH-02HPBMAQZ0on5nHePA5Rl2hVVk0bN0f2w2hv64ArdtiidlianNHo6DF4n-ObBIsjVSt80cVmv1JF3_k79Jbx5DhRI9wanlf7pzoxNxVcVG05wbI6dPTYyHblC6cykVOJXBDEmlCVLV8EhVvDYEvU7xWdvurefxQnmDeptZsc0HYIR_tpUadJqj3LelMzZarFB6lSoUFl2tXdMHfJspeBnU4tNZfOusjedzE0BodYLK9MKnAkJztCLReLcufB6aqs') no-repeat center center/cover;
    width: 50%;
    display: none;
    position: relative;
}

.auth-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.auth-form-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: white;
}

@media (min-width: 992px) {
    .auth-side-image {
        display: block;
    }
    .auth-form-container {
        width: 50%;
    }
}

.auth-card {
    width: 100%;
    max-width: 450px;
}

.cursor-pointer {
    cursor: pointer;
}

/* GLightbox video cleanup */
.glightbox-container .gslide-description,
.glightbox-mobile .gslide-description,
.glightbox-clean .gslide-description {
    display: none !important;
}

.glightbox-container .gslide-media {
    background: transparent !important;
}
