body {
    overflow-x: hidden;
}

/* ===== PROGRAM & PROMO PAGE STYLES ===== */
/* Hero Section */
.promo-page-hero-section {
    background: url('../img/banner_program.svg') center center/cover no-repeat;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.promo-page-hero-overlay {
    display: none;
}

.promo-page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 900px;
}

.promo-page-hero-title {
    font-size: 48px;
    margin-bottom: 16px;
    color: #333;
    text-shadow: none;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.promo-page-hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.5;
    color: #555;
    text-shadow: none;
}

.promo-page-hero-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.promo-page-hero-search-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 6px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 400px;
}

.promo-page-hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 20px;
    font-size: 16px;
    background: transparent;
    color: #333;
    border-radius: 25px;
}

.promo-page-hero-search-input::placeholder {
    color: #999;
}

.promo-page-hero-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #FF8300;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.promo-page-hero-search-btn:hover {
    background: #e6740a;
    transform: scale(1.05);
}

.promo-page-hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FF8300;
    color: white;
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 131, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-page-hero-cta-btn:hover {
    background: #e6740a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 131, 0, 0.4);
    color: white;
    text-decoration: none;
}

.promo-page-hero-decorative-bottom {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #FFB800 0%, #FF8300 100%);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 1;
}

.promo-page-hero-decorative-left {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00D4AA 0%, #00BFA6 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

/* Filter Tabs */
.promo-page-filter-tabs {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 103px;
    z-index: 100;
}

.promo-page-tab-container {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.promo-page-tab-item {
    padding: 10px 24px;
    border-radius: 25px;
    border: 2px solid #e5e5e5;
    background: white;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.promo-page-tab-item:hover {
    border-color: #FF6B35;
    color: #FF6B35;
    text-decoration: none;
}

.promo-page-tab-item.active {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
}

/* Promo Sections */
.promo-page-section {
    padding: 60px 0 100px 0;
    background: #f8f9fa;
}

.promo-page-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.promo-page-section-title {
    font-size: 28px;
    color: #333;
    margin: 0;
}

.promo-page-section-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.promo-page-date-badge {
    background: #FF6B35;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.promo-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.promo-page-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
}

.promo-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.promo-page-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 16 / 9) {
    .promo-page-card-image {
        height: 0;
        padding-bottom: 56.25%; /* 9/16 = 0.5625 = 56.25% */
        position: relative;
        background-size: cover;
        background-position: center;
    }
}

.promo-page-card-content {
    padding: 16px 20px 20px 20px;
}

.promo-page-card-category {
    font-size: 14px;
    color: #FF6B35;
    text-transform: none;
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.promo-page-card-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
    margin-top: 15px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.promo-page-card-date {
    font-size: 15px;
    color: #999;
    margin-top: 4px;
}

.promo-page-view-more {
    text-align: center;
    margin-top: 40px;
}

.promo-page-view-more-btn {
    display: inline-block;
    padding: 12px 40px;
    background: white;
    border: 2px solid #FF6B35;
    color: #FF6B35;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.promo-page-view-more-btn:hover {
    background: #FF6B35;
    color: white;
    text-decoration: none;
}

.promo-page-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.promo-page-empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    opacity: 0.5;
}

.promo-page-empty-text {
    font-size: 18px;
    color: #999;
    margin: 0;
}

/* Global Search Empty State */
.promo-search-empty-state {
    padding: 80px 0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.search-empty-state-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.empty-state-button {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.empty-state-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Wondr App Section */
.promo-page-wondr-section {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.promo-page-wondr-pattern {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: url('../img/pattern_bg.svg') no-repeat;
    background-size: contain;
    opacity: 0.1;
}

.promo-page-wondr-content {
    position: relative;
    z-index: 2;
}

.promo-page-wondr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.promo-page-wondr-text {
    color: white;
}

.promo-page-wondr-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.promo-page-wondr-logo {
    width: 120px;
    margin-bottom: 20px;
}

.promo-page-wondr-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.95;
}

.promo-page-wondr-stores {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.promo-page-wondr-store-btn {
    display: inline-flex;
    align-items: center;
    background: black;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.promo-page-wondr-store-btn:hover {
    background: #333;
    transform: translateY(-2px);
    text-decoration: none;
}

.promo-page-wondr-store-btn img {
    height: 24px;
    margin-right: 10px;
}

.promo-page-wondr-phone {
    position: relative;
    text-align: center;
}

.promo-page-wondr-phone img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* Responsive Styles for Program & Promo Main Page */
@media (max-width: 991px) {
    .promo-page-hero-section {
        min-height: 380px;
    }

    .promo-page-hero-title {
        font-size: 40px;
    }

    .promo-page-hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .promo-page-hero-play-btn {
        width: 45px;
        height: 45px;
    }

    .promo-page-hero-play-icon {
        font-size: 16px;
    }

    .promo-page-hero-cta-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .promo-page-section-title {
        font-size: 24px;
    }

    .promo-page-wondr-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .promo-page-wondr-stores {
        justify-content: center;
    }

    .promo-page-wondr-title {
        font-size: 28px;
    }
}

/* Tablet - 2 columns */
@media (max-width: 991px) and (min-width: 768px) {
    .promo-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .promo-page-card-image {
        aspect-ratio: 16 / 9;
        min-height: 160px; /* Larger minimum for tablet */
    }

    .promo-page-card-title {
        font-size: 18px;
        line-height: 1.3;
    }
}

/* Mobile - 1 column */
@media (max-width: 767px) {
    .promo-page-hero-section {
        min-height: 350px;
    }

    .promo-page-hero-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .promo-page-hero-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .promo-page-hero-search {
        gap: 12px;
    }

    .promo-page-hero-search-container {
        min-width: 320px;
    }

    .promo-page-hero-search-input {
        padding: 14px 18px;
        font-size: 15px;
    }

    .promo-page-hero-search-btn {
        width: 42px;
        height: 42px;
    }

    .promo-page-hero-cta-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .promo-page-filter-tabs {
        top: 60px;
        padding: 15px 0;
    }

    .promo-page-tab-container {
        justify-content: center;
    }

    .promo-page-tab-item {
        font-size: 13px;
        padding: 8px 20px;
    }

    .promo-page-section {
        padding: 40px 0;
    }

    .promo-page-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .promo-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .promo-page-wondr-section {
        padding: 60px 0;
    }

    .promo-page-wondr-phone img {
        max-width: 250px;
    }

    .promo-search-empty-state {
        padding: 60px 0;
    }

    .search-empty-state-content {
        padding: 60px 30px;
    }
}

@media (max-width: 575px) {
    .promo-page-hero-section {
        min-height: 320px;
    }

    .promo-page-hero-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .promo-page-hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .promo-page-hero-search {
        gap: 10px;
    }

    .promo-page-hero-search-container {
        min-width: 280px;
    }

    .promo-page-hero-search-input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .promo-page-hero-search-btn {
        width: 38px;
        height: 38px;
    }

    .promo-page-hero-cta-btn {
        padding: 8px 16px;
        font-size: 11px;
    }

    .promo-page-section-title {
        font-size: 20px;
    }

    .promo-page-date-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .promo-page-card-title {
        font-size: 16px;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    /* Ensure aspect ratio works well on mobile */
    .promo-page-card-image {
        aspect-ratio: 16 / 9;
        min-height: 120px; /* Minimum height for very small screens */
    }

    .promo-page-card-content {
        padding: 12px 16px 16px 16px;
    }

    .promo-page-wondr-title {
        font-size: 24px;
    }

    .promo-page-wondr-description {
        font-size: 16px;
    }

    .promo-search-empty-state {
        padding: 50px 0;
    }

    .search-empty-state-content {
        padding: 50px 25px;
    }

    .empty-state-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .promo-page-hero-section {
        min-height: 280px;
    }

    .promo-page-hero-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .promo-page-hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .promo-page-hero-search {
        flex-direction: column;
        gap: 8px;
    }

    .promo-page-hero-search-container {
        min-width: 250px;
    }

    .promo-page-hero-search-input {
        padding: 10px 14px;
        font-size: 13px;
    }

    .promo-page-hero-search-btn {
        width: 36px;
        height: 36px;
    }

    .promo-page-hero-cta-btn {
        padding: 8px 16px;
        font-size: 10px;
    }

    .promo-page-filter-tabs {
        padding: 15px 0;
    }

    .promo-page-tab-container {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .promo-page-tab-item {
        padding: 8px 16px;
        font-size: 12px;
        flex: 1 1 auto;
        text-align: center;
        min-width: 0;
    }

    .promo-search-empty-state {
        padding: 40px 0;
    }

    .search-empty-state-content {
        padding: 40px 20px;
    }

    .empty-state-button {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Program & Promo Detail Page Styles */
.promo-detail-hero {
    background: #f8f9fa;
    padding: 40px 0 60px;
}

.promo-detail-breadcrumb {
    margin-bottom: 30px;
}

.promo-detail-breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.promo-detail-breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.promo-detail-breadcrumb-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.promo-detail-breadcrumb-link:hover {
    color: #FF6B35;
}

.promo-detail-breadcrumb-separator {
    color: #999;
}

.promo-detail-breadcrumb-current {
    color: #333;
    font-weight: 600;
}

.promo-detail-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.promo-detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.promo-detail-main {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.promo-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.promo-detail-content {
    padding: 40px;
}

.promo-detail-info {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.promo-detail-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.promo-detail-info-label {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

.promo-detail-info-value {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.promo-detail-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.promo-detail-description h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 30px 0 20px;
}

.promo-detail-description ul {
    margin: 20px 0;
    padding-left: 20px;
}

.promo-detail-description li {
    margin-bottom: 10px;
    color: #7d7d7d;
    line-height: 1.6;
}

.promo-detail-description p {
    margin-bottom: 20px;
}

.promo-detail-description strong {
    color: #333;
    font-weight: 800 !important;
}

.promo-detail-description table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.promo-detail-description table th,
.promo-detail-description table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e5e5e5;
}

.promo-detail-description table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.promo-detail-sidebar {
    position: sticky;
    top: 100px;
}

.promo-detail-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.promo-detail-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.promo-detail-qr {
    text-align: center;
}

.promo-detail-qr-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.promo-detail-qr-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.promo-detail-cta {
    text-align: center;
    margin-top: 20px;
}

.promo-detail-cta-btn {
    display: inline-block;
    width: 100%;
    padding: 15px 30px;
    background: #FF6B35;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.promo-detail-cta-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.promo-detail-related {
    background: #f8f9fa;
    padding: 60px 0;
}

.promo-detail-related-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.promo-detail-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.promo-detail-related-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    position: relative;
}

.promo-detail-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.promo-detail-related-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.promo-detail-related-content {
    padding: 16px 20px 20px 20px;
}

.promo-detail-related-category {
    font-size: 12px;
    font-weight: 600;
    color: #FF6B35;
    text-transform: none;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.promo-detail-related-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 46px;
}

.promo-detail-related-date {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* Wondr App Section for Detail Page */
.promo-detail-wondr-section {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.promo-detail-wondr-pattern {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: url('../img/pattern_bg.svg') no-repeat;
    background-size: contain;
    opacity: 0.1;
}

.promo-detail-wondr-content {
    position: relative;
    z-index: 2;
}

.promo-detail-wondr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.promo-detail-wondr-text {
    color: white;
}

.promo-detail-wondr-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.promo-detail-wondr-logo {
    width: 120px;
    margin-bottom: 20px;
}

.promo-detail-wondr-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.95;
}

.promo-detail-wondr-stores {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.promo-detail-wondr-store-btn {
    display: inline-flex;
    align-items: center;
    background: black;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.promo-detail-wondr-store-btn:hover {
    background: #333;
    transform: translateY(-2px);
    text-decoration: none;
}

.promo-detail-wondr-store-btn img {
    height: 24px;
    margin-right: 10px;
}

.promo-detail-wondr-phone {
    position: relative;
    text-align: center;
}

.promo-detail-wondr-phone img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* Responsive Styles for Detail Page */
@media (max-width: 1199px) {
    .promo-detail-grid {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .promo-detail-title {
        font-size: 36px;
    }

    .promo-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promo-detail-sidebar {
        position: static;
    }

    .promo-detail-wondr-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .promo-detail-wondr-stores {
        justify-content: center;
    }

    .promo-detail-wondr-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .promo-detail-hero {
        padding: 30px 0 40px;
    }

    .promo-detail-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .promo-detail-image {
        height: 250px;
    }

    .promo-detail-content {
        padding: 30px 20px;
    }

    .promo-detail-info {
        flex-direction: column;
        gap: 15px;
    }

    .promo-detail-description h3 {
        font-size: 20px;
    }

    .promo-detail-card {
        padding: 20px;
    }

    .promo-detail-related {
        padding: 40px 0;
    }

    .promo-detail-related-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .promo-detail-related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-detail-wondr-section {
        padding: 60px 0;
    }

    .promo-detail-wondr-phone img {
        max-width: 250px;
    }
}

@media (max-width: 575px) {
    .promo-detail-title {
        font-size: 24px;
    }

    .promo-detail-breadcrumb-item {
        font-size: 13px;
    }

    .promo-detail-description {
        font-size: 15px;
    }

    .promo-detail-wondr-title {
        font-size: 24px;
    }

    .promo-detail-wondr-description {
        font-size: 16px;
    }
}

/* Colors */

.accent-color {
    color: #FF8300 !important;
}

.accent-color-2 {
    color: #0BD5DD !important;
}

.accent-color-3 {
    color: rgb(153, 125, 218) !important;
}

.accent-color-4 {
    color: #00FFE0 !important;
}

.accent-color-background {
    background-color: #FF8300 !important;
}

.accent-color-background-fade {
    background-color: rgba(24, 171, 181, .19) !important;
}

.accent-color-background-2 {
    background-color: #0BD5DD !important;
}

.accent-color-background-3 {
    background-color: rgb(153, 125, 218) !important;
}

.accent-color-background-4 {
    background-color: #00FFE0 !important;
}

.accent-color-background-5 {
    background-color: #DFF058 !important;
}


.white {
    background-color: #fff !important;
}

.white-text {
    color: #fff !important;
}

.grey-text {
    color: #afafaf !important;
}

.grey-text-1 {
    color: #919191 !important;
}

.grey-text-2 {
    color: #616161 !important;
}

.grey-text-3 {
    color: #424242 !important;
}

.grey-text-4 {
    color: #181818 !important;
}

.bg-gradient {
    box-shadow: -2px 9px 60px rgba(255, 131, 0, 0.56) !important;
    background: #18ABB5 !important;
    background-image: linear-gradient(45deg, #FF8300 0%, #FF8300 55%, #FFAE51 90%) !important;
    background-image: -webkit-linear-gradient(45deg, #FF8300 0%, #FF8300 55%, #FFAE51 90%) !important;
    background-image: -o-linear-gradient(45deg, #FF8300 0%, #FF8300 55%, #FFAE51 90%) !important;
    background-position: 100% 0 !important;
    background-size: 200% 200% !important;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
}


.bg-gradient-3 {
    background: #A28BD8 !important;
    background-image: linear-gradient(-90deg, #C5B9E1 0%, #A28BD8 50%) !important;
    background-image: -webkit-linear-gradient(-90deg, #C5B9E1 0%, #A28BD8 50%) !important;
    background-image: -o-linear-gradient(-90deg, #C5B9E1 0%, #A28BD8 50%) !important;
    background-position: 100% 0 !important;
    background-size: 200% 200% !important;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
}

.bg-gradient-4 {
    background: #1BA09F !important;
    background-image: linear-gradient(-90deg, #85EAEA 0%, #1BA09F 50%) !important;
    background-image: -webkit-linear-gradient(-90deg, #85EAEA 0%, #1BA09F 50%) !important;
    background-image: -o-linear-gradient(-90deg, #85EAEA 0%, #1BA09F 50%) !important;
    background-position: 100% 0 !important;
    background-size: 200% 200% !important;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
}

.bg-gradient:hover {
    box-shadow: 0 0px 0px 0 rgba(0, 40, 120, 0) !important;
    background-position: 0 0 !important;
}

@font-face {
    font-family: 'Wondr';
    src: url(../fonts/TT_DemiBold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: 'Wondr';
    src: url(../fonts/TT_Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: 'Wondr';
    src: url(../fonts/TT_Medium.ttf);
    font-weight: 400;
}

/* Fonts */

.font-bold {
    font-family: 'Wondr', sans-serif !important;
    font-weight: 700;
}

.font-semibold {
    font-family: 'Wondr', sans-serif !important;
    font-weight: 600;
}

.font-regular {
    font-family: 'Wondr', sans-serif !important;
    font-weight: 400;
}


/* Shadows */

::-webkit-scrollbar {
    width: 12px;
    border-radius: 10px;
}

.z-depth-0 {
    box-shadow: none;
    transition: 0.3s all ease;
}

.z-depth-12 {
    box-shadow: 0 0px 24px 0 rgba(0, 0, 0, 0.06), 0 1px 0px 0 rgba(0, 0, 0, 0.02);
    transition: 0.3s all ease;
}

.z-depth-13 {
    box-shadow: 0 20px 50px 0 rgba(29, 65, 98, .2);
    transition: 0.3s all ease;
}

.z-depth-14 {
    box-shadow: 0 16px 16px rgba(0, 0, 0, .1);
    transition: 0.3s all ease;
}

.z-depth-15 {
    box-shadow: 0 5px 5px 0 rgba(154, 160, 185, .05), 0 5px 30px 0 rgba(166, 173, 201, .22);
    transition: 0.3s all ease;
}

.z-depth-16 {
    box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.05);
    transition: 0.3s all ease;
}

.hoverable:hover {
    box-shadow: 0 20px 50px 0 rgba(29, 65, 98, .2);
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #eee;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: 0 20px 50px 0 rgba(29, 65, 98, .2);
    box-shadow: 0 20px 50px 0 rgba(29, 65, 98, .2);
    background-color: #929292;
}


/* Others */

.transisi {
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

/* KPR & KKB Empty State */
.kpr-kkb-empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(255, 131, 0, 0.03) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 20px;
    border: 2px dashed rgba(255, 131, 0, 0.15);
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.kpr-kkb-empty-state::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 131, 0, 0.02) 0%, transparent 70%);
    animation: gentlePulse 6s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.kpr-kkb-empty-state .empty-state-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.kpr-kkb-empty-state .empty-state-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.kpr-kkb-empty-state .empty-state-icon {
    font-size: 80px;
    animation: gentleBounce 3s ease-in-out infinite;
    display: block;
}

@keyframes gentleBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

.kpr-kkb-empty-state .empty-state-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.kpr-kkb-empty-state .sparkle {
    position: absolute;
    font-size: 16px;
    animation: sparkleFloat 4s ease-in-out infinite;
}

.kpr-kkb-empty-state .sparkle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.kpr-kkb-empty-state .sparkle-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.kpr-kkb-empty-state .sparkle-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 3s;
}

@keyframes sparkleFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.4; }
    25% { transform: translateY(-10px) scale(1.1); opacity: 0.8; }
    50% { transform: translateY(-5px) scale(0.9); opacity: 1; }
    75% { transform: translateY(-15px) scale(1.05); opacity: 0.6; }
}

.kpr-kkb-empty-state .empty-state-title {
    font-size: 28px;
    color: #FF8300;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(255, 131, 0, 0.1);
}

.kpr-kkb-empty-state .empty-state-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

.kpr-kkb-empty-state .empty-state-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.kpr-kkb-empty-state .decoration-line {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, transparent, #FF8300, transparent);
    border-radius: 1px;
}

.kpr-kkb-empty-state .decoration-dot-center {
    font-size: 20px;
    animation: gemShine 2s ease-in-out infinite;
}

@keyframes gemShine {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .kpr-kkb-empty-state {
        min-height: 280px;
        padding: 40px 15px;
        margin: 15px 0;
        border-radius: 15px;
    }

    .kpr-kkb-empty-state .empty-state-icon {
        font-size: 64px;
    }

    .kpr-kkb-empty-state .empty-state-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .kpr-kkb-empty-state .empty-state-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .kpr-kkb-empty-state .sparkle {
        font-size: 14px;
    }

    .kpr-kkb-empty-state .decoration-line {
        width: 40px;
    }

    .kpr-kkb-empty-state .decoration-dot-center {
        font-size: 18px;
    }
}

/* Tenant Data Empty State - Same styling as tenant-empty-state but separate class */
.tenant-data-empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 2px dashed rgba(255, 131, 0, 0.3);
    margin: 20px 0;
}

@media only screen and (max-width: 1200px) {
    .tenant-data-empty-state {
        padding: 60px 30px;
    }
}

@media only screen and (max-width: 960px) {
    .tenant-data-empty-state {
        padding: 50px 25px;
    }
}

@media only screen and (max-width: 600px) {
    .tenant-data-empty-state {
        padding: 40px 20px;
    }
}

.btn-minimal {
    border-radius: 30px;
    text-transform: capitalize;
    line-height: 54px;
    transform: scale(0.95);
    font-size: 18px;
    letter-spacing: -0.01rem;
    color: #000;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.btn-minimal:hover {
    background-color: #fff;
    color: #000 !important;
    box-shadow: none;
}


.form-looks {
    background-color: #f5f5f5;
    border: none;
    border-radius: 6px;
    transition: 0.3s all ease;
}

.form-looks:focus {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0px 24px 0 rgba(0, 0, 0, 0.06), 0 1px 0px 0 rgba(0, 0, 0, 0.02);
}

.side-nav-link {
    border-radius: 12px !important;
    padding: 15px 15px 15px 15px !important;
    color: #616161;
}

.side-nav-link:hover {
    background-color: #eee;
}

.pulse {
    overflow: initial;
    position: relative;
}

.pulse::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    -webkit-transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, transform .3s;
    transition: opacity .3s, transform .3s, -webkit-transform .3s;
    -webkit-animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: -1;
}

@-webkit-keyframes pulse-animation {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

@keyframes pulse-animation {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}


/* Animation */

@-webkit-keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


.card-photo {
    height: 40px;
    background-size: cover;
    background-position: center;
    width: 100%;
    border-radius: 20px;
    display: inline-block;
}

.hide {
    display: none !important;
}

.uk-navbar-item,
.uk-navbar-nav > li > a,
.uk-navbar-toggle {
    padding: 0 20px;
}

.border-button {
    background-color: #fff !important;
    border: 1px solid #ddd !important;
    margin-right: 10px;
}

.uk-animation-fade {
    transition: opacity 0.2s;
    animation-duration: 0.4s;
}

.banner {
    background-size: cover;
    background-position: center;
    background-image: url("../img/banner_background_3.png");
    height: 100vh;
}

@media only screen and (max-width: 600px) {
    .banner {
        background-image: url("../img/mobile_kv.jpeg");
        height: 700px;
    }
}

.banner-side-page {
    background-size: cover;
    background-position: center;
    padding-top: 15%;
    padding-bottom: 10%;
    margin-top: -125px
}

@media only screen and (max-width: 600px) {
    .banner-side-page {
        padding-top: 200px;
        padding-bottom: 10%;
        margin-top: -125px
    }
}

.banner-header {
    line-height: 1.3;
    font-size: 60px;
}

@media only screen and (max-width: 600px) {
    .banner-header {
        line-height: 1.3;
        font-size: 24px;
        padding-right: 10px;
        padding-left: 10px;
    }
}

.banner-article {
    font-size: 17px;
    line-height: 40px;
    margin-top: 0px;
}

@media only screen and (max-width: 600px) {
    .banner-article {
        line-height: 30px;
        font-size: 14px;
        margin-top: -15px;
    }
}

.banner-article-2 {
    font-size: 17px;
    line-height: 40px;
    margin-top: 0px;
}

@media only screen and (max-width: 600px) {
    .banner-article-2 {
        line-height: 30px;
        font-size: 14px;
        margin-top: -15px;
    }
}

.kpr-image {
    width: 100%;
    height: 200px;
    border-radius: 30px;
}

@media only screen and (max-width: 600px) {
    .kpr-image {
        height: 150px;
    }
}

.tentang-article {
    font-size: 18px;
    line-height: 40px;
    margin-top: 0px;
}

@media only screen and (max-width: 600px) {
    .tentang-article {
        line-height: 30px;
        font-size: 14px;
        margin-top: -15px;
    }
}

.uk-grid-banner {
    margin-top: 120px;
}

.uk-grid-section {
    margin-top: 100px;
}

@media only screen and (max-width: 600px) {
    .uk-grid-banner {
        margin-top: 50px;
    }
}

.uk-container-mobile-space {
    margin-bottom: 100px;
}

@media only screen and (max-width: 600px) {
    .uk-container-mobile-space {
        padding-left: 30px;
        padding-right: 30px;
        margin-bottom: 40px;
        margin-top: 20px;
    }
}

.uk-container-mobile-space-brosur {
    margin-bottom: 50px;
}

@media only screen and (max-width: 600px) {
    .uk-container-mobile-space-brosur {
        padding-left: 30px;
        padding-right: 30px;
        margin-bottom: 40px;
        margin-top: 20px;
    }
}

.button-play-popup {
    height: 30px;
    width: 30px;
}

@media only screen and (max-width: 600px) {
    .button-play-popup {
        height: 20px;
        width: 20px;
    }
}

.page-title {
    font-size: 35px;
}

@media only screen and (max-width: 600px) {
    .page-title {
        font-size: 27px;
    }
}

.page-article {
    font-size: 19px;
    line-height: 2;
}

@media only screen and (max-width: 600px) {
    .page-article {
        font-size: 16px;
        line-height: 2;
    }
}

.header-p {
    font-size: 26px;
}

@media only screen and (max-width: 600px) {
    .header-p {
        font-size: 23px;
    }
}

.header-pic {
    height: 60px;
    margin-right: 20px;
}

@media only screen and (max-width: 600px) {
    .header-pic {
        height: 40px;
        margin-right: 10px;
    }
}


.uk-button-custom {
    font-size: 0.8rem;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
    border: none;
    letter-spacing: 0.14em;
}

.uk-logo img {
    height: 55px;
    margin-right: 10px;
    transition: 0.3s all ease-in-out;
}

@media only screen and (max-width: 600px) {
    .uk-logo img {
        height: 45px;
    }
}

.uk-dotnav > .uk-active > * {
    background-color: #5777ba;
    border-color: #5777ba;
}

.uk-search-default .uk-search-input {
    height: 60px;
    padding-left: 25px;
    border-radius: 12px;
    border: none;
}

@media only screen and (max-width: 600px) {
    .uk-search-default .uk-search-input {
        height: 45px;
    }
}

.uk-search-default .uk-search-icon {
    width: 65px;
    color: white;
    background: #18ABB5 !important;
    background-image: linear-gradient(45deg, #FF8300 0%, #FF8300 55%, #FFAE51 90%) !important;
    background-image: -webkit-linear-gradient(45deg, #FF8300 0%, #FF8300 55%, #FFAE51 90%) !important;
    background-image: -o-linear-gradient(45deg, #FF8300 0%, #FF8300 55%, #FFAE51 90%) !important;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.uk-search-default .uk-search-input:focus {
    border-color: #5777ba;
}

.uk-subnav-pill > .uk-active > a {
    background-color: rgba(24, 171, 181, 0.19);
    border-radius: 30px;
    font-size: 17px;
    color: #18ABB5;
    padding: 10px 25px;
}

@media only screen and (max-width: 600px) {
    .uk-subnav-pill > .uk-active > a {
        font-size: 13px;
        padding: 10px 25px;
    }
}

.uk-subnav-pill > * > :first-child {
    padding: 10px 25px;
    background-color: #eee;
    font-size: 17px;
    color: #7d7d7d;
    border-radius: 30px;
}

@media only screen and (max-width: 600px) {
    .uk-subnav-pill > * > :first-child {
        font-size: 13px;
        padding: 10px 25px;
    }
}

.uk-subnav > * > :first-child {
    text-transform: capitalize;
}

.uk-subnav > * {
    margin-top: 30px;
}

.uk-subnav {
    justify-content: center;
}

.bg-sign-in {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    background-size: cover;
    background-position: center;
}

.pad-small {
    padding-left: 80px;
    padding-right: 80px;
}

@media only screen and (max-width: 600px) {
    .pad-small {
        padding-right: 0px;
        padding-left: 0px;
    }
}

.login-side {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media only screen and (max-width: 600px) {
    .login-side {
        padding-top: 70px;
        padding-bottom: 50px;
    }
}

.error-msg {
    margin: 20px 0px;
    font-size: 15px;
}

.sidenav {
    width: 300px !important;
    position: fixed;
    top: 0px;
    bottom: 0;
    box-sizing: border-box;
    overflow: auto;
    background-image: url("~/assets/sidenav.svg");
    background-size: cover;
    background-position: center;
}

.profile-pic {
    height: 40px;
    width: 40px;
    border-radius: 40px;
    margin-right: 10px;
    border: 3px solid #fff;
}

.side-nav-word {
    color: #000;
    letter-spacing: 1px;
    font-weight: 500;
}


.main-body {
    margin-left: 300px;
}

@media only screen and (max-width: 600px) {
    .main-body {
        margin-left: 0px;
    }
}

.count-badge {
    padding: 12px;
    color: white !important;
}

.custom-forms {
    height: 45px;
    font-size: 14px;
    border-radius: 6px;
}

.ck-rounded-corners .ck.ck-editor__top .ck-sticky-panel .ck-toolbar,
.ck.ck-editor__top .ck-sticky-panel .ck-toolbar.ck-rounded-corners {
    border-top-left-radius: 6px !important;
    border-top-right-radius: 6px !important;
}

.ck-rounded-corners .ck.ck-editor__main > .ck-editor__editable,
.ck.ck-editor__main > .ck-editor__editable.ck-rounded-corners {
    border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.uk-button-primary {
    background-color: #16B3AC !important;
    border-radius: 6px;
}

.uk-button-default {
    border-radius: 6px;
}

.uk-modal-footer {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.uk-modal-dialog {
    border-radius: 12px;
}

.preview-images {
    width: 70px;
    height: 40px;
    border: 1px solid #ddd;
    background-position: center;
    border-radius: 6px;
    margin-right: 5px;
}

.preview-image {
    width: 70px;
    height: 40px;
    border: 1px solid #ddd;
    background-position: center;
    border-radius: 6px;
    margin-right: 5px;
}

.preview-image-detail {
    width: 120px;
    height: 70px;
    border: 1px solid #ddd;
    background-position: center;
    border-radius: 12px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.promosi-image-detail {
    width: 70px;
    height: 70px;
    border: 1px solid #ddd;
    background-position: center;
    border-radius: 12px;
    margin-right: 10px;
    margin-bottom: 10px;
}


.uk-slidenav-previous {
    background-color: rgba(24, 171, 181, 0.19);
    border-radius: 30px;
    color: #18ABB5 !important;
    padding: 10px 15px;
}

.uk-slidenav-next {
    background-color: rgba(24, 171, 181, 0.19);
    border-radius: 30px;
    color: #18ABB5 !important;
    padding: 10px 15px;
}


@media only screen and (max-width: 600px) {
    .before-day-text {
        font-size: 14px;
    }
}


@media only screen and (max-width: 600px) {
    .contact-icon {
        height: 30px;
    }
}

.kegiatan-photo {
    height: 400px;
}

@media only screen and (max-width: 600px) {
    .kegiatan-photo {
        height: 200px;
    }
}

@media only screen and (min-width: 800px) {
    .pengurus-section {
        margin-left: 30px;
        margin-right: 30px;
    }
}

.pengurus-image {
    height: 200px;
}

@media only screen and (max-width: 600px) {
    .pengurus-image {
        height: 100px;
    }
}

.pengurus-header {
    font-size: 16px;
}

@media only screen and (max-width: 600px) {
    .pengurus-header {
        font-size: 13px;
    }
}


/* Section 4: Promo Kredit Styles */
.promo-kredit-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

/* Property Loan Section */
.property-loan-section {
    position: relative;
    padding: 80px 0;
    background: #F8F9FA;
    overflow: hidden;
}

.property-loan-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -50%;
    width: 1200px;
    height: 140%;
    background: url('../img/eclipse.svg') no-repeat center center;
    background-size: contain;
    z-index: 0;
}

.property-loan-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -5%;
    width: 250px;
    height: 250px;
    background: url('../img/Ellipse3.svg') no-repeat center center;
    background-size: contain;
    z-index: 0;
}

/* Vehicle Loan Section */
.vehicle-loan-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #F5F0FF 0%, #FAF5FF 50%, #FFFFFF 100%);
    overflow: hidden;
}

.vehicle-loan-section::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: url('../img/Ellipse4.svg') no-repeat center center;
    background-size: contain;
    z-index: 0;
}

/* Section Headers */
.section-header-container {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
    text-align: left;
}

.section-main-title {
    font-size: 40px;
    color: #181818;
    margin-bottom: 2px;
    line-height: 1.2;
}

.section-sub-title {
    font-size: 40px;
    line-height: 1.0;
    margin-bottom: 0;
    font-weight: 700;
    color: #FF8300;
    margin-left: 20px;
}

@media only screen and (max-width: 768px) {
    .section-main-title,
    .section-sub-title {
        font-size: 32px;
    }

    /* Mobile container adjustment */
    .property-loan-section .hero-container,
    .vehicle-loan-section .hero-container {
        padding-left: 20px;
        padding-right: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Mobile property cards - Match KPR exactly */
    .property-card {
        height: auto;
        max-width: 160px;
        margin: 0 5px;
    }

    .property-image {
        height: 140px;
    }

    .property-details {
        padding: 12px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .property-title {
        font-size: 14px;
        margin-bottom: 6px;
        line-height: 1.3;
        color: #181818;
        font-weight: 600;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .property-location {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 12px;
    }

    .location-text {
        font-size: 12px;
        color: #7d7d7d;
        font-weight: 600;
    }

    .location-icon {
        width: 16px;
        height: 16px;
        color: #7d7d7d;
    }

    .developer-logo {
        top: 8px;
        right: 8px;
        padding: 4px;
        background: white;
        border-radius: 8px;
        box-shadow: none;
    }

    .developer-logo img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

    .property-price {
        margin-top: auto;
    }

    .price-label {
        font-size: 10px;
        color: #616161;
        margin-bottom: 4px;
        display: block;
    }

    .price-value {
        font-size: 14px !important;
        color: #FF8300;
        font-weight: bold;
        line-height: 1.2;
        margin-bottom: 2px !important;
    }

    .installment-info {
        font-size: 11px;
        color: #616161;
        line-height: 1.2;
    }

    .location-icon {
        width: 12px;
        height: 12px;
        margin-right: 4px;
    }

    .property-location {
        margin-bottom: 10px;
    }

    .price-value {
        font-size: 14px !important;
        margin-bottom: 10px !important;
        line-height: 0.9;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .price-label,
    .installment-info {
        font-size: 9px;
        line-height: 1.1;
    }

    /* Mobile eclipse adjustments */
    .property-loan-section::before {
        width: 300px;
        height: 300px;
        top: -10%;
        left: -50%;
        opacity: 0.3;
    }

    .property-loan-section::after {
        width: 120px;
        height: 120px;
        bottom: -10%;
        right: -10%;
        opacity: 0.5;
    }

    /* Mobile slider margin fixes */
    .property-loan-section .uk-slider-items {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .property-loan-section .uk-slider-items > li {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .property-loan-section .uk-slider-container {
        padding: 0 !important;
    }

    /* Mobile vehicle section adjustments */
    .vehicle-loan-section .uk-slider-items {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .vehicle-loan-section .uk-slider-items > li {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .vehicle-loan-section .uk-slider-container {
        padding: 0 !important;
    }

    /* Mobile vehicle eclipse adjustments */
    .vehicle-loan-section::before {
        width: 120px;
        height: 120px;
        bottom: -10%;
        left: -10%;
        opacity: 0.5;
    }
}

@media only screen and (max-width: 480px) {
    .section-main-title,
    .section-sub-title {
        font-size: 24px;
    }

    /* Very small mobile adjustments */
    .property-card {
        max-width: 140px;
        height: 250px;
    }

    .property-image {
        height: 90px;
    }

    .property-title {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .location-text {
        font-size: 9px;
    }

    .location-icon {
        width: 10px;
        height: 10px;
        margin-right: 3px;
    }

    /* Mobile developer logo adjustments */
    .developer-logo {
        width: 40px;
        height: 40px;
        padding: 4px;
        bottom: 8px;
        right: 8px;
        border-radius: 6px;
    }

    .price-value {
        font-size: 4px;
        line-height: 0.9;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .price-label,
    .installment-info {
        font-size: 8px;
    }

    .property-loan-container-custom-mobile {
        padding-left: 10px !important;
    }
}

/* Carousel Containers */
.property-carousel-container,
.vehicle-carousel-container {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    padding-left: 0px !important;
    padding-bottom: 10px;
}

/* Property Slider Items Gap */
.property-loan-section .uk-slider-items {
    margin-left: -7.5px !important;
    margin-right: -7.5px !important;
    padding: 0 !important;
}

.property-loan-section .uk-slider-items > li {
    padding-left: 7.5px !important;
    padding-right: 7.5px !important;
    padding-bottom: 5px !important;
}

.property-loan-section .uk-slider-container {
    padding: 0 7.5px !important;
}

/* Vehicle Slider Items Gap - same as property section */
.vehicle-loan-section .uk-slider-items {
    margin-left: -7.5px !important;
    margin-right: -7.5px !important;
    padding: 0 !important;
}

.vehicle-loan-section .uk-slider-items > li {
    padding-left: 7.5px !important;
    padding-right: 7.5px !important;
}

.vehicle-loan-section .uk-slider-container {
    padding: 0 7.5px !important;
}

/* Property Cards */
.property-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: none;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 300px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 280px;
}

.property-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.15);
}

.property-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

/* Developer Logo */
.developer-logo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.developer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.property-details {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.property-title {
    font-size: 18px;
    color: #181818;
    margin-bottom: 12px;
    line-height: 1.3;
}

.property-location {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.location-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.orange-dot {
    background-color: #FF8300;
}

.location-icon {
    margin-right: 8px;
    color: #7d7d7d !important;
    width: 16px;
    height: 16px;
}

.location-icon svg {
    fill: #7d7d7d !important;
    stroke: #7d7d7d !important;
}

.location-text {
    font-size: 14px;
    color: #7d7d7d;
    font-weight: 600;
}

.property-price {
    margin-top: auto;
}

.price-label {
    font-size: 12px;
    color: #919191;
    display: block;
    margin-bottom: 4px;
}

.price-value {
    font-size: 20px;
    color: #181818;
    margin-bottom: 4px;
}

.installment-info {
    font-size: 12px;
    color: #616161;
}

/* Vehicle Cards */
.vehicle-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: none;
    padding: 0;
    margin: 0 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 320px;
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 280px;
}

.vehicle-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.15);
}

.vehicle-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vehicle-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}


.vehicle-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vehicle-title {
    font-size: 18px;
    color: #181818;
    margin-bottom: 16px;
    line-height: 1.3;
}

.vehicle-price {
    margin-top: auto;
}

/* Navigation Arrows */
.property-nav,
.vehicle-nav {
    background: rgba(255, 131, 0, 0.1) !important;
    color: #FF8300 !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.property-nav:hover,
.vehicle-nav:hover {
    background: rgba(255, 131, 0, 0.2) !important;
    transform: scale(1.1);
}

.property-nav-prev {
    left: -25px !important;
}

.property-nav-next {
    right: -25px !important;
}

.vehicle-nav-prev {
    left: -25px !important;
}

.vehicle-nav-next {
    right: -25px !important;
}

/* See More Button */
.section-cta {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 40px;
}

.see-more-button {
    background: #FFFFFF !important;
    color: #181818 !important;
    border: 2px solid #E9ECEF !important;
    border-radius: 50px !important;
    padding: 16px 40px !important;
    font-size: 16px !important;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.see-more-button:hover {
    background: #FF8300 !important;
    color: #FFFFFF !important;
    border-color: #FF8300 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 131, 0, 0.3);
}

/* Decorative Elements */
.property-decorations,
.vehicle-decorations {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.property-decorations {
    top: 10%;
    right: -100px;
}

.vehicle-decorations {
    bottom: 10%;
    left: -100px;
}


@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive Design */
@media only screen and (max-width: 1200px) {
    .property-decorations {
        right: -150px;
    }

    .vehicle-decorations {
        left: -150px;
    }
}

@media only screen and (max-width: 768px) {
    .property-loan-section {
        padding: 60px 0;
    }

    .vehicle-loan-section {
        padding: 60px 0;
    }

    .section-header-container {
        margin-bottom: 30px;
        text-align: center;
    }

    .property-card,
    .vehicle-card {
        margin: 5px;
        height: auto;
        min-height: 300px;
    }

    .property-details,
    .vehicle-details {
        padding: 16px;
    }

    .property-title,
    .vehicle-title {
        font-size: 16px;
    }

    .price-value {
        font-size: 18px;
    }

    .property-nav,
    .vehicle-nav {
        display: none !important;
    }


    .property-decorations {
        top: 20%;
        right: -60px;
    }

    .vehicle-decorations {
        bottom: 20%;
        left: -60px;
    }
}

@media only screen and (max-width: 480px) {
    .property-loan-section {
        padding: 40px 0;
    }

    .vehicle-loan-section {
        padding: 40px 0;
    }

    .property-image,
    .vehicle-image {
        height: 140px;
    }

    .vehicle-image {
        padding: 15px;
    }

    .property-card,
    .vehicle-card {
        min-height: 280px;
    }

    .see-more-button {
        padding: 14px 32px !important;
        font-size: 14px !important;
    }

    .decorative-ellipse {
        width: 80px;
        height: 80px;
    }
}

/* UIKit Slider Overrides for Section 4 */
.vehicle-carousel-container .uk-slider-items {
    padding: 0 20px;
}

.vehicle-carousel-container .uk-slider-items > li {
    padding: 0 0 5px 0;
}

/* Smooth scrolling for sliders */
.promo-kredit-section .uk-slider-container {
    scroll-behavior: smooth;
}

/* Animation Classes for Section 4 */
.section-header-container,
.property-card,
.vehicle-card,
.brand-card-home,
.see-more-button {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.section-header-container.animate,
.property-card.animate,
.vehicle-card.animate,
.brand-card-home.animate,
.see-more-button.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for cards */
.property-card.animate {
    transition-delay: 0.1s;
}

.vehicle-card.animate {
    transition-delay: 0.1s;
}

.brand-card-home.animate {
    transition-delay: 0.1s;
}

.property-card:nth-child(2).animate {
    transition-delay: 0.2s;
}

.property-card:nth-child(3).animate {
    transition-delay: 0.3s;
}

.property-card:nth-child(4).animate {
    transition-delay: 0.4s;
}

.property-card:nth-child(5).animate {
    transition-delay: 0.5s;
}

.vehicle-card:nth-child(2).animate {
    transition-delay: 0.2s;
}

.vehicle-card:nth-child(3).animate {
    transition-delay: 0.3s;
}

.vehicle-card:nth-child(4).animate {
    transition-delay: 0.4s;
}

/* Brand card staggered animation */
.brand-slide:nth-child(1) .brand-card-home.animate {
    transition-delay: 0.1s;
}

.brand-slide:nth-child(2) .brand-card-home.animate {
    transition-delay: 0.2s;
}

.brand-slide:nth-child(3) .brand-card-home.animate {
    transition-delay: 0.3s;
}

.brand-slide:nth-child(4) .brand-card-home.animate {
    transition-delay: 0.4s;
}

.brand-slide:nth-child(5) .brand-card-home.animate {
    transition-delay: 0.5s;
}

.vehicle-card:nth-child(5).animate {
    transition-delay: 0.5s;
}


.uk-navbar-dropdown-nav > li {
    padding-top: 3px;
    padding-bottom: 3px;
}

.uk-navbar-dropdown-nav > li > a {
    color: #181818 !important;
    transition: 0.3s all ease;
}

.uk-navbar-dropdown-nav > li > a:hover {
    color: #16B3AC !important;
}

.uk-navbar-nav > li > a {
    color: #181818;
    transition: 0.3s all ease;
}

.uk-navbar-nav > li > a:hover {
    color: #16B3AC;
}


.transparent {
    background-color: transparent !important;
}

.section-header {
    font-size: 33px;
    line-height: 1.6;
}

@media only screen and (max-width: 600px) {
    .section-header {
        line-height: 1.3;
        font-size: 27px;
        margin-bottom: 40px;
    }
}

.section-header-griya {
    font-size: 33px;
    line-height: 1.6;
}

@media only screen and (max-width: 600px) {
    .section-header-griya {
        line-height: 1.3;
        font-size: 27px;
        padding-bottom: 40px;
    }
}


.section-header-kpr {
    font-size: 33px;
    line-height: 1.6;
}

@media only screen and (max-width: 600px) {
    .section-header-kpr {
        line-height: 1.3;
        font-size: 27px;
    }
}

.section-header-2 {
    font-size: 40px !important;
    line-height: 1.6;
}

@media only screen and (max-width: 600px) {
    .section-header-2 {
        line-height: 1.3;
        font-size: 35px
    }
}

.section-header-2-brosur {
    font-size: 60px !important;
    line-height: 1.2;
    margin-top: 140px;
    margin-bottom: 50px;
}

@media only screen and (max-width: 600px) {
    .section-header-2-brosur {
        line-height: 1.2;
        font-size: 35px !important;
        margin-top: -100px;
        margin-bottom: 50px;
    }
}

.section-header-2-cta {
    font-size: 60px !important;
    line-height: 1.2;
}

@media only screen and (max-width: 600px) {
    .section-header-2-cta {
        line-height: 1.2;
        font-size: 35px !important;
        margin-top: 0px;
        margin-bottom: 50px;
    }
}

.karir-header {
    font-size: 27px;
    line-height: 130%;
}

@media only screen and (max-width: 600px) {
    .karir-header {
        line-height: 1.3;
        font-size: 20px;
        margin-top: 20px;
    }
}


.product-header {
    font-size: 24px;
    line-height: 1.5;
}

@media only screen and (max-width: 600px) {
    .product-header {
        line-height: 1.3;
        font-size: 16px;
    }
}

.product-category {
    font-size: 17px;
    line-height: 1.3;
}

@media only screen and (max-width: 600px) {
    .product-category {
        font-size: 14px;
    }
}

.product-description {
    font-size: 15px;
    line-height: 1.8;
}

@media only screen and (max-width: 600px) {
    .product-description {
        font-size: 13px;
    }
}

.product-description-2 {
    font-size: 15px;
    line-height: 1.8;
    margin-top: -15px;
}

@media only screen and (max-width: 600px) {
    .product-description-2 {
        font-size: 13px;
    }
}

.product-subtitle {
    font-size: 17px;
    line-height: 1.8;
}

@media only screen and (max-width: 600px) {
    .product-subtitle {
        font-size: 14px;
    }
}

.sizes-badge {
    font-size: 15px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-right: 10px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 600px) {
    .sizes-badge {
        font-size: 13px;
        padding: 10px 20px;
        border: 1px solid #ddd;
        border-radius: 12px;
        margin-right: 10px;
    }
}

@media only screen and (max-width: 600px) {
    .ukuran-flex {
        margin-top: -20px;
    }
}

.more-button {
    font-size: 26px;
}

@media only screen and (max-width: 600px) {
    .more-button {
        font-size: 17px;
    }
}

.about-header {
    line-height: 55px;
    font-size: 35px;
}

@media only screen and (max-width: 600px) {
    .about-header {
        line-height: 1.8;
        font-size: 18px
    }
}


.apa-itu-stbm {
    margin-top: 150px;
}

@media only screen and (max-width: 600px) {
    .apa-itu-stbm {
        margin-top: 80px;
    }
}

.apa-itu-stbm-2 {
    margin-top: 150px;
}

@media only screen and (max-width: 600px) {
    .apa-itu-stbm-2 {
        margin-top: 20px;
    }
}

.apa-itu-stbm-3 {
    margin-top: 100px;
}

@media only screen and (max-width: 600px) {
    .apa-itu-stbm-3 {
        margin-top: 40px;
    }
}

.brosur {
    margin-top: 150px;
    padding-top: 40px;
    padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
    .brosur {
        margin-top: 80px;
    }
}

.brosur-2 {
    padding-top: 150px;
    padding-bottom: 110px;
    background-color: #FF8806;
}

@media only screen and (max-width: 600px) {
    .brosur-2 {
        padding-bottom: 310px;
    }
}

.brosur-3 {
    padding-top: 50px;
    padding-bottom: 110px;
    background-image: url('../img/guidebook_bg.png');
    background-position: center;
    background-size: cover
}

@media only screen and (max-width: 600px) {
    .brosur-3 {
        padding-top: 150px;
        background-image: url('../img/guidebook_bg_mobile.png');
        padding-bottom: 310px;
        text-align: center;
    }
}

.properti-top {
    margin-top: 70px;
}

@media only screen and (max-width: 600px) {
    .properti-top {
        margin-top: 20px;
    }
}

.wonder_bg {
    height: 150px;
}

@media only screen and (max-width: 600px) {
    .wonder_bg {
        height: 70px;
        margin-top: -100px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

.little-banner-host {
    margin-top: 50px;
}

@media only screen and (max-width: 600px) {
    .little-banner-host {
        margin-top: 10px;
    }
}

.download-button {
    height: 55px;
}

@media only screen and (max-width: 600px) {
    .download-button {
        height: 45px;
    }
}

.little-banner {
    height: 400px;
    border-radius: 30px;
}

@media only screen and (max-width: 600px) {
    .little-banner {
        height: 170px;
    }
}

.apa-itu-forsch {
    margin-top: 150px;
}

@media only screen and (max-width: 600px) {
    .apa-itu-forsch {
        margin-top: 80px;
    }
}

.apa-itu-forsch:before {
    content: url(../img/forsch_bg.svg);
    position: absolute;
    right: 0;
    margin-top: -100px;
    z-index: 2;
}

@media only screen and (max-width: 600px) {
    .apa-itu-forsch:before {
        content: "";
        background-image: url('../img/forsch_bg.svg');
        background-size: 100% 100%;
        display: inline-block;

        height: 280px;
        width: 113px;
        position: absolute;
        right: 0;
        margin-top: -50px;
        z-index: 2;
    }
}

.apa-itu-cmi {
    margin-top: 150px;
}

@media only screen and (max-width: 600px) {
    .apa-itu-cmi {
        margin-top: 80px;
    }
}

.apa-itu-cmi:before {
    content: url(../img/cmi_bg.svg);
    position: absolute;
    right: 0;
    margin-top: -100px;
    z-index: 2;
}

@media only screen and (max-width: 600px) {
    .apa-itu-cmi:before {
        content: "";
        background-image: url('../img/cmi_bg.svg');
        background-size: 100% 100%;
        display: inline-block;

        height: 280px;
        width: 113px;
        position: absolute;
        right: 0;
        margin-top: -50px;
        z-index: 2;
    }
}

.faq:before {
    content: url(../img/hiasan_kiri.svg);
    position: absolute;
    left: 0;
    margin-top: -100px;
    z-index: -1;
}

@media only screen and (max-width: 600px) {
    .faq:before {
        content: "";
        background-image: url('../img/hiasan_kiri.svg');
        background-size: 100% 100%;
        display: inline-block;

        height: 180px;
        width: 113px;
        position: absolute;
        left: 0;
        margin-top: -50px;
        z-index: -1;
    }
}

.faq-article {
    font-size: 17px;
}

@media only screen and (max-width: 600px) {
    .faq-article {
        font-size: 14px;
    }
}

.uk-accordion-title {
    font-size: 22px;
}

@media only screen and (max-width: 600px) {
    .uk-accordion-title {
        font-size: 16px;
    }
}

.uk-footer-list li {
    padding-top: 10px;
    padding-bottom: 10px;
}

.uk-footer-list-2 li {
    padding-top: 2px;
    padding-bottom: 2px;
}

.uk-footer-list li a {
    font-size: 17px;
}

.uk-footer-list-2 li a {
    font-size: 16px;
}

@media only screen and (max-width: 600px) {
    .uk-footer-list li a {
        font-size: 14px;
    }

    .uk-footer-list-2 li a {
        font-size: 14px;
    }
}

.kontak-card {
    background-image: url(../img/kontak_pattern.svg);
    padding: 30px 30px 70px 30px;
    border-radius: 15px;
    background-position: center;
    background-size: cover;
}

.footer {
    padding-bottom: 20px;
    padding-top: 90px;
    background-size: cover;
    background-position: center;
}

.martop-no-mobile {
    margin-top: 100px !important;
}

@media only screen and (max-width: 600px) {
    .martop-no-mobile {
        margin-top: 30px !important;
    }
}

.martop-no-mobile-2 {
    margin-top: 40px !important;
}

@media only screen and (max-width: 600px) {
    .martop-no-mobile-2 {
        margin-top: 20px !important;
    }
}

.martop-small-no-mobile {
    margin-top: 80px !important;
}

@media only screen and (max-width: 600px) {
    .martop-small-no-mobile {
        margin-top: 40px;
    }
}


.stbm-about {
    padding-top: 9%;
    padding-bottom: 3%;
    background-image: url('../img/sbtm_background.svg');
    background-position: center;
    background-size: cover
}

@media only screen and (max-width: 600px) {
    .stbm-about {
        padding-top: 12%;
        padding-bottom: 6%;
        background-image: url('../img/sbtm_background_mobile.svg');
    }
}

.panduan-image {
    height: 200px;
}

@media only screen and (max-width: 600px) {
    .panduan-image {
        height: 120px;
    }
}

.berita-detail-image {
    height: 400px;
}

@media only screen and (max-width: 600px) {
    .berita-detail-image {
        height: 200px;
    }
}

.panduan-title {
    font-size: 22px;
}

@media only screen and (max-width: 600px) {
    .panduan-title {
        font-size: 17px;
    }
}

.berita-title {
    font-size: 19px;
}

@media only screen and (max-width: 600px) {
    .berita-title {
        font-size: 15px;
    }
}

.berita-title-2 {
    font-size: 24px;
}

@media only screen and (max-width: 600px) {
    .berita-title-2 {
        font-size: 17px;
    }
}

.berita-subtitle {
    margin-top: 5px;
    font-size: 15px;
}

@media only screen and (max-width: 600px) {
    .berita-subtitle {
        font-size: 13px;
    }
}

.berita-subtitle-2 {
    margin-top: 5px;
    font-size: 16px;
}

@media only screen and (max-width: 600px) {
    .berita-subtitle-2 {
        font-size: 15px;
    }
}

.product-home-title {
    font-size: 16px;
}

@media only screen and (max-width: 600px) {
    .product-home-title {
        font-size: 13px;
    }
}

.product-home-price {
    font-size: 15px;
}

@media only screen and (max-width: 600px) {
    .product-home-price {
        font-size: 12px;
    }
}

.product-home-price-2 {
    font-size: 22px;
}

@media only screen and (max-width: 600px) {
    .product-home-price-2 {
        font-size: 17px;
    }
}

.product-home-price-3 {
    font-size: 15px;
}

.product-home-price-4 {
    font-size: 18px;
}

@media only screen and (max-width: 600px) {
    .product-home-price-4 {
        font-size: 15px;
    }
}

@media only screen and (max-width: 600px) {
    .product-home-price-3 {
        font-size: 14px;
    }
}

.product-home-subtitle {
    font-size: 13px;
    margin-top: -10px;
}

@media only screen and (max-width: 600px) {
    .product-home-subtitle {
        font-size: 12px;
        margin-top: 0;
    }
}

.product-home-subtitle-2 {
    font-size: 14px;
    margin-top: 15px;
}

@media only screen and (max-width: 600px) {
    .product-home-subtitle-2 {
        font-size: 13px;
        margin-top: 0;
    }
}

.berita-article {
    margin-top: 5px;
    margin-bottom: 5px;
}

@media only screen and (max-width: 600px) {
    .berita-article {
        font-size: 13px;
    }
}

.developer-margin {
    margin-left: 5%;
    margin-right: 5%;
}

@media only screen and (max-width: 960px) {
    .developer-margin {
        margin-left: 0;
        margin-right: 0;
    }
}

@media only screen and (max-width: 600px) {
    .developer-margin {
        margin-left: 0;
        margin-right: 0;
    }
}

@media only screen and (max-width: 600px) {
    .developer-margin-title {
        margin-top: 90px;
        font-size: 23px;
    }
}

.galeri-title {
    font-size: 20px;
}

@media only screen and (max-width: 600px) {
    .galeri-title {
        font-size: 14px;
    }
}

.galeri-stbm {
    padding-top: 0.1%;
}

.galeri-overlay {
    padding: 20px 20px;
}

@media only screen and (max-width: 600px) {
    .galeri-overlay {
        padding: 15px 15px;
    }
}

.galeri-image {
    height: 300px;
    width: 100%;
    border-radius: 20px;
}

@media only screen and (max-width: 600px) {
    .galeri-image {
        height: 200px;
    }
}

.galeri-image-2 {
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}

@media only screen and (max-width: 600px) {
    .galeri-image-2 {
        height: 150px;
    }
}

.video-stbm {
    padding-top: 8%;
    padding-bottom: 2%;
    background-image: url('../img/video_background.svg');
    background-position: center;
    background-size: cover
}

.yt-frame {
    height: 350px;
    border-radius: 30px;
}

@media only screen and (max-width: 600px) {
    .yt-frame {
        height: 200px;
    }
}

.menteri-stbm {
    padding-top: 1%;
    padding-bottom: 0%;
    background-image: url('../img/menteri_background.svg');
    background-position: center;
    background-size: cover;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
}

@media only screen and (max-width: 600px) {
    .menteri-stbm {
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
        background-image: url('../img/menteri_background_mobile.svg');
    }
}


.menteri-text {
    padding-top: 80px;
}

@media only screen and (max-width: 600px) {
    .menteri-text {
        padding-top: 20px;
    }

    .menteri-text > .section-header {
        line-height: 35px;
    }
}

.menteri-article {
    font-size: 20px;
    line-height: 40px;
}

@media only screen and (max-width: 600px) {
    .menteri-article {
        font-size: 15px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 600px) {
    .kontak-card {
        margin-left: 10px;
    }
}

.monev-footer {
    margin-top: 60px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 600px) {
    .monev-footer {
        margin-top: 60px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .zero-pad-mobile {
        padding-left: 0;
        padding-right: 0;
    }
}

.footer-contact-value {
    margin-top: 0px;
    font-size: 17px;
}

@media only screen and (max-width: 600px) {
    .footer-contact-title {
        font-size: 13px;
    }

    .footer-contact-value {
        font-size: 14px;
    }

    .copyright-text {
        font-size: 12px;
        text-align: center;
    }
}

.martop-non-homepage {
    margin-top: 100px;
    margin-bottom: 150px;
}

@media only screen and (max-width: 600px) {
    .martop-non-homepage {
        margin-top: 40px;
        margin-bottom: 100px;
    }
}

.martop-berita-detail {
    margin-top: 40px;
    margin-bottom: 150px;
}

@media only screen and (max-width: 600px) {
    .martop-berita-detail {
        margin-top: 10px;
        margin-bottom: 100px;
    }
}

.video_image {
    height: 150px;
}

@media only screen and (max-width: 600px) {
    .video_image {
        margin-top: -15px;
    }
}

.martop-non-homepage-about {
    margin-top: 100px;
    margin-bottom: 80px;
}

.sekilas-article {
    font-size: 19px;
    line-height: 34px;
}

@media only screen and (max-width: 600px) {
    .sekilas-article {
        font-size: 14px;
        line-height: 30px;
    }
}

.karir-article {
    font-size: 16px;
    line-height: 34px;
}

@media only screen and (max-width: 600px) {
    .karir-article {
        font-size: 14px;
        line-height: 30px;
    }
}

.tentang-stbm-about {
    margin-top: 100px;
}

@media only screen and (max-width: 600px) {
    .tentang-stbm-about {
        margin-top: 60px;
    }
}

.card-title {
    font-size: 17px;
}

@media only screen and (max-width: 600px) {
    .card-title {
        font-size: 14px;
    }
}

.card-article {
    font-size: 16px;
    line-height: 30px;
}

@media only screen and (max-width: 600px) {
    .card-article {
        font-size: 13px;
        line-height: 25px;
    }
}

.outcome-about {
    padding-top: 2%;
    padding-bottom: 2%;
    background-image: url('../img/outcome_background.svg');
    background-position: center;
    background-size: cover
}

@media only screen and (max-width: 600px) {
    .outcome-about {
        padding-top: 12%;
        padding-bottom: 20%;
        background-image: url('../img/sbtm_background_mobile.svg');
    }
}

.sekilas-header {
    font-size: 35px !important;
    line-height: 158%;
    margin-top: 70px;
}

@media only screen and (max-width: 600px) {
    .sekilas-header {
        margin-top: 10px;
        line-height: 1.3;
        font-size: 22px !important;
    }
}

.tentang-card {
    border-radius: 30px;
    padding: 30px;
}

@media only screen and (max-width: 600px) {
    .tentang-card {
        border-radius: 20px;
        padding: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .tentang-stbm-about {
        padding-bottom: 30px;
    }
}

.outcome-image {
    height: 400px;
    /*margin-top: 80px;*/
}

@media only screen and (max-width: 600px) {
    .outcome-image {
        height: 200px;
        margin-top: 20px;
    }

    .outcome-container {
        margin-left: 20px;
        margin-right: 20px;
    }
}

.outcome-header {
    font-size: 35px !important;
    line-height: 158%;
    margin-top: 100px;
}

@media only screen and (max-width: 600px) {
    .outcome-header {
        margin-top: 10px;
        line-height: 1.6;
        font-size: 22px !important;
    }
}

.strategi-container {
    margin-left: 80px;
    margin-right: 80px;
}

@media only screen and (max-width: 600px) {
    .strategi-container {
        margin-left: 0px;
        margin-right: 0px;
    }
}

.strategi-2-container {
    margin-left: 80px;
    margin-right: 80px;
    margin-top: 80px;
}

@media only screen and (max-width: 600px) {
    .strategi-2-container {
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 40px;
    }
}

.other-header {
    font-size: 28px;
    line-height: 158%;
}

@media only screen and (max-width: 600px) {
    .other-header {
        line-height: 1.3;
        font-size: 19px
    }
}

.spek-header {
    font-size: 20px;
    line-height: 158%;
}

@media only screen and (max-width: 600px) {
    .spek-header {
        line-height: 1.8;
        font-size: 16px;
    }
}

.icon-menu.avatar img {
    width: 37px;
    height: 37px;
}

.username {
    font-weight: 600;
    font-size: 15px;
    color: #181818;
    margin-left: 10px;
}

.dashboard-card {
    padding: 25px;
    width: 100%;
    background-image: url(../img/circle.svg);
    background-size: cover;
    background-position: center;
    border-radius: 16px;
}

.chart-card {
    padding: 25px 25px 0px 25px;
    width: 100%;
    background-color: #f8f8f8;
    border-radius: 16px;
}

.charthigh-card {
    padding: 25px 25px 0px 25px;
    width: 100%;
    background-image: url(../img/circle_high.svg);
    background-size: cover;
    background-position: center;
    border-radius: 16px;
}

.dashboard-context {
    font-size: 15px;
}

.dashboard-value-context {
    font-size: 15px;
    font-weight: 500;
}

.dashboard-list-value {
    font-weight: 600;
    color: #2E90FA !important;
}

.dashboard-title {
    font-size: 19px;
    margin-top: -15px;
}

.dashboard-value {
    margin-top: 10px;
    font-size: 28px;
    margin-bottom: 0px;
}

.dashboard-value-2 {
    margin-top: 10px;
    font-size: 34px;
    margin-bottom: 0px;
}

.raise-span {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0px;
    margin-top: 0px;
}

.positive-raise {
    color: #12B76A !important;
}

.negative-raise {
    color: #FF0000 !important;
}

.nav-link {
    font-weight: 500;
}

.nav-background {
    background: #fff;
}

.partners {
    padding-top: 80px;
}

.semititle {
    font-size: 24px;
}

.memilihtitle {
    font-size: 24px;
}

@media only screen and (max-width: 600px) {
    .memilihtitle {
        font-size: 17px;
    }
}

.direksi-title {
    font-size: 24px;
    margin-top: 30px;
}

@media only screen and (max-width: 600px) {
    .direksi-title {
        font-size: 13px;
        margin-top: 15px;
    }
}

.direksi-article {
    font-size: 17px;
    margin-top: -15px;
}

@media only screen and (max-width: 600px) {
    .direksi-article {
        font-size: 13px;
    }
}

.direksi-img {
    background-size: cover;
    background-position: center;
    height: 450px;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 30px;
}

@media only screen and (max-width: 600px) {
    .direksi-img {
        height: 200px;
    }
}

.milestone-img {
    height: 60px;
}

@media only screen and (max-width: 600px) {
    .milestone-img {
        height: 40px;
    }
}

.martop-tiny-no-mobile {
    margin-top: 15px;
}

@media only screen and (max-width: 600px) {
    .martop-tiny-no-mobile {
        margin-top: 0;
    }
}

.pad-small-mobile {
    padding: 30px !important;
}

@media only screen and (max-width: 600px) {
    .pad-small-mobile {
        padding: 20px !important;
    }
}

.memilihtitle-2 {
    font-size: 30px;
}

@media only screen and (max-width: 600px) {
    .memilihtitle-2 {
        font-size: 24px;
    }
}

.memiliharticle {
    font-size: 18px;
}

@media only screen and (max-width: 600px) {
    .memiliharticle {
        font-size: 14px;
    }
}


.sejarah-title {
    font-size: 40px;
    margin-top: -15px;
    margin-bottom: 0;
}

.sertifikasi-title {
    font-size: 20px;
}

@media only screen and (max-width: 600px) {
    .sertifikasi-title {
        font-size: 16px;
    }
}

@media only screen and (max-width: 600px) {
    .sejarah-title {
        font-size: 24px;
    }
}

.semititle-2 {
    font-size: 30px;
}

.testimoni-title {
    font-size: 26px;
    margin-top: 5px;
    font-style: italic;
    padding-bottom: 50px;
}

@media only screen and (max-width: 600px) {
    .testimoni-title {
        font-size: 16px;
        height: 80px;
    }
}

.testimoni-subtitle {
    margin-top: 20px;
    font-size: 20px;
}

@media only screen and (max-width: 600px) {
    .testimoni-subtitle {
        font-size: 14px;
        margin-top: 10px;
    }
}

.testimoni-article {
    margin-top: -10px;
}

@media only screen and (max-width: 600px) {
    .testimoni-article {
        font-size: 13px;
    }
}

.semiarticle {
    font-size: 18px;
}

.milestone-article {
    font-size: 18px;
}

@media only screen and (max-width: 600px) {
    .milestone-article {
        font-size: 14px;
    }
}

.card-testimoni {
    width: 100%;
    height: 300px;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px
}

@media only screen and (max-width: 600px) {
    .card-testimoni {
        height: 140px;
        border-radius: 150px;
    }
}

.quote-img {
    height: 40px;
    margin-right: 15px;
}

@media only screen and (max-width: 600px) {
    .quote-img {
        height: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .mobile-no-margin-top {
        margin-top: 0 !important;
    }
}

.btn-banner {
    letter-spacing: 1px;
    font-size: 1rem;
    border-radius: 100px;
    padding: 15px 50px;
    margin-top: 30px;
}

@media only screen and (max-width: 600px) {
    .btn-banner {
        font-size: 13px;
        padding: 5px 40px;
    }
}

.category-card {
    padding: 30px 30px 30px 30px !important;
}

@media only screen and (max-width: 600px) {
    .category-card {
        padding: 30px 20px 20px 15px !important;
    }
}

.category-header {
    font-size: 24px;
    line-height: 40px;
    margin-top: 0;
}

@media only screen and (max-width: 600px) {
    .category-header {
        line-height: 20px;
        font-size: 14px;
        margin-top: -15px;
    }
}

.category-active {
    border: 10px solid #18ABB5;
}

@media only screen and (max-width: 600px) {
    .category-active {
        border: 5px solid #18ABB5;
    }
}

.product-detail-secondary-image {
    border: 1px solid #ddd;
    box-shadow: none;
    height: 100px;
    border-radius: 12px;
}

@media only screen and (max-width: 600px) {
    .product-detail-secondary-image {
        height: 60px;
    }
}

.forsch-logo {
    height: 110px;
}


@media only screen and (max-width: 600px) {
    .forsch-logo {
        height: 60px;
    }
}

.e-katalog-header {
    margin-top: 0;
    font-size: 30px;
    color: #008FC3;
}

@media only screen and (max-width: 600px) {
    .e-katalog-header {
        font-size: 18px;
    }
}

.uk-pagination > .uk-active > * {
    color: #18ABB5 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
}

.pill-title {
    font-size: 80px;
    position: relative;
    top: 10px;
}

@media only screen and (max-width: 600px) {
    .pill-title {
        font-size: 50px;
        position: relative;
        top: 0px;
    }
}

.pill-title-2 {
    font-size: 80px;
    position: relative;
    top: -10px;
}

@media only screen and (max-width: 600px) {
    .pill-title-2 {
        font-size: 50px;
        position: relative;
        top: -10px;
    }
}

.pill-article {
    margin-top: -50px;
}

@media only screen and (max-width: 600px) {
    .pill-article {
        font-size: 20px;
        margin-top: -30px;
    }
}

.about-card {
    background-position: center;
    background-size: cover;
    border-radius: 30px;
    padding: 80px 0 !important;
    background-image: url(../img/about.png);
}

@media only screen and (max-width: 600px) {
    .about-card {
        background-position: center;
        background-size: cover;
        border-radius: 30px;
        padding: 20px 0 !important;
        background-image: none;
    }
}


.uk-modal {
    background: rgba(0, 0, 0, .9) !important;
}

/* Hero Banner Responsive Styling */
.hero-container {
    margin-left: 0;
    margin-right: auto;
    max-width: 100%;
    padding-left: 90px;
    padding-right: 90px;
}

/* Countdown timer responsive adjustments */
@media only screen and (max-width: 1200px) {
    .hero-container {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media only screen and (max-width: 960px) {
    .hero-container {
        padding-left: 40px;
        padding-right: 40px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (max-width: 600px) {
    .hero-container {
        padding-left: 20px;
        padding-right: 20px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Banner Component Styles */
.hero-banner {
    position: relative;
    background: url('../img/main_kv_2.png') center/cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner::before {
    display: none;
    visibility: hidden;
    opacity: 0;
}


.hero-banner::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background: url('../img/main_kv_2.png') center/cover;
    background-attachment: fixed;
    z-index: 0;
}

.hero-content {
    padding: 80px 0;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: none;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(-30px);
}

.hero-title.animate {
    animation: elegantFadeInDown 1s ease-out 0.3s both;
}

.hero-description {
    font-size: 1.125rem;
    color: #333333;
    margin-bottom: 48px;
    max-width: 480px;
    text-shadow: none;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(30px);
}

.hero-description.animate {
    animation: elegantFadeInUp 1s ease-out 0.6s both;
}

.countdown-timer {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    opacity: 0;
    transform: scale(0.8);
}

.countdown-timer.animate {
    animation: elegantFadeInScale 1s ease-out 0.9s both;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 131, 0, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 16px 20px;
    min-width: 72px;
    animation: floatUp 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.countdown-item:nth-child(1) {
    animation-delay: -0.2s;
}

.countdown-item:nth-child(2) {
    animation-delay: -0.4s;
}

.countdown-item:nth-child(3) {
    animation-delay: -0.6s;
}

.countdown-item:nth-child(4) {
    animation-delay: -0.8s;
}

.countdown-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 131, 0, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.countdown-number {
    font-size: 1.75rem;
    color: #FF8300;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    color: #333;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button {
    background: #18ABB5 !important;
    background-image: linear-gradient(45deg, #FF8300 0%, #FF8300 55%, #FFAE51 90%) !important;
    background-image: -webkit-linear-gradient(45deg, #FF8300 0%, #FF8300 55%, #FFAE51 90%) !important;
    background-image: -o-linear-gradient(45deg, #FF8300 0%, #FF8300 55%, #FFAE51 90%) !important;
    background-position: 100% 0 !important;
    background-size: 200% 200% !important;
    border: none;
    border-radius: 32px;
    padding: 14px 32px;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: -2px 9px 60px rgba(255, 131, 0, 0.56) !important;
    opacity: 0;
    transform: translateY(30px);
}

.hero-cta-button.animate {
    animation: elegantFadeInUp 1s ease-out 1.2s both;
}

.hero-cta-button:hover {
    background-position: 0 0 !important;
    box-shadow: 0 15px 35px rgba(255, 131, 0, 0.4) !important;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.hero-cta-icon {
    width: 16px;
    height: 16px;
}

/* Mobile responsive adjustments for banner components */
@media only screen and (max-width: 960px) {
    .hero-title {
        font-size: 3.5rem !important;
    }

    .countdown-timer {
        flex-wrap: nowrap !important;
        gap: 10px !important;
        justify-content: center !important;
    }

    .countdown-item {
        min-width: 72px !important;
        padding: 12px 16px !important;
        flex: 0 1 auto !important;
    }
}

@media only screen and (max-width: 600px) {
    .hero-content {
        padding: 40px 0 !important;
    }

    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 16px !important;
    }

    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 32px !important;
        max-width: 100% !important;
    }

    .countdown-timer {
        gap: 6px !important;
        margin-bottom: 32px !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
    }

    .countdown-item {
        min-width: 60px !important;
        padding: 8px 6px !important;
        flex: 1 !important;
        max-width: 70px !important;
    }

    .countdown-number {
        font-size: 1.2rem !important;
    }

    .countdown-label {
        font-size: 0.55rem !important;
    }

    .hero-cta-button {
        padding: 12px 24px !important;
        font-size: 0.9rem !important;
    }
}

/* Elegant Keyframe Animations */
@keyframes elegantFadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes elegantFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes elegantFadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: -2px 9px 60px rgba(255, 131, 0, 0.56);
    }
    50% {
        box-shadow: -2px 9px 80px rgba(255, 131, 0, 0.8);
    }
}


/* Mobile optimizations */
@media only screen and (max-width: 600px) {
    .countdown-item {
        animation: floatUp 2s ease-in-out infinite;
    }

    .hero-cta-button {
        animation: pulseGlow 1.5s ease-in-out infinite;
    }
}

/* About BNI Expo Section */
.about-bni-expo {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-images {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.about-image-1 {
    width: 50%;
    height: 220px;
    opacity: 0;
    transform: translateX(-40px);
}

.about-image-1.animate {
    animation: elegantFadeInLeft 1s ease-out 0.3s both;
}

.about-image-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image-2 {
    width: 50%;
    height: 220px;
    opacity: 0;
    transform: translateX(40px);
}

.about-image-2.animate {
    animation: elegantFadeInRight 1s ease-out 0.6s both;
}

.about-image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-content {
    padding-left: 60px;
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
}

.about-title.animate {
    animation: elegantFadeInUp 1s ease-out 0.4s both;
}

.about-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.about-description.animate {
    animation: elegantFadeInUp 1s ease-out 0.7s both;
}

/* Statistics Section within About */
.about-stats {
    margin-top: 60px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
}

.about-stats.animate {
    animation: elegantFadeInUp 1s ease-out 1s both;
}

.stat-item {
    text-align: center;
    padding: 20px 0;
}

.stat-number {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Decorative Elements */
.about-decoration {
    position: absolute;
    bottom: -150px;
    left: -150px;
    z-index: 1;
    opacity: 0.9;
    animation: slowRotate 20s linear infinite;
}

.decorative-circle-about {
    width: 400px;
    height: 400px;
}

/* Animations */
@keyframes elegantFadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes elegantFadeInRight {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slowRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media only screen and (max-width: 1200px) {
    .about-content {
        padding-left: 40px;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-image-1, .about-image-2 {
        width: 120px;
        height: 100px;
    }

    .decorative-circle {
        width: 350px;
        height: 350px;
    }

    .about-decoration {
        bottom: -120px;
        left: -120px;
    }
}

@media only screen and (max-width: 960px) {
    .about-bni-expo {
        padding: 80px 0;
    }

    .about-content {
        padding-left: 0;
        padding-top: 40px;
    }

    .about-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-description {
        text-align: center;
    }

    .about-images {
        justify-content: center;
        gap: 12px;
    }

    .about-image-1, .about-image-2 {
        width: 110px;
        height: 90px;
    }

    .about-stats {
        margin-top: 40px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .decorative-circle {
        width: 300px;
        height: 300px;
    }

    .about-decoration {
        bottom: -100px;
        left: -100px;
    }
}

@media only screen and (max-width: 600px) {
    .about-bni-expo {
        padding: 60px 0;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-images {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .about-image-1, .about-image-2 {
        width: 140px;
        height: 120px;
        flex: 1;
        max-width: 160px;
    }

    .about-stats {
        margin-top: 30px;
    }

    .about-stats .uk-grid > div {
        width: 50% !important;
        display: inline-block !important;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .decorative-circle-about {
        width: 250px;
        height: 250px;
    }

    .about-decoration {
        bottom: -80px;
        left: -80px;
    }
}

/* Program & Promo Highlights Section */
.program-promo-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    overflow: hidden;
}

.program-promo-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    opacity: 0;
    transform: translateY(30px);
}

.program-promo-title.animate {
    animation: elegantFadeInUp 1s ease-out both;
}

/* Feature Cards */
.feature-card {
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    height: 220px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    opacity: 0;
    transform: translateY(40px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    will-change: transform;
    border: 1px solid #ddd;
}

.feature-card.animate {
    animation: elegantFadeInUp 1s ease-out both;
}

/* Feature Card Base Hover - Remove underline and add subtle glow */
.feature-card {
    text-decoration: none !important;
}

.feature-card:hover {
    text-decoration: none !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

/* Completely remove underlines from feature card links */
a[href] .feature-card,
a[href]:hover .feature-card,
a[href]:focus .feature-card,
a[href]:active .feature-card,
a[href]:visited .feature-card {
    text-decoration: none !important;
}

/* Remove underlines from all elements inside feature cards */
.feature-card,
.feature-card *,
.feature-card h1,
.feature-card h2,
.feature-card h3,
.feature-card h4,
.feature-card h5,
.feature-card h6,
.feature-card p,
.feature-card span,
.feature-card div {
    text-decoration: none !important;
}

/* Target the parent link element specifically for feature cards */
.program-promo-section a:hover,
.program-promo-kpr-section a:hover {
    text-decoration: none !important;
}

/* Force override for KPR card area */
a[href*="kpr"]:hover,
a[href*="kpr"]:hover *,
a[href*="kpr"] .kpr-card:hover,
a[href*="kpr"] .kpr-card:hover * {
    text-decoration: none !important;
    color: inherit !important;
}

/* Ensure KPR and KKB card text is black both before and after hover */
.kpr-card .card-title,
.kpr-card .card-description,
.kpr-card .button-text,
.kkb-card .card-title,
.kkb-card .card-description,
.kkb-card .button-text,
a .kpr-card .card-title,
a .kpr-card .card-description,
a .kpr-card .button-text,
a .kkb-card .card-title,
a .kkb-card .card-description,
a .kkb-card .button-text,
a:hover .kpr-card .card-title,
a:hover .kpr-card .card-description,
a:hover .kpr-card .button-text,
a:hover .kkb-card .card-title,
a:hover .kkb-card .card-description,
a:hover .kkb-card .button-text,
a:visited .kpr-card .card-title,
a:visited .kpr-card .card-description,
a:visited .kpr-card .button-text,
a:visited .kkb-card .card-title,
a:visited .kkb-card .card-description,
a:visited .kkb-card .button-text,
a:link .kpr-card .card-title,
a:link .kpr-card .card-description,
a:link .kpr-card .button-text,
a:link .kkb-card .card-title,
a:link .kkb-card .card-description,
a:link .kkb-card .button-text {
    color: #333 !important;
    text-decoration: none !important;
}

/* Sleek KPR Card Hover Effects */
.kpr-card {
    position: relative;
    background: url('../img/bg_1.svg') no-repeat center center;
    background-size: cover;
    border: none;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kpr-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.kpr-card:hover::after {
    left: 100%;
}

.kpr-card:hover {
    background-size: cover;
    filter: none;
}

.kpr-card .card-illustration img {
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.kpr-card:hover .card-illustration img {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.kpr-card .card-title {
    transition: none;
}

.kpr-card:hover .card-title {
    color: inherit;
    text-shadow: none;
}

.kpr-card .button-arrow {
    transition: all 0.3s ease;
    opacity: 0.7;
}

.kpr-card:hover .button-arrow {
    opacity: 1;
    transform: translateX(4px);
    color: #FF6B35;
}

/* Sleek KKB Card Hover Effects - Same as KPR */
.kkb-card {
    position: relative;
    background: url('../img/bg_2.svg') no-repeat center center;
    background-size: cover;
    border: none;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kkb-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.kkb-card:hover::after {
    left: 100%;
}

.kkb-card:hover {
    background-size: cover;
    filter: none;
}

.kkb-card .card-illustration img {
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.kkb-card:hover .card-illustration img {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.kkb-card .card-title {
    transition: none;
}

.kkb-card:hover .card-title {
    color: inherit;
    text-shadow: none;
}

.kkb-card .button-arrow {
    transition: all 0.3s ease;
    opacity: 0.7;
}

.kkb-card:hover .button-arrow {
    opacity: 1;
    transform: translateX(4px);
    color: #FF6B35;
}

.kkj-card {
    background: url('../img/bg_3.svg') no-repeat center center;
    background-size: cover;
    border: none;
}


.card-text {
    flex: 1;
    max-width: 60%;
}

.card-title {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.1;
    font-weight: 700;
}

.card-description {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.4;
    margin-bottom: 20px;
}

.card-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.button-text {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 600;
}

.button-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 50%;
    color: white;
}

.card-illustration {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-illustration img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 180px;
    max-height: 180px;
}

/* Promo Slider */
.promo-slider-container {
    margin-top: 0px;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    padding-bottom: 30px;
}

.promo-slider-container.animate {
    animation: elegantFadeInUp 1s ease-out 0.3s both;
}

.promo-slider-container .uk-slider-items {
    margin-left: 0 !important;
}

.promo-slide {
    padding: 0 15px;
}

.promo-lightbox-img {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.promo-lightbox-img:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.promo-slide a {
    display: block;
    text-decoration: none;
}

.promo-slide img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.promo-slide img:hover {
    transform: scale(1.02);
}

.promo-slide .promo-page-card {
    margin: 0 0 20px 0;
    height: calc(100% - 20px);
    display: flex;
    flex-direction: column;
}

.promo-slide .promo-page-card-image {
    border-radius: 16px;
}

.promo-nav {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #FF8300 !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.promo-nav:hover {
    background: #FF8300 !important;
    color: white !important;
    transform: scale(1.1);
}

/* Background Decorations */
.program-promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.program-promo-section .uk-container {
    position: relative;
    z-index: 2;
}

.bg-decoration {
    position: absolute;
    opacity: 0.6;
}


.bg-pattern {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
    opacity: 0.03;
}

/* Responsive Design */
@media only screen and (max-width: 960px) {
    .program-promo-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .feature-card {
        height: 270px;
        padding: 25px;
    }

    .card-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .card-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .card-illustration {
        width: 150px;
        height: 150px;
    }

    .promo-slider-container {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 600px) {
    .program-promo-section {
        padding: 60px 0;
    }

    .program-promo-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .feature-card {
        height: 250px;
        padding: 20px;
        border-radius: 18px;
        margin-bottom: 20px;
        flex-direction: column;
        text-align: center;
    }


    .card-text {
        max-width: 100%;
        margin-bottom: 15px;
    }

    .card-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .card-description {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .card-button {
        padding: 8px 16px;
    }

    .button-text {
        font-size: 0.8rem;
    }

    .button-arrow {
        width: 18px;
        height: 18px;
    }

    .card-illustration {
        width: 120px;
        height: 120px;
    }

    .promo-slider-container {
        margin-top: 40px;
    }

    .promo-nav {
        width: 40px;
        height: 40px;
    }
}

/* ===== SECTION 5: GALLERY BNI EXPO 2024 ===== */

.gallery-bni-expo-section {
    position: relative;
    overflow: hidden;
}

.gallery-background {
    background-color: #FF8806;
    background-image: url('../img/orange_background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0 120px 0;
    z-index: 1;
}

@media only screen and (max-width: 600px) {
    .gallery-background {
        padding: 40px 10px 60px 10px;
    }
}

.gallery-content {
    position: relative;
    z-index: 2;
}

.gallery-header {
    text-align: center;
    margin-bottom: 70px;
}

.gallery-title {
    color: #ffffff;
    font-size: 56px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

/* YouTube Video Player */
.video-player-section {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 600px) {
    .video-player-section {
        margin-bottom: 30px;
    }
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 600px) {
    .video-container {
        height: 200px;
    }
}

.gallery-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Image Gallery */
.image-gallery-section {
    max-width: 800px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-nav {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #FF8806 !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    backdrop-filter: blur(10px);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .gallery-title {
        font-size: 32px;
    }

    .gallery-header {
        margin-bottom: 30px;
    }

    .featured-image {
        height: 250px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-icon {
        transform: scale(0.8);
    }

    .gallery-thumbnails {
        margin-top: 30px;
    }

    .thumbnail-image {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .gallery-title {
        font-size: 28px;
    }

    .featured-image {
        height: 200px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-icon {
        transform: scale(0.7);
    }

    .thumbnail-image {
        height: 70px;
    }
}

/* Gallery Animations */
.gallery-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.gallery-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.featured-gallery-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.2s;
}

.featured-gallery-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.thumbnail-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.thumbnail-item:nth-child(1) {
    transition-delay: 0.4s;
}

.thumbnail-item:nth-child(2) {
    transition-delay: 0.5s;
}

.thumbnail-item:nth-child(3) {
    transition-delay: 0.6s;
}

.thumbnail-item:nth-child(4) {
    transition-delay: 0.7s;
}

.thumbnail-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.gallery-thumbnails {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.gallery-thumbnails.animate {
    opacity: 1;
    transform: translateY(0);
}


/* Section 6: Schedule of Events & Activities - New Structure */
.schedule-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}



/* Header Layout */
.schedule-header-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.schedule-title-area {
    flex: 1;
}

.schedule-main-title {
    font-size: 48px;
    line-height: 1.5;
    color: #181818;
    margin: 0;
}

.schedule-sub-title {
    font-size: 48px;
    line-height: 1.0;
    margin: 0;
}

/* Day Tabs */
.schedule-tabs-area {
    flex-shrink: 0;
    margin-left: 40px;
    position: relative;
    z-index: 20;
}

.day-tabs-container {
    display: flex;
    background-color: #f8f8f8;
    border-radius: 50px;
    padding: 6px;
    gap: 6px;
    position: relative;
    z-index: 20;
}

.day-tab-btn {
    padding: 12px 24px;
    border: none;
    background-color: transparent;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    position: relative;
    z-index: 21;
}

.day-tab-btn.active {
    background-color: #181818;
    color: #ffffff;
}

/* Events Grid */
.schedule-events-grid {
    position: relative;
}

.day-events-container {
    display: none;
    position: relative;
    z-index: 2;
}

.day-events-container.active {
    display: block;
    position: relative;
    z-index: 2;
}

.events-slider {
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.events-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
    width: fit-content;
    position: relative;
    z-index: 2;
}

.event-column {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    flex-shrink: 0;
    width: 280px;
    background-color: #eeeeee;
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
    z-index: 2;
}

.event-column::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -40%;
    width: 250px;
    height: 250px;
    background: url('../img/eclipse.svg') no-repeat center center;
    background-size: contain;
    z-index: 1;
}

.event-time-display {
    font-size: 36px;
    font-weight: 600;
    color: #181818;
    margin-bottom: 25px;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.event-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.event-title-text {
    font-size: 25px;
    color: #181818;
    margin: 0 0 15px 0;
    line-height: 1.3;
    font-weight: 600;
}

.event-desc-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}


/* Navigation Arrows */
.schedule-nav-arrows {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 3;
}

.schedule-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background-color: #FF8300;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.schedule-arrow:hover {
    background-color: #e67400;
    transform: scale(1.05);
}

/* Background Decorations */
.schedule-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cyan-circle-top {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: url('../img/Ellipse3.svg') no-repeat center center;
    background-size: contain;
    opacity: 0.6;
}

.cyan-circle-bottom {
    position: absolute;
    bottom: -15%;
    right: 0%;
    width: 180px;
    height: 180px;
    background: url('../img/Ellipse3.svg') no-repeat center center;
    background-size: contain;
    opacity: 0.4;
}

.purple-circle-left {
    position: absolute;
    bottom: -10%;
    left: 0%;
    width: 150px;
    height: 150px;
    background: url('../img/Ellipse4.svg') no-repeat center center;
    background-size: contain;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .schedule-section {
        padding: 60px 0 0 0;
    }

    .schedule-header-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }

    .schedule-main-title,
    .schedule-sub-title {
        font-size: 32px;
    }

    .schedule-tabs-area {
        margin-left: 0;
        margin-top: 20px;
    }

    .day-tabs-container {
        flex-direction: row;
        background-color: #f8f8f8;
        padding: 4px;
        gap: 4px;
        justify-content: center;
        border-radius: 30px;
        max-width: 280px;
        margin: 0 auto;
    }

    .day-tab-btn {
        flex: 1;
        min-width: 0;
        padding: 10px 16px;
        font-size: 13px;
        background-color: transparent;
        border-radius: 20px;
    }

    .day-tab-btn.active {
        background-color: #181818;
        color: #ffffff;
    }

    .events-slider {
        max-width: 100%;
        padding: 0;
    }

    .events-slider {
        overflow: visible;
    }

    .events-track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        width: 100%;
        transform: none !important;
    }

    .event-column {
        min-height: auto;
        width: auto;
        padding: 20px;
        margin-bottom: 15px;
    }

    .event-column::before {
        width: 80px;
        height: 80px;
        top: -20%;
        right: -10%;
    }

    .event-time-display {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .event-title-text {
        font-size: 15px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .event-desc-text {
        font-size: 11px;
        line-height: 1.3;
    }


    .schedule-nav-arrows {
        position: static;
        justify-content: center;
        margin-top: 30px;
    }

    .cyan-circle-top,
    .cyan-circle-bottom {
        width: 120px;
        height: 120px;
    }

    .purple-circle-left {
        width: 100px;
        height: 100px;
    }

    /* Extended circles in Section 7 mobile */
    .cyan-circle-bottom-extended {
        width: 120px;
        height: 120px;
        top: -20%;
        opacity: 0.3;
    }

    .purple-circle-left-extended {
        width: 100px;
        height: 100px;
        top: -15%;
        opacity: 0.4;
    }
}

/* Section 7: Download BNI EXPO Guideline */
.download-guideline-section {
    padding: 60px 0 100px 0;
    background-color: transparent;
    position: relative;
    z-index: 0;
}



/* Extended circles from Section 6 */
.section-transition-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.purple-circle-left-extended {
    position: absolute;
    top: -25%;
    left: -20%;
    width: 450px;
    height: 450px;
    background: url('../img/Ellipse4.svg') no-repeat center center;
    background-size: contain;
    z-index: -1;
}

.download-guideline-content {
    background: linear-gradient(135deg, #DFF058 0%, #B8E02F 100%);
    border-radius: 30px;
    padding: 50px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    z-index: 2;
}

.download-guideline-content::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 650px;
    height: 650px;
    background: url('../img/ornament.svg') no-repeat center center;
    background-size: contain;
    z-index: 1;
}

.download-guideline-text {
    flex: 1;
    max-width: 45%;
    position: relative;
    z-index: 2;
}

.download-guideline-title {
    font-size: 48px;
    line-height: 1.1;
    color: #2c2c2c;
    margin-bottom: 30px;
    font-weight: 600;
}

.download-guideline-button-wrapper {
    margin-top: 30px;
}

.download-guideline-button {
    background: #FF8300 !important;
    color: white !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 15px 35px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 131, 0, 0.3) !important;
}

.download-guideline-button:hover {
    background: #E67400 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 131, 0, 0.4) !important;
}

.download-guideline-image {
    position: absolute;
    bottom: -120%;
    right: -10%;
    z-index: 2;
    width: 800px;
    height: 800px;
}

.brochure-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .purple-circle-left-extended {
        position: absolute;
        top: -25%;
        left: -80%;
        width: 450px;
        height: 450px;
        z-index: -1;
    }

    .download-guideline-section {
        padding: 30px 0 60px 0;
    }

    .download-guideline-content {
        flex-direction: column;
        text-align: center;
        margin: 0;
        padding: 40px 20px 60px 20px;
        min-height: 300px;
        position: relative;
    }

    .download-guideline-text {
        max-width: 100%;
        order: 1;
        position: relative;
        z-index: 4;
    }

    .download-guideline-image {
        position: absolute;
        bottom: -50%;
        right: -15%;
        width: 400px;
        height: 400px;
        z-index: 3;
    }

    .download-guideline-title {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .brochure-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .download-guideline-button {
        padding: 12px 25px !important;
        font-size: 14px !important;
    }

    .download-guideline-content::before {
        width: 200px;
        height: 200px;
        top: -15%;
        left: -5%;
        opacity: 0.4;
    }

    .download-guideline-content::after {
        width: 150px;
        height: 150px;
        top: -10%;
        left: -5%;
        opacity: 0.3;
    }
}

/* ===== SECTION 8: VENUE & LOCATION ===== */
.venue-location-section {
    padding: 100px 0;
    background: #F5F5F5;
    position: relative;
    overflow: hidden;
}

/* Purple background decoration */
.venue-location-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.15) 0%, rgba(156, 39, 176, 0.05) 100%);
    border-radius: 50%;
    top: -400px;
    left: -400px;
    z-index: 0;
}

.venue-location-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.venue-location-title {
    font-size: 48px;
    color: #1A1A1A;
    line-height: 1.2;
    margin: 0;
}

.venue-text {
    color: #1A1A1A;
}

.location-text {
    color: #FF8300;
}

.venue-location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.venue-map-wrapper {
    position: relative;
}

.venue-map-iframe {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.venue-address {
    margin-top: 20px;
    padding: 0 20px;
}

.venue-address p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

.venue-floorplan-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.venue-floorplan {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Section 8 */
@media (max-width: 1200px) {
    .venue-location-content {
        gap: 30px;
    }

    .venue-map-iframe {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .venue-location-section {
        padding: 80px 0;
    }

    .venue-location-title {
        font-size: 40px;
    }

    .venue-location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .venue-map-iframe {
        height: 350px;
    }

    .venue-floorplan {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .venue-location-section {
        padding: 60px 0;
    }

    .venue-location-header {
        margin-bottom: 40px;
    }

    .venue-location-title {
        font-size: 32px;
    }

    .venue-map-iframe {
        height: 300px;
        border-radius: 15px;
    }

    .venue-floorplan {
        border-radius: 15px;
    }

    .venue-address {
        padding: 0 10px;
    }

    .venue-address p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .venue-location-section {
        padding: 40px 0;
    }

    .venue-location-title {
        font-size: 28px;
    }

    .venue-location-content {
        gap: 30px;
    }

    .venue-map-iframe {
        height: 250px;
    }

    .venue-location-section::before {
        width: 400px;
        height: 400px;
        top: -200px;
        left: -200px;
    }
}

/* ===== VENUE SHUTTLE SECTION ===== */
.venue-shuttle-section {
    padding: 60px 0;
    background: #F5F5F5;
}

.shuttle-info-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
}

.shuttle-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.shuttle-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .venue-shuttle-section {
        padding: 40px 0;
    }

    .shuttle-info-wrapper {
        padding: 15px;
    }

    .shuttle-image {
        border-radius: 10px;
    }
}

@media (max-width: 576px) {
    .venue-shuttle-section {
        padding: 30px 0;
    }

    .shuttle-info-wrapper {
        padding: 10px;
    }
}

/* Brand Section for KKB Page */
.brand-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.brand-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.brand-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.brand-card-image {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Brand Cards for Home Page */
.brand-card-home {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.brand-card-home:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.15);
}

.brand-card-home .brand-card-image {
    height: 80px;
    overflow: hidden;
}

.brand-card-home .brand-card-image img {
    transition: transform 0.3s ease;
}

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

.brand-slider-container {
    margin-top: 40px;
}

.brand-slide {
    padding: 10px;
}

/* Brand Navigation Arrows */
.brand-nav {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #222222;
}

.brand-nav:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #222222;
}

.brand-nav-prev {
    left: -25px;
}

.brand-nav-next {
    right: -25px;
}

@media (max-width: 960px) {
    .brand-card-home {
        padding: 15px;
    }

    .brand-card-home .brand-card-image {
        height: 60px;
    }

    .brand-slider-container {
        margin-top: 30px;
    }

    .brand-slide {
        padding: 5px;
    }

    .brand-nav {
        width: 40px;
        height: 40px;
    }

    .brand-nav-prev {
        left: -20px;
    }

    .brand-nav-next {
        right: -20px;
    }
}

@media (max-width: 960px) {
    .brand-section {
        padding: 60px 0;
    }

    .brand-card {
        padding: 20px;
    }

    .brand-card-image {
        height: 80px;
    }
}

/* ===== SECTION 9: LIST TENANT ON BNI wondrX 2025 ===== */

.tenant-list-section {
    position: relative;
    background: #DFF058;
    background-image: linear-gradient(135deg, #DFF058 0%, #E8F56B 100%);
    padding: 100px 0 120px 0;
    overflow: hidden;
    z-index: 1;
}

/* Background Decorations */
.tenant-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cyan-circle-large-right {
    position: absolute;
    top: -15%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: url('../img/Ellipse3.svg') no-repeat center center;
    background-size: contain;
    opacity: 0.8;
    z-index: 1;
}

.purple-circle-large-left {
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: url('../img/Ellipse4.svg') no-repeat center center;
    background-size: contain;
    opacity: 0.8;
    z-index: 1;
}

/* Section Header */
.tenant-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

.tenant-main-title {
    color: #000000;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}

/* Content Wrapper */
.tenant-content-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}

/* Category Tabs */
.tenant-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 240px;
    flex-shrink: 0;
}

.tenant-category-tab {
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 30px;
    padding: 18px 28px;
    font-size: 16px;
    font-weight: 500;
    color: #6B6B6B;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    backdrop-filter: blur(8px);
}

.tenant-category-tab:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateX(3px);
}

.tenant-category-tab.active {
    background: rgba(255, 255, 255, 0.95);
    color: #424242;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Right Side Content */
.tenant-right-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Search Bar */
.tenant-search-wrapper {
    margin-bottom: 30px;
    position: relative;
    z-index: 5;
}

.tenant-search-container {
    position: relative;
    width: 100%;
}

.tenant-search-input {
    width: 100%;
    padding: 20px 24px 20px 60px;
    border: none;
    border-radius: 35px;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #424242;
    box-sizing: border-box;
}

.tenant-search-input:focus {
    outline: none;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.tenant-search-input::placeholder {
    color: #8B8B8B;
    font-weight: 400;
}

.tenant-search-icon {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #8B8B8B;
    pointer-events: none;
    font-size: 32px;
    font-weight: normal;
    z-index: 10;
    display: inline-block;
}

/* Content Layout - Removed duplicate definition */

/* Tenant Grid */
.tenant-grid-container {
    position: relative;
    z-index: 5;
}

.tenant-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 100%;
}

/* Tenant Cards */
.tenant-card {
    position: relative;
    height: 140px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    transform-origin: center;
}

.tenant-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tenant-card-inner {
    position: relative;
    height: 100%;
    background: linear-gradient(135deg, #FF8300 0%, #FF9500 100%);
    padding: 20px;
    overflow: hidden;
}

.tenant-brand-name {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.0;
    margin-bottom: 2px;
    z-index: 2;
    position: relative;

    /* Handle text overflow for long tenant names */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    display: block;

    /* For very long names, use ellipsis after 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tenant-booth-number {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.8;
    z-index: 2;
    position: relative;
}

.tenant-decorative-circle {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: url('../img/Ellipse4.svg') no-repeat center center;
    background-size: contain;
    opacity: 1;
    z-index: 1;
}

/* Hidden state for filtered items */
.tenant-card.hidden {
    display: none;
}

/* Empty State */
.tenant-empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 2px dashed rgba(255, 131, 0, 0.3);
    margin: 20px 0;
}

.empty-state-icon {
    font-size: 72px;
    margin-bottom: 24px;
    opacity: 0.7;
}

.empty-state-title {
    color: #424242;
    font-size: 32px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.empty-state-description {
    color: #6B6B6B;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 500px;
}


/* Responsive Design */
@media only screen and (max-width: 1200px) {
    .tenant-list-section {
        padding: 80px 0 100px 0;
    }

    .tenant-main-title {
        font-size: 42px;
    }

    .tenant-content-wrapper {
        grid-template-columns: 220px 1fr;
        gap: 30px;
    }

    .tenant-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .cyan-circle-large-right {
        width: 350px;
        height: 350px;
    }

    .purple-circle-large-left {
        width: 300px;
        height: 300px;
    }

    .empty-state-title {
        font-size: 28px;
    }

    .empty-state-description {
        font-size: 16px;
    }

    .tenant-empty-state {
        padding: 60px 30px;
    }
}

@media only screen and (max-width: 960px) {
    .tenant-list-section {
        padding: 60px 0 80px 0;
    }

    .tenant-main-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .tenant-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tenant-right-content {
        gap: 20px;
    }

    .tenant-categories {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .tenant-category-tab {
        flex: 1;
        min-width: 120px;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .tenant-category-tab:hover {
        transform: translateY(-2px);
    }

    .tenant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .tenant-card {
        height: 140px;
    }

    .tenant-brand-name {
        font-size: 18px;
        /* Responsive text handling for tablets */
        -webkit-line-clamp: 3;
        line-height: 1.0;
        margin-bottom: 2px;
    }

    .tenant-booth-number {
        font-size: 16px;
    }

    .cyan-circle-large-right {
        width: 300px;
        height: 300px;
        right: -50px;
    }

    .purple-circle-large-left {
        width: 250px;
        height: 250px;
        left: -50px;
    }

    .empty-state-icon {
        font-size: 56px;
    }

    .empty-state-title {
        font-size: 24px;
    }

    .empty-state-description {
        font-size: 15px;
    }

    .tenant-empty-state {
        padding: 50px 25px;
    }
}

@media only screen and (max-width: 600px) {
    .tenant-list-section {
        padding: 40px 0 60px 0;
    }

    .tenant-section-header {
        margin-bottom: 40px;
    }

    .tenant-main-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .tenant-content-wrapper {
        gap: 24px;
    }

    .tenant-categories {
        gap: 6px;
    }

    .tenant-category-tab {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 20px;
        min-width: 100px;
    }

    .tenant-search-input {
        padding: 14px 16px 14px 40px;
        font-size: 14px;
        border-radius: 20px;
    }

    .tenant-search-icon {
        left: 14px;
    }

    .tenant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .tenant-card {
        height: 120px;
        border-radius: 16px;
    }

    .tenant-card-inner {
        padding: 20px;
    }

    .tenant-brand-name {
        font-size: 20px;
        margin-bottom: 2px;
        /* Mobile responsive text handling */
        -webkit-line-clamp: 3;
        line-height: 1.0;
    }

    .tenant-booth-number {
        font-size: 18px;
    }

    .tenant-decorative-circle {
        width: 80px;
        height: 80px;
        bottom: -20px;
        right: -20px;
    }

    .cyan-circle-large-right {
        width: 200px;
        height: 200px;
        right: -30px;
        top: 10%;
    }

    .purple-circle-large-left {
        width: 180px;
        height: 180px;
        left: -30px;
        bottom: 10%;
    }

    .empty-state-icon {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .empty-state-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .empty-state-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .tenant-empty-state {
        padding: 40px 20px;
    }

    .tenant-decorative-circle {
        position: absolute;
        bottom: -40px;
        right: -30px;
        width: 140px;
        height: 140px;
    }
}

/* ===== SECTION 10: FAQ (FREQUENTLY ASKED QUESTIONS) ===== */

.faq-section {
    background: #FFFFFF;
    padding: 100px 0 120px 0;
    position: relative;
}

/* Section Header */
.faq-header {
    text-align: left;
    margin-bottom: 60px;
}

.faq-main-title {
    color: #424242;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}

/* FAQ Content */
.faq-content {
    max-width: 100%;
}

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

/* FAQ Items */
.faq-item {
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 0;
    overflow: hidden;
}

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

/* FAQ Questions */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    color: #424242;
    font-size: 24px;
    line-height: 1.3;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.faq-question:hover {
    color: #FF8300;
}

.faq-question-text {
    flex: 1;
    margin-right: 20px;
}

/* FAQ Icon */
.faq-icon {
    color: #424242;
    transition: all 0.3s ease;
    font-size: 16px;
    flex-shrink: 0;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-icon {
    color: #FF8300;
}

.faq-item.active .faq-question {
    color: #FF8300;
}

/* FAQ Answer Wrapper */
.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer-wrapper {
    max-height: 300px;
    transition: max-height 0.4s ease-in;
}

/* FAQ Answers */
.faq-answer {
    color: #6B6B6B;
    font-size: 18px;
    line-height: 1.6;
    padding: 0 0 32px 0;
    margin: 0;
}

/* Responsive Design */
@media only screen and (max-width: 1200px) {
    .faq-section {
        padding: 80px 0 100px 0;
    }

    .faq-main-title {
        font-size: 42px;
    }

    .faq-question {
        font-size: 22px;
        padding: 28px 0;
    }

    .faq-answer {
        font-size: 17px;
        padding: 0 0 28px 0;
    }

    .faq-item.active .faq-answer-wrapper {
        max-height: 250px;
    }
}

@media only screen and (max-width: 960px) {
    .faq-section {
        padding: 60px 0 80px 0;
    }

    .faq-header {
        margin-bottom: 40px;
        text-align: center;
    }

    .faq-main-title {
        font-size: 36px;
    }

    .faq-question {
        font-size: 20px;
        padding: 24px 0;
    }

    .faq-answer {
        font-size: 16px;
        padding: 0 0 24px 0;
    }

    .faq-item.active .faq-answer-wrapper {
        max-height: 220px;
    }
}

@media only screen and (max-width: 600px) {
    .faq-section {
        padding: 40px 0 60px 0;
    }

    .faq-header {
        margin-bottom: 30px;
    }

    .faq-main-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .faq-question {
        font-size: 18px;
        padding: 20px 0;
        line-height: 1.4;
    }

    .faq-answer {
        font-size: 15px;
        padding: 0 0 20px 0;
        line-height: 1.5;
    }

    .faq-icon {
        margin-left: 12px;
        font-size: 14px;
    }

    .faq-question-text {
        margin-right: 12px;
    }

    .faq-item.active .faq-answer-wrapper {
        max-height: 200px;
    }
}

/* ===== NEW FOOTER DESIGN ===== */

.new-footer {
    position: relative;
    background: linear-gradient(135deg, #A28BD8 0%, #9B7FD6 50%, #8A6FD3 100%);
    padding: 80px 0 40px 0;
    overflow: hidden;
}

/* Background Elements */
.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-pattern {
    position: absolute;
    top: -10%;
    left: -5px;
    width: 100%;
    height: calc(100% + 100px);
    background: url('../img/pattern_footer.svg') no-repeat center center;
    background-size: cover;
    opacity: 1;
}

.footer-vector {
    position: absolute;
    bottom: -50px;
    right: -10%;
    width: 80%;
    height: 70%;
    background: url('../img/footer_vector.svg') no-repeat bottom right;
    background-size: contain;
    opacity: 1;
}

/* Footer Content */
.footer-content {
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

/* Left Content */
.footer-left {
    max-width: 600px;
}

.footer-main-text {
    color: #FFFFFF;
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 50px;
    font-weight: 600;
}

.footer-contact-section {
    color: #FFFFFF;
}

.footer-contact-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.contact-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #DFEF59;
    text-decoration: underline;
}

.contact-text {
    color: #FFFFFF;
    font-size: 16px;
}

/* Right Content - Logo */
.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-logo-container {
    max-width: 300px;
}

.footer-logo {
    width: 100%;
    height: auto;
    max-width: 280px;
}

/* Bottom Section */
.footer-bottom {
    background: #6748AC;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    margin-bottom: -40px;
    padding: 20px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #FFFFFF;
    font-size: 14px;
    margin: 0;
}

/* Social Links */
.footer-social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
}

/* Responsive Design */
@media only screen and (max-width: 1200px) {
    .new-footer {
        padding: 60px 0 30px 0;
    }

    .footer-main {
        gap: 40px;
        margin-bottom: 50px;
    }

    .footer-main-text {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .footer-logo {
        max-width: 240px;
    }
}

@media only screen and (max-width: 960px) {
    .new-footer {
        padding: 50px 0 30px 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-contact-items {
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-left {
        max-width: 100%;
    }

    .footer-main-text {
        font-size: 22px;
        margin-bottom: 35px;
    }

    .footer-contact-title {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-logo {
        max-width: 200px;
    }

    .footer-bottom {
        padding: 30px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-vector {
        width: 80%;
        height: 60%;
    }
}

@media only screen and (max-width: 600px) {
    .new-footer {
        padding: 40px 0 25px 0;
    }

    .footer-main {
        gap: 30px;
        margin-bottom: 40px;
    }

    .footer-main-text {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .footer-contact-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-contact-items {
        gap: 15px;
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .contact-icon {
        font-size: 16px;
        width: 25px;
        height: 25px;
    }

    .contact-link,
    .contact-text {
        font-size: 14px;
    }

    .footer-logo {
        max-width: 160px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-icon {
        font-size: 14px;
    }

    .footer-bottom {
        padding: 25px 0 30px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-vector {
        width: 100%;
        height: 50%;
    }

    .footer-pattern {
        opacity: 0.8;
    }
}

/* ===== SECTION 12: WONDR APP PROMOTION ===== */
.wondr-section {
    background: #3ED8D4;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.wondr-content {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    position: relative;
    gap: 60px;
    min-height: 500px;
}

/* Left Content */
.wondr-left {
    color: white;
    z-index: 2;
    position: relative;
    max-width: 50%;
    padding-right: 40px;
}

.wondr-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #000000;
}

.wondr-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 40px;
}

/* New Wondr Download Section */
.wondr-download-section {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}

.wondr-icon-wrapper {
    flex-shrink: 0;
}

.wondr-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    box-sizing: border-box;
}

.download-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.download-text {
    font-size: 25px;
    margin: 0;
    color: white;
}

.download-buttons-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.download-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.download-link:hover {
    transform: scale(1.05);
}

.download-button {
    height: 60px;
    width: auto;
    border-radius: 12px;
}

/* Legacy styles - kept for backward compatibility */
.wondr-download-buttons {
    display: flex;
    gap: 20px;
}

.wondr-download-buttons .download-button {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.wondr-download-buttons .download-button:hover {
    transform: scale(1.05);
}

/* Right Content - Phone Image */
.wondr-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
}

.wondr-phone-container {
    position: relative;
    max-width: 700px;
    width: 100%;
}

.wondr-phone-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    max-height: 550px;
    object-fit: contain;
}

/* Responsive Design */
@media only screen and (max-width: 1200px) {
    .wondr-content {
        gap: 40px;
    }

    .wondr-title {
        font-size: 40px;
    }

    .wondr-logo {
        max-width: 250px;
    }
}

@media only screen and (max-width: 960px) {
    .wondr-section {
        padding: 60px 0;
    }

    .wondr-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        min-height: auto;
    }

    .wondr-left {
        max-width: 100%;
        padding-right: 0;
    }

    .wondr-right {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 40px;
    }

    .wondr-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .wondr-logo {
        max-width: 200px;
        margin-bottom: 30px;
    }

    .wondr-download-buttons {
        justify-content: center;
    }

    .wondr-download-section {
        justify-content: center;
    }

    .wondr-icon {
        width: 120px;
        height: 120px;
    }

    .wondr-phone-container {
        max-width: 300px;
    }
}

@media only screen and (max-width: 600px) {
    .wondr-section {
        padding: 40px 0;
    }

    .wondr-content {
        gap: 30px;
    }

    .wondr-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .wondr-logo {
        max-width: 180px;
        margin-bottom: 25px;
    }

    .wondr-download-buttons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }

    .wondr-download-buttons .download-button {
        height: 45px;
    }

    .wondr-download-section {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .wondr-icon {
        width: 120px;
        height: 120px;
    }

    .download-buttons-wrapper {
        gap: 10px;
        align-items: center;
    }

    .download-text {
        font-size: 16px;
    }

    .download-buttons-row {
        gap: 8px;
    }

    .download-button {
        height: 40px;
    }

    .wondr-phone-container {
        max-width: 240px;
    }

    .wondr-right {
        justify-content: center;
    }
}

/* KPR Page Styles */
.kpr-hero-banner {
    width: 100%;
    overflow: hidden;
    margin-top: -20px;
    max-height: 600px;
}

.kpr-hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.kpr-main-title {
    font-size: 48px;
    line-height: 1.2;
    color: #181818;
    font-weight: bold;
    text-align: left;
    margin-bottom: 20px;
    margin-top: 40px;
}

.kpr-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #616161;
    text-align: left;
    margin-bottom: 40px;
    font-weight: 400;
}

@media only screen and (max-width: 768px) {
    .kpr-hero-banner {
        max-height: 450px;
    }

    .kpr-hero-image {
        height: 450px;
    }

    .kpr-main-title {
        font-size: 32px;
        margin-top: 30px;
    }

    .kpr-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 600px) {
    .kpr-hero-banner {
        max-height: 300px;
    }

    .kpr-hero-image {
        height: 300px;
    }

    .kpr-main-title {
        font-size: 24px;
        margin-top: 20px;
    }

    .kpr-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Override animations for KPR page */
.kpr-page .about-image-1,
.kpr-page .about-image-2,
.kpr-page .about-title,
.kpr-page .about-description,
.kpr-page .about-stats,
.kpr-page .stat-item,
.kpr-page .stat-number,
.kpr-page .stat-label,
.kpr-page .promo-slider-container,
.kpr-page .promo-slide,
.kpr-page .program-promo-title,
.kpr-page .property-card,
.kpr-page .property-list-header,
.kpr-page .property-list-title,
.kpr-page .property-cards-container,
.kpr-page .property-mobile-section,
.kpr-page .property-list-title-mobile,
.kpr-page .property-cards-mobile {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}

/* About BNI KPR Section - match promo-kredit-section styling */
.about-bni-kpr {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-bni-kpr .uk-container {
    padding-left: 80px;
    padding-right: 80px;
}

@media only screen and (max-width: 960px) {
    .about-bni-kpr {
        padding: 80px 0;
    }

    .about-bni-kpr .uk-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media only screen and (max-width: 600px) {
    .about-bni-kpr {
        padding: 60px 0;
    }

    .about-bni-kpr .uk-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-bni-kpr .about-title {
        margin-bottom: 15px !important;
        font-size: 24px;
        line-height: 1.3;
    }

    .about-bni-kpr .about-description {
        margin-bottom: 20px !important;
        font-size: 14px;
        line-height: 1.5;
    }

    .about-bni-kpr .uk-grid {
        margin-top: 0 !important;
    }

    .about-bni-kpr .uk-margin-large-top {
        margin-top: 30px !important;
    }

    /* Fix specific spacing issues for mobile */
    .about-bni-kpr .about-content {
        padding-top: 0 !important;
        margin-top: 15px !important;
    }

    .about-bni-kpr .about-description {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .about-bni-kpr .uk-grid-margin {
        margin-top: 15px !important;
    }

    .about-bni-kpr .uk-first-column {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

/* Force program-promo-title to be visible on KPR page */
.properti-top .program-promo-title {
    opacity: 1 !important;
    transform: none !important;
}

/* Force feature cards to be visible in program-promo-kpr-section */
.program-promo-kpr-section .feature-card,
.program-promo-kpr-section .property-card,
.program-promo-kpr-section .vehicle-card,
.program-promo-kpr-section .kpr-card,
.program-promo-kpr-section .kkb-card,
.program-promo-kpr-section .kkj-card,
.program-promo-kpr-section .program-promo-title {
    opacity: 1 !important;
    transform: none !important;
}


/* Make promo-kredit-section property cards match KPR page exactly */
.promo-kredit-section .property-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promo-kredit-section .property-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.promo-kredit-section .property-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.promo-kredit-section .property-card:hover .property-image img {
    transform: scale(1.05);
}

.promo-kredit-section .developer-logo {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-kredit-section .developer-logo img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}

.promo-kredit-section .property-details {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.promo-kredit-section .property-title {
    font-size: 16px;
    line-height: 1.3;
    color: #181818;
    margin-bottom: 8px;
    font-weight: 600;
}

.promo-kredit-section .property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.promo-kredit-section .location-icon {
    width: 16px;
    height: 16px;
    color: #7d7d7d;
}

.promo-kredit-section .location-text {
    font-size: 14px;
    color: #7d7d7d;
    font-weight: 600;
}

.promo-kredit-section .property-price {
    margin-top: auto;
}

.promo-kredit-section .price-label {
    font-size: 12px;
    color: #616161;
    margin-bottom: 4px;
    display: block;
}

.promo-kredit-section .price-value {
    font-size: 18px;
    color: #FF8300;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 4px;
}

.promo-kredit-section .installment-info {
    font-size: 14px;
    color: #616161;
    line-height: 1.2;
}

/* Mobile styles for promo-kredit-section */
@media only screen and (max-width: 600px) {
    .promo-kredit-section .property-card {
        height: auto;
        max-width: 160px;
        margin: 0 5px;
    }

    .promo-kredit-section .property-image {
        height: 140px;
    }

    .promo-kredit-section .property-details {
        padding: 12px;
    }

    .promo-kredit-section .property-title {
        font-size: 14px;
        margin-bottom: 6px;
        line-height: 1.3;
        color: #181818;
        font-weight: 600;
    }

    .promo-kredit-section .property-location {
        margin-bottom: 12px;
    }

    .promo-kredit-section .location-text {
        font-size: 12px;
        color: #7d7d7d;
        font-weight: 600;
    }

    .promo-kredit-section .location-icon {
        width: 16px;
        height: 16px;
        color: #7d7d7d;
    }

    .promo-kredit-section .price-label {
        font-size: 10px;
        color: #616161;
        margin-bottom: 4px;
        display: block;
    }

    .promo-kredit-section .price-value {
        font-size: 14px !important;
        color: #FF8300;
        font-weight: bold;
        line-height: 1.2;
        margin-bottom: 2px !important;
    }

    .promo-kredit-section .installment-info {
        font-size: 11px;
        color: #616161;
        line-height: 1.2;
    }

    .promo-kredit-section .developer-logo {
        top: 8px;
        right: 8px;
        width: 40px;
        height: 40px;
        padding: 4px;
    }

    .promo-kredit-section .developer-logo img {
        max-width: 32px;
        max-height: 32px;
    }
}

/* New KPR Header Section Styles */
.property-list-title-new {
    font-size: 32px;
    color: #181818;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}

.search-filter-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-wrapper {
    position: relative;
}

.search-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-new {
    width: 280px;
    height: 48px;
    border: 1px solid #E5E5E5;
    border-radius: 24px;
    padding: 0 20px 0 50px;
    font-size: 14px;
    color: #666;
    background: #FFFFFF;
    outline: none;
    transition: all 0.3s ease;
}

.search-input-new:focus {
    border-color: #FF8300;
    box-shadow: 0 0 0 3px rgba(255, 131, 0, 0.1);
}

.search-input-new::placeholder {
    color: #999;
}

.search-icon {
    position: absolute;
    left: 18px;
    color: #999;
    width: 16px;
    height: 16px;
    z-index: 2;
}

.filter-wrapper {
    position: relative;
}

.filter-button-new {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 20px;
    background: #FF8300;
    color: #FFFFFF;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.filter-button-new:hover {
    background: #E6740A;
    color: #FFFFFF;
    text-decoration: none;
}

.filter-text {
    font-weight: 600;
}

.filter-icon {
    width: 12px;
    height: 12px;
}

/* Modern Filter Dropdown - Airbnb Style */
.filter-dropdown-container {
    position: relative;
}

.filter-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 380px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    overflow: hidden;
    animation: dropdownSlideIn 0.2s ease-out;
}

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.filter-dropdown-header {
    padding: 20px 24px 16px 24px;
    border-bottom: 1px solid #F0F0F0;
}

.filter-dropdown-title {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0;
    letter-spacing: -0.01em;
}

.filter-dropdown-body {
    padding: 20px 24px;
}

/* Clean Filter Layout */
.filter-section-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.filter-field {
    display: flex;
    flex-direction: column;
}

.field-label {
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select-clean,
.filter-input-clean {
    width: 100%;
    height: 40px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 14px;
    color: #1F2937;
    background: #FFFFFF;
    transition: all 0.15s ease;
    box-sizing: border-box;
}

.filter-select-clean {
    appearance: none;
    cursor: pointer;
    padding-right: 32px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
}

.filter-select-clean:hover,
.filter-input-clean:hover {
    border-color: #D1D5DB;
}

.filter-select-clean:focus {
    outline: none;
    border-color: #FF8300;
    box-shadow: 0 0 0 3px rgba(255, 131, 0, 0.08);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF8300' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

.filter-input-clean:focus {
    outline: none;
    border-color: #FF8300;
    box-shadow: 0 0 0 3px rgba(255, 131, 0, 0.08);
}

.filter-input-clean::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

/* Footer */
.filter-dropdown-footer {
    padding: 16px 24px 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FAFAFA;
    border-top: 1px solid #F0F0F0;
}

.clear-btn {
    color: #6B7280;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.clear-btn:hover {
    color: #374151;
    background: #F3F4F6;
    text-decoration: none;
}

.apply-btn {
    background: linear-gradient(135deg, #FF8300 0%, #FF9F40 100%);
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 2px 4px rgba(255, 131, 0, 0.2);
}

.apply-btn:hover {
    background: linear-gradient(135deg, #E6740A 0%, #FF8300 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 131, 0, 0.3);
}

.filter-section {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #F5F5F5;
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-section-title {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.property-type-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.property-type-option {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    transition: all 0.2s ease;
    background: #FFFFFF;
}

.property-type-option:hover {
    border-color: #FF8300;
    background: #FFF7F0;
}

.property-type-radio {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.property-type-radio:checked {
    border-color: #FF8300;
    background: #FF8300;
}

.property-type-radio:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #FFFFFF;
    border-radius: 50%;
}

.property-type-option:has(.property-type-radio:checked) {
    border-color: #FF8300;
    background: #FFF7F0;
}

.property-type-label {
    font-size: 14px;
    color: #1F2937;
    font-weight: 500;
    letter-spacing: -0.01em;
}

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

.filter-col {
    display: flex;
    flex-direction: column;
}

.filter-label {
    font-size: 13px;
    color: #374151;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.required {
    color: #FF8300;
    margin-left: 2px;
}

.filter-select-wrapper {
    position: relative;
}

.filter-select {
    width: 100%;
    height: 44px;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    padding: 0 40px 0 14px;
    font-size: 14px;
    color: #1F2937;
    background: #FFFFFF;
    appearance: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.filter-select:hover {
    border-color: #D1D5DB;
}

.filter-select:focus {
    outline: none;
    border-color: #FF8300;
    box-shadow: 0 0 0 3px rgba(255, 131, 0, 0.08);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF8300' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

.filter-input {
    width: 100%;
    height: 44px;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 14px;
    color: #1F2937;
    background: #FFFFFF;
    outline: none;
    transition: all 0.2s ease;
}

.filter-input:hover {
    border-color: #D1D5DB;
}

.filter-input:focus {
    border-color: #FF8300;
    box-shadow: 0 0 0 3px rgba(255, 131, 0, 0.08);
}

.filter-input::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

/* Modern Range Slider */
.filter-range-section {
    margin: 24px 0;
    padding: 20px 24px;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #F3F4F6;
}

.range-slider-container {
    padding: 0 12px;
}

.range-slider {
    position: relative;
    width: 100%;
    height: 4px;
    margin: 20px 0;
}

.range-track {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #E5E7EB;
    border-radius: 2px;
}

.range-fill {
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, #FF8300 0%, #FF9F40 100%);
    border-radius: 2px;
    left: 20%;
    width: 60%;
}

.range-thumb {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #FF8300;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    top: -7px;
    box-shadow: 0 4px 12px rgba(255, 131, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(255, 131, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.15);
}

.range-thumb-min {
    left: 20%;
    transform: translateX(-50%);
}

.range-thumb-max {
    left: 80%;
    transform: translateX(-50%);
}

/* Modern Footer */
.filter-modal-footer {
    padding: 20px 28px 28px 28px;
    display: flex;
    gap: 12px;
    background: #FAFAFA;
    border-top: 1px solid #F1F1F1;
}

.filter-btn {
    flex: 1;
    height: 44px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 44px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.filter-btn-reset {
    background: #FFFFFF;
    color: #6B7280;
    border: 1.5px solid #E5E7EB;
}

.filter-btn-reset:hover {
    background: #F9FAFB;
    color: #374151;
    border-color: #D1D5DB;
    text-decoration: none;
    transform: translateY(-1px);
}

.filter-btn-apply {
    background: linear-gradient(135deg, #FF8300 0%, #FF9F40 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 131, 0, 0.25);
}

.filter-btn-apply:hover {
    background: linear-gradient(135deg, #E6740A 0%, #FF8300 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 131, 0, 0.35);
}

/* Responsive Design */
@media only screen and (max-width: 960px) {
    .property-list-title-new {
        font-size: 24px;
    }

    .search-filter-container {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .search-input-new {
        width: 100%;
    }

    .filter-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .filter-modal-new {
        max-width: 95%;
        margin: 10px;
        max-height: 95vh;
    }

    .filter-modal-header {
        padding: 20px 20px 12px 20px;
    }

    .filter-modal-body {
        padding: 16px 20px;
        max-height: calc(95vh - 140px);
    }

    .filter-modal-footer {
        padding: 16px 20px 20px 20px;
    }

    .property-type-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .filter-section {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .range-slider-container {
        padding: 0 8px;
    }

    .filter-range-section {
        padding: 16px 20px;
        margin: 16px 0;
    }
}

@media only screen and (max-width: 600px) {
    .property-list-title-new {
        font-size: 20px;
        text-align: center;
    }

    .search-input-new {
        height: 44px;
        font-size: 13px;
        padding: 0 16px 0 44px;
    }

    .filter-button-new {
        height: 44px;
        font-size: 13px;
        padding: 0 16px;
    }

    .filter-modal-title {
        font-size: 20px;
    }

    .filter-btn {
        height: 44px;
        line-height: 44px;
        font-size: 13px;
    }

    /* Mobile Dropdown Adjustments */
    .filter-dropdown {
        width: 320px;
        right: -20px;
    }

    .quick-filters {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .filter-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .filter-dropdown-header {
        padding: 16px 20px 12px 20px;
    }

    .filter-dropdown-body {
        padding: 16px 20px;
    }

    .filter-dropdown-footer {
        padding: 12px 20px 16px 20px;
    }
}

@media only screen and (max-width: 480px) {
    .filter-dropdown {
        width: 280px;
        right: -30px;
    }
}

/* Mobile Header Styles */
.property-mobile-header-new {
    padding: 20px 0;
}

.property-list-title-mobile-new {
    font-size: 20px;
    color: #181818;
    font-weight: bold;
    text-align: center;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.search-filter-container-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-wrapper-mobile {
    width: 100%;
}

.search-input-container-mobile {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-mobile-new {
    width: 100%;
    height: 44px;
    border: 1px solid #E5E5E5;
    border-radius: 22px;
    padding: 0 16px 0 44px;
    font-size: 13px;
    color: #666;
    background: #FFFFFF;
    outline: none;
    transition: all 0.3s ease;
}

.search-input-mobile-new:focus {
    border-color: #FF8300;
    box-shadow: 0 0 0 3px rgba(255, 131, 0, 0.1);
}

.search-input-mobile-new::placeholder {
    color: #999;
}

.search-icon-mobile {
    position: absolute;
    left: 16px;
    color: #999;
    width: 14px;
    height: 14px;
    z-index: 2;
}

.filter-wrapper-mobile {
    width: 100%;
}

.filter-button-mobile-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 44px;
    padding: 0 16px;
    background: #FF8300;
    color: #FFFFFF;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.filter-button-mobile-new:hover {
    background: #E6740A;
    color: #FFFFFF;
    text-decoration: none;
}

.filter-text-mobile {
    font-weight: 600;
}

.filter-icon-mobile {
    width: 10px;
    height: 10px;
}

/* Mobile Filter Dropdown */
.filter-dropdown-container-mobile {
    position: relative;
}

.filter-dropdown-mobile {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    overflow: hidden;
    animation: dropdownSlideIn 0.2s ease-out;
}

.filter-mobile-header {
    padding: 16px 20px 12px 20px;
    border-bottom: 1px solid #F0F0F0;
}

.filter-mobile-title {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0;
}

.filter-mobile-body {
    padding: 16px 20px;
}

.mobile-filter-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-filter-field {
    display: flex;
    flex-direction: column;
}

.mobile-field-label {
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-filter-select {
    width: 100%;
    height: 44px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 0 12px;
    padding-right: 40px;
    font-size: 14px;
    color: #1F2937;
    background: #FFFFFF;
    appearance: none;
    cursor: pointer;
    transition: all 0.15s ease;
    box-sizing: border-box;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
}

.mobile-filter-select:hover {
    border-color: #D1D5DB;
}

.mobile-filter-select:focus {
    outline: none;
    border-color: #FF8300;
    box-shadow: 0 0 0 3px rgba(255, 131, 0, 0.08);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF8300' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

.filter-mobile-footer {
    padding: 12px 20px 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FAFAFA;
    border-top: 1px solid #F0F0F0;
}

.clear-btn-mobile {
    color: #6B7280;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.clear-btn-mobile:hover {
    color: #374151;
    background: #F3F4F6;
    text-decoration: none;
}

.apply-btn-mobile {
    background: linear-gradient(135deg, #FF8300 0%, #FF9F40 100%);
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 2px 4px rgba(255, 131, 0, 0.2);
}

.apply-btn-mobile:hover {
    background: linear-gradient(135deg, #E6740A 0%, #FF8300 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 131, 0, 0.3);
}

/* Property List Section Styles */
.property-list-header {
    margin-bottom: 40px;
}

.property-list-title {
    font-size: 42px;
    line-height: 1.2;
    color: #181818;
    margin-bottom: 0;
}

.property-search-form .uk-search-input {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    height: 50px;
}

.filter-button {
    background: #FF8300;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.filter-button:hover {
    background: #e6750d;
    color: white;
    text-decoration: none;
}

/* Property Cards Container */
.property-cards-container {
    margin-top: 40px;
    padding-bottom: 60px;
}

@media only screen and (max-width: 960px) {
    .property-cards-container {
        padding-bottom: 60px;
    }
}

/* Property Card Styles - Match promo-kredit-section */
.property-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.property-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.developer-logo {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tablet responsive for developer logos */
@media only screen and (max-width: 960px) and (min-width: 601px) {
    .developer-logo {
        width: 50px;
        height: 50px;
        padding: 5px;
    }
    
    .developer-logo img {
        width: 40px;
        height: 40px;
    }
    
    .promo-kredit-section .developer-logo {
        width: 50px;
        height: 50px;
    }
    
    .promo-kredit-section .developer-logo img {
        max-width: 40px;
        max-height: 40px;
    }
}

.developer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.property-details {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-title {
    font-size: 16px;
    line-height: 1.3;
    color: #181818;
    margin-bottom: 8px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.location-icon {
    width: 16px;
    height: 16px;
    color: #7d7d7d;
}

.location-text {
    font-size: 14px;
    color: #7d7d7d;
    font-weight: 600;
}

.property-price {
    margin-top: auto;
}

.price-label {
    font-size: 12px;
    color: #616161;
    margin-bottom: 4px;
    display: block;
}

.price-value {
    font-size: 18px;
    color: #FF8300;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 4px;
}

.installment-info {
    font-size: 14px;
    color: #616161;
    line-height: 1.2;
}

/* Mobile Property List Styles */
.property-mobile-section {
    margin-top: 40px;
    padding: 0 5px 60px 5px;
}

.property-list-title-mobile {
    font-size: 28px;
    line-height: 1.2;
    color: #181818;
    margin-bottom: 20px;
    text-align: center;
}

.property-search-form-mobile .uk-search-input {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    height: 45px;
}

.filter-button-mobile {
    background: #FF8300;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-button-mobile:hover {
    background: #e6750d;
    color: white;
    text-decoration: none;
}

.property-cards-mobile {
    margin-top: 30px;
}

.property-cards-mobile .uk-first-column {
    margin-left: 0 !important;
}

.property-cards-mobile .uk-grid {
    margin-left: -27px !important;
}

/* Mobile Property Card Adjustments */
.property-card-mobile {
    height: auto;
}

.property-image-mobile {
    height: 140px;
}

.developer-logo-mobile {
    top: 8px;
    right: 8px;
    padding: 4px;
}

.developer-logo-mobile img {
    width: 30px;
    height: 15px;
}

.property-details-mobile {
    padding: 12px;
}

.property-title-mobile {
    font-size: 14px;
    margin-bottom: 6px;
}

.property-location-mobile .location-text {
    font-size: 12px;
}

.property-location-mobile {
    margin-bottom: 12px;
}

.property-price-mobile .price-label {
    font-size: 10px;
}

.property-price-mobile .price-value {
    font-size: 14px;
    margin-bottom: 2px;
}

.property-price-mobile .installment-info {
    font-size: 11px;
}

/* Responsive adjustments */
@media only screen and (max-width: 960px) {
    .property-list-title {
        font-size: 36px;
        text-align: center;
    }

    .property-list-header {
        text-align: center;
    }
}

@media only screen and (max-width: 600px) {
    .property-image-mobile {
        height: 120px;
    }

    .property-details-mobile {
        padding: 10px;
    }

    .property-title-mobile {
        font-size: 13px;
    }
}

/* Adjust spacing between program-promo-kpr-section and properti-top */
.program-promo-kpr-section {
    padding-bottom: 40px;
}

.program-promo-kpr-section + .properti-top {
    margin-top: 0;
}

@media only screen and (max-width: 960px) {
    .program-promo-kpr-section {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 600px) {
    .program-promo-kpr-section {
        padding-bottom: 40px;
        padding-top: 40px;
    }

    .program-promo-kpr-section + .properti-top {
        margin-top: 20px;
    }
}

/* HERO BANNER DESKTOP OVERRIDE - Must be at the end for proper specificity */
@media screen and (min-width: 769px) {
    .hero-banner {
        /* Responsive height with proper aspect ratio */
        min-height: 600px !important;
        height: clamp(600px, calc(100vw * 701 / 1560), 90vh) !important;
        max-height: 90vh !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
    }

    .hero-banner::before {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .hero-banner::after {
        /* Background image positioning */
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
    }

    /* Force text colors for visibility on yellow background */
    .hero-banner .hero-title {
        color: #1a1a1a !important;
        text-shadow: none !important;
    }

    .hero-banner .hero-description {
        color: #333333 !important;
        text-shadow: none !important;
    }

    /* Update countdown timer for better visibility */
    .hero-banner .countdown-item {
        background: rgba(255, 131, 0, 0.15) !important;
        color: #333 !important;
        border: none !important;
        backdrop-filter: blur(8px) !important;
    }

    .hero-banner .countdown-number {
        color: #FF8300 !important;
    }

    .hero-banner .countdown-label {
        color: #333 !important;
    }

    /* Update hero button for better visibility */
    .hero-banner .hero-cta-button {
        background: #FF8300 !important;
        background-image: linear-gradient(45deg, #FF8300 0%, #FF8300 55%, #FFAE51 90%) !important;
        color: white !important;
        box-shadow: 0 4px 15px rgba(255, 131, 0, 0.3) !important;
    }

    .hero-banner .hero-cta-button:hover {
        background: #e07400 !important;
        box-shadow: 0 6px 20px rgba(255, 131, 0, 0.4) !important;
        color: white !important;
    }
}

/* HERO BANNER TABLET OVERRIDE */
@media screen and (min-width: 600px) and (max-width: 768px) {
    .hero-banner {
        min-height: 500px !important;
        height: 70vh !important;
        max-height: 700px !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    .hero-banner::after {
        background-size: cover !important;
        background-position: center center !important;
    }
}
