.ellipsis_1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis_2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis_3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis_4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Container untuk tombol */
.containers {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

/* Tombol Buy Now dengan gradient menarik */
.buy-now-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.6),
                0 0 40px rgba(118, 75, 162, 0.4),
                0 0 60px rgba(240, 147, 251, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite, glow-pulse 2s ease-in-out infinite;
}

/* Hover effect */
.buy-now-button:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.9),
                0 0 60px rgba(118, 75, 162, 0.7),
                0 0 90px rgba(240, 147, 251, 0.5);
    animation: gradient-shift 1.5s ease infinite;
}

/* Active effect */
.buy-now-button:active {
    transform: scale(0.98);
}

/* Gradient shifting animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Glowing pulse animation */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.6),
                    0 0 40px rgba(118, 75, 162, 0.4),
                    0 0 60px rgba(240, 147, 251, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(102, 126, 234, 0.8),
                    0 0 60px rgba(118, 75, 162, 0.6),
                    0 0 90px rgba(240, 147, 251, 0.4);
    }
}

/* Pulse border animation */
.buy-now-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 2px solid #667eea;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Responsif untuk mobile */
@media (max-width: 768px) {
    .containers {
        bottom: 15px;
        left: 15px;
    }
    
    .buy-now-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Responsif untuk layar sangat kecil */
@media (max-width: 480px) {
    .buy-now-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

.buttons {
    background: #25d366;
    box-shadow: 0px 5px 11px -2px rgba(0, 0, 0, 0.18),
        0px 4px 12px -7px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    display: block;
    width: 56px;
    height: 56px;
    margin: 20px auto 0;
    position: relative;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}

.buttons:active,
.buttons:focus,
.buttons:hover {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
}

.buttons:not(:last-child) {
    width: 40px;
    height: 40px;
    margin: 20px auto 0;
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
}

.containers:hover .buttons:not(:last-child) {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin: 15px auto 0;
}

.buttons:nth-last-child(1) {
    -webkit-transition-delay: 25ms;
    transition-delay: 25ms;
    background-image: url(/assets/defaults/gambar/whatsapp.png);
    background-size: contain;
}

.buttons:not(:last-child):nth-last-child(2) {
    -webkit-transition-delay: 50ms;
    transition-delay: 20ms;
    background-image: url(/assets/defaults/gambar/whatsapp.png);
    background-size: contain;
}

.buttons:not(:last-child):nth-last-child(3) {
    -webkit-transition-delay: 75ms;
    transition-delay: 40ms;
    background-image: url(/assets/defaults/gambar/whatsapp.png);
    background-size: contain;
}

.buttons:not(:last-child):nth-last-child(4) {
    -webkit-transition-delay: 100ms;
    transition-delay: 60ms;
    background-image: url(/assets/defaults/gambar/whatsapp.png);
    background-size: contain;
}

[tooltip]:before {
    bottom: 25%;
    font-family: arial;
    font-weight: 600;
    border-radius: 2px;
    background: #585858;
    color: #fff;
    content: attr(tooltip);
    font-size: 12px;
    visibility: hidden;
    opacity: 0;
    padding: 5px 7px;
    margin-left: 12px;
    position: absolute;
    left: 100%;
    white-space: nowrap;
}

[tooltip]:hover:before,
[tooltip]:hover:after {
    visibility: visible;
    opacity: 1;
}

.text-black {
    color: #000;
}

.text-hijau {
    color: #348e38;
}

.header-title-produk {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hover-image {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hover-image:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.imageCard__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.imageCard:hover .imageCard__play {
    opacity: 1;
    visibility: visible;
}

.plyr {
    height: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: block;
}

.fancybox__content {
    background: transparent;
}

.fancybox__content video,
.fancybox__content iframe {
    display: block;
    width: 100%;
    height: 100%;
}

    .headline-in-header {
        background: #1A2C58;
        /* padding: 6px 0; */
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        z-index: 999;
    }

    .headline-tagline {
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.75rem;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        letter-spacing: 0.8px;
        display: inline-block;
        margin: 0;
    }

    @media (max-width: 768px) {
        .headline-in-header {
            padding: 4px 0;
        }

        .headline-tagline {
            font-size: 0.7rem;
            letter-spacing: 0.6px;
        }
    }

.plyr__controls {
    opacity: 1 !important;
    visibility: visible !important;
}

.contact-map-large {
    width: 100%;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.layout-pt-lg.layout-pb-lg.bg-accent-2 {
    margin-top: 60px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.contactForm {
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
    .layout-pt-lg.layout-pb-lg.bg-accent-2 {
        margin-top: 40px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .contact-map-large {
        height: 320px;
        margin-bottom: 15px;
    }

    .contactForm {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .layout-pt-lg.layout-pb-lg.bg-accent-2 {
        margin-top: 30px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .contact-map-large {
        height: 280px;
        margin-bottom: 10px;
    }

    .contactForm {
        padding: 20px;
    }
}

.footer-map {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map-large iframe,
.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Executive Badge Styling */
.executive-badge {
    background-color: #2c3e50;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 15px;
}

.executive-badge .badge-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.executive-badge .badge-subtitle {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

/* Date Badge */
.date-badge {
    background-color: #4a5568;
    color: white;
    padding: 12px 25px;
    border-radius: 20px;
    display: inline-block;
}

.date-badge .date-text {
    font-size: 16px;
    font-weight: 600;
}

/* Vertical Image Styling */
.about-img-vertical {
    max-width: 600px;
    margin: 0 auto;
}

.about-img-vertical img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-img-vertical:hover img {
    transform: translateY(-5px);
}

.about-content-vertical {
    text-align: left;
}

.about-content-vertical .intro-text {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
    text-align: left;
}

.about-content-vertical p.fs-md {
    bold font-weight: 600;
    text-align: left;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
    color: #555;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--theme-color, #007bff);
    font-size: 18px;
    font-weight: bold;
}

.feature-list li strong {
    color: var(--theme-color, #007bff);
    font-weight: 700;
}


/* Responsive Design */
@media (max-width: 768px) {
    .executive-badge {
        padding: 12px 20px;
    }

    .executive-badge .badge-title {
        font-size: 16px;
    }

    .date-badge {
        padding: 10px 20px;
    }

    .about-content-vertical p {
        font-size: 16px;
    }

    .feature-list li {
        font-size: 14px;
        padding-left: 25px;
    }
}

/* isi kontek section 2 */
.access-content .access-title {
    color: var(--theme-color, #007bff);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.target-audience {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.target-audience p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* Modal styling */
.modal-fit-screen {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.modal-fit-screen .modal-header {
    background: linear-gradient(45deg, var(--theme-color), var(--theme-color2));
    color: white;
    flex-shrink: 0;
    padding: 15px 20px;
}

.modal-fit-screen .modal-title {
    font-weight: 600;
    font-size: 18px;
    color: white;
}

.modal-fit-screen .btn-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 1;
}

.modal-fit-screen .btn-close i {
    color: white;
    font-size: 18px;
    font-weight: 900;
}

.modal-fit-screen .btn-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.modal-fit-screen .btn-close:hover i {
    color: #fff;
}

.modal-fit-screen .btn-close:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
    outline: none;
}

.modal-fit-screen .btn-close:active {
    transform: scale(0.95);
}

.modal-fit-screen .modal-body {
    flex: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
    max-height: calc(85vh - 120px);
}

.modal-fit-screen .modal-footer {
    background: rgba(248, 249, 250, 0.9);
    flex-shrink: 0;
}

.modal-image-fit {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.cta-btn .vs-btn {
    min-width: 150px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cta-btn .vs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-md {
        max-width: 95% !important;
        margin: 1.75rem auto;
    }

    .modal-fit-screen {
        max-height: 90vh;
    }

    .modal-fit-screen .modal-body {
        max-height: calc(90vh - 140px);
        padding: 10px;
    }

    .modal-fit-screen .modal-title {
        font-size: 16px;
    }

    .cta-btn .vs-btn {
        min-width: 140px;
        padding: 8px 18px;
        font-size: 13px;
        margin: 0 10px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-md {
        max-width: 95% !important;
        margin: 1.75rem auto;
    }

    .modal-fit-screen {
        max-height: 90vh;
    }

    .modal-fit-screen .modal-body {
        max-height: calc(90vh - 140px);
        padding: 10px;
    }

    .modal-fit-screen .modal-title {
        font-size: 16px;
    }

    .cta-btn .vs-btn {
        min-width: 100%;
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .modal-md {
        max-width: 98% !important;
        margin: 0.5rem auto;
    }

    .modal-fit-screen {
        max-height: 95vh;
        border-radius: 10px;
    }

    .modal-fit-screen .modal-body {
        max-height: calc(95vh - 140px);
    }

    .cta-btn .vs-btn {
        min-width: 120px;
        padding: 7px 15px;
        font-size: 12px;
    }
}

/* Section Ticketing */
.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.ticketing-image-wrapper {
    padding: 20px 0;
    position: relative;
}

.ticketing-image-wrapper img,
.ticketing-main-image {
    position: relative;
    z-index: 1;
    max-width: 65%;
    height: auto;
    transition: all 0.3s ease;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.ticketing-image-wrapper img:hover,
.ticketing-main-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-section {
    margin-bottom: 2rem;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.special-price-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.normal-price-header, .early-bird-header {
    background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.pricing-title-large {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #495057;
    margin: 0.25rem 0;
}

.ticket-button {
    display: block;
    text-decoration: none;
    border-radius: 25px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    min-height: 80px;
}

.ticket-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.ticket-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.ticket-type {
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.ticket-action {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.ticket-button:hover .ticket-action {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.bronze-ticket {
    background: linear-gradient(135deg, #cd7f32, #b87333);
}

.bronze-ticket-normal {
    background: linear-gradient(135deg, #a0522d, #8b4513);
}

.bronze-ticket-early {
    background: linear-gradient(135deg, #d4a373, #c19159);
}

.silver-ticket {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

.gold-ticket {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.platinum-ticket {
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.online-ticket {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.silver-ticket-normal {
    background: linear-gradient(135deg, #5d6d7e, #515a5a);
}

.gold-ticket-normal {
    background: linear-gradient(135deg, #b7950b, #a6761d);
}

.platinum-ticket-normal {
    background: linear-gradient(135deg, #1b2631, #17202a);
}

.online-ticket-normal {
    background: linear-gradient(135deg, #2471a3, #1f618d);
}

.silver-ticket-early {
    background: linear-gradient(135deg, #85929e, #6c7b7f);
}

.gold-ticket-early {
    background: linear-gradient(135deg, #d4ac0d, #b7950b);
}

.platinum-ticket-early {
    background: linear-gradient(135deg, #2e4053, #283747);
}

.online-ticket-early {
    background: linear-gradient(135deg, #2e86ab, #21618c);
}

.early-bird-note {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .ticketing-image-wrapper img,
    .ticketing-main-image {
        max-width: 80%;
    }

    .pricing-section {
        max-width: 85%;
    }
}

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

    .pricing-title-large {
        font-size: 1.5rem;
    }

    .ticket-type {
        font-size: 1.2rem;
    }

    .ticket-button {
        padding: 1.2rem 0.8rem;
        min-height: 70px;
    }

    .ticketing-image-wrapper img,
    .ticketing-main-image {
        max-width: 85%;
    }

    .pricing-section {
        max-width: 90%;
    }
}

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

    .pricing-subtitle {
        font-size: 1rem;
    }

    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ticketing-image-wrapper img,
    .ticketing-main-image {
        max-width: 90%;
    }

    .pricing-section {
        max-width: 95%;
    }
}

/* Executive Session */
.executive-layout {
    position: relative;
    overflow: hidden;
}

.executive-card-wrapper {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}

.executive-card-wrapper .row {
    margin: 0;
    display: flex;
    align-items: stretch;
}

.executive-date-card-left {
    background: #2C3E50;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    min-height: 600px;
    gap: 20px;
}

.executive-date-card-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.day-number-exec {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.month-year-exec {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.session-details-exec {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    margin: 20px 0;
    position: relative;
    z-index: 2;
}

.session-duration-exec {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.95;
}

.session-venue-exec {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 400;
}

.invitation-badge {
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid rgba(220, 38, 38, 0.4);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    margin-top: 10px;
}

.invitation-badge i {
    font-size: 16px;
}

.invitation-badge span {
    font-size: 13px;
    font-weight: 600;
}

.executive-content-right {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
}

.executive-image-section-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.executive-image-container {
    max-width: 500px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.executive-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.executive-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}



/* Executive Description Section */
.executive-description-section {
    padding: 35px 40px;
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

.executive-description-section h6 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.executive-description-section p {
    margin-bottom: 15px;
    color: #4b5563;
}

/* Default bullet list */
.executive-description-section ul {
    padding-left: 20px;
    margin: 15px 0;
}

.executive-description-section li {
    margin-bottom: 12px;
    color: #374151;
}



.executive-action-section {
    padding: 0 40px 35px 40px;
    text-align: center;
}

.executive-cta-btn {
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.executive-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.badge-subtitle {
    color: #0A282C;
    font-size: 14px;
    margin-top: 10px;
}

.modal-fit-screen {
    border-radius: 15px;
    overflow: hidden;
}

.modal-image-fit {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1199px) {
    .executive-image-container {
        max-width: 450px;
    }
}

@media (max-width: 991px) {
    .executive-card-wrapper .row {
        flex-direction: column;
    }

    .executive-date-card-left {
        min-height: 300px;
        padding: 30px 20px;
    }

    .day-number-exec {
        font-size: 56px;
    }

    .month-year-exec {
        font-size: 20px;
    }

    .executive-image-section-centered {
        padding: 30px;
    }

    .executive-image-container {
        max-width: 400px;
    }

    .executive-description-section {
        padding: 25px 30px;
        font-size: 14px;
    }

    .executive-action-section {
        padding: 0 30px 25px 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .executive-date-card-left {
        min-height: 250px;
        padding: 25px 15px;
    }

    .day-number-exec {
        font-size: 48px;
    }

    .month-year-exec {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .session-duration-exec {
        font-size: 16px;
    }

    .session-venue-exec {
        font-size: 14px;
    }

    .executive-image-section-centered {
        padding: 20px;
    }

    .executive-image-container {
        max-width: 350px;
    }

    .executive-description-section {
        padding: 20px;
        font-size: 14px;
    }

    .executive-action-section {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 576px) {
    .day-number-exec {
        font-size: 40px;
    }

    .month-year-exec {
        font-size: 16px;
    }

    .session-duration-exec {
        font-size: 15px;
    }

    .session-venue-exec {
        font-size: 13px;
    }

    .executive-image-section-centered {
        padding: 15px;
    }

    .executive-image-container {
        max-width: 100%;
    }

    .executive-description-section li {
        padding-left: 25px;
        font-size: 13px;
    }

    .invitation-badge {
        padding: 10px 15px;
        font-size: 12px;
    }
}


/* Conference */
.conference-layout {
    position: relative;
    overflow: hidden;
}

.conference-card-wrapper {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}

.conference-card-wrapper .row {
    margin: 0;
    display: flex;
    align-items: stretch;
}

.conference-date-card-left {
    background: #2C3E50;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    min-height: 600px;
}

.conference-date-card-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.day-number-conf {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.month-year-conf {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.session-details-conf {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 30px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.session-duration-conf {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.95;
}

.session-venue-conf {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 400;
}

.conference-content-right {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
}

.conference-image-section-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.conference-image-container {
    max-width: 500px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conference-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.conference-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Conference Description Section - Default Bullets */
.conference-description-section {
    padding: 35px 40px;
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

.conference-description-section h6 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.conference-description-section p {
    margin-bottom: 15px;
    color: #4b5563;
}

/* Default bullet list - Ganti yang lama dengan ini */
.conference-description-section ul {
    list-style-type: disc;
    padding-left: 30px;
    margin: 15px 0;
}

.conference-description-section li {
    position: relative;
    padding-left: 0;
    margin-bottom: 12px;
    color: #374151;
    line-height: 1.7;
}

/* Hapus ::before custom checkmark */
.conference-description-section li::before {
    display: none;
    content: none;
}

.conference-action-section {
    padding: 0 40px 35px 40px;
    text-align: center;
}

.conference-cta-btn {
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.conference-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

@media (max-width: 1199px) {
    .conference-image-container {
        max-width: 450px;
    }
}

@media (max-width: 991px) {
    .conference-card-wrapper .row {
        flex-direction: column;
    }

    .conference-date-card-left {
        min-height: 300px;
        padding: 30px 20px;
    }

    .day-number-conf {
        font-size: 56px;
    }

    .month-year-conf {
        font-size: 20px;
    }

    .conference-image-section-centered {
        padding: 30px;
    }

    .conference-image-container {
        max-width: 400px;
    }

 .conference-description-section {
        padding: 25px 30px;
        font-size: 14px;
    }

    .conference-description-section ul {
        padding-left: 25px;
    }

    .conference-action-section {
        padding: 0 30px 25px 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .conference-date-card-left {
        min-height: 250px;
        padding: 25px 15px;
    }

    .day-number-conf {
        font-size: 48px;
    }

    .month-year-conf {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .session-duration-conf {
        font-size: 16px;
    }

    .session-venue-conf {
        font-size: 14px;
    }

    .conference-image-section-centered {
        padding: 20px;
    }

    .conference-image-container {
        max-width: 350px;
    }

      .conference-description-section {
        padding: 20px;
        font-size: 14px;
    }

    .conference-description-section ul {
        padding-left: 20px;
    }

    .conference-action-section {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 576px) {
    .day-number-conf {
        font-size: 40px;
    }

    .month-year-conf {
        font-size: 16px;
    }

    .session-duration-conf {
        font-size: 15px;
    }

    .session-venue-conf {
        font-size: 13px;
    }

    .conference-image-section-centered {
        padding: 15px;
    }

    .conference-image-container {
        max-width: 100%;
    }

  .conference-description-section li {
        padding-left: 0;
        font-size: 13px;
    }
}

/* Fix responsive spacing between banner and about section */
.about-layout1 .title-area3.mt-5 {
    margin-top: 3rem !important;
}

@media (max-width: 991px) {
    .about-layout1 .title-area3.mt-5 {
        margin-top: 2rem !important;
    }
}

@media (max-width: 768px) {
    .about-layout1 .title-area3.mt-5 {
        margin-top: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .about-layout1 .title-area3.mt-5 {
        margin-top: 1rem !important;
    }
}

/* Additional spacing adjustments for hero slider */
.cx-event-hero-slider {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-layout1.space {
        padding-top: 40px;
    }
}

@media (max-width: 576px) {
    .about-layout1.space {
        padding-top: 30px;
    }
}

/* Benefit Table Styling */
.benefit-table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a2d58;
    border: 1px solid #2c3e50;
}

.pricing-table tbody tr td {
    padding: 25px 20px;
    vertical-align: top;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-table p {
    margin-bottom: 15px;
}

.pricing-table strong {
    font-size: 18px;
    letter-spacing: 0.5px;
}

.pricing-table ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pricing-table ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.6;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
}

.pricing-table ul li::before {
    content: "\2666";
    position: absolute;
    left: 5px;
    top: 2px;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

/* Responsive untuk tablet */
@media (max-width: 991px) {
    .pricing-table tbody tr td {
        padding: 20px 15px;
    }

    .pricing-table strong {
        font-size: 16px;
    }

    .pricing-table ul li {
        font-size: 13px;
        margin-bottom: 10px;
        padding-left: 28px;
    }

    .pricing-table ul li::before {
        font-size: 14px;
        left: 5px;
    }
}

/* Responsive untuk mobile - Stack columns */
@media (max-width: 768px) {
    .pricing-table tbody tr {
        display: flex;
        flex-direction: column;
    }

    .pricing-table tbody tr td {
        display: block;
        width: 100%;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        padding: 20px 15px;
    }

    .pricing-table tbody tr td:last-child {
        border-bottom: none;
    }

    .pricing-table strong {
        font-size: 17px;
        display: block;
        margin-bottom: 10px;
    }

    .pricing-table ul li {
        font-size: 14px;
        padding-left: 26px;
    }

    .pricing-table ul li::before {
        font-size: 14px;
        left: 4px;
    }
}

/* Responsive untuk mobile kecil */
@media (max-width: 576px) {
    .pricing-table tbody tr td {
        padding: 15px 12px;
    }

    .pricing-table strong {
        font-size: 16px;
    }

    .pricing-table ul li {
        font-size: 13px;
        margin-bottom: 8px;
        padding-left: 24px;
    }

    .pricing-table ul li::before {
        font-size: 13px;
        left: 4px;
    }
}

/* Special Price Header dengan Benefit Table */
.special-price-header .pricing-title {
    margin-bottom: 20px;
}

.special-price-header table {
    margin-top: 15px;
}
