.main {
    margin-top: 0;
}
.lazada_banner_section {
    position: relative;
}
.lazada_benefits_banner {
    overflow: hidden;
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
}
.lazada_benefits_banner_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.lazada_title_content {
    position: relative;
    color: #fff;
    text-align: left;
    z-index: 10;
    width: 100%;
    display: flex;
    align-items: center;
}
.lazada_hero_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 670px;
}
.lazada_hero_subtitle p {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    color: #ffffff;
    text-transform: uppercase;
    padding: 8px 1.5rem;
    background-color: #0148b9;
    border-radius: 24px;
}

.lazada_hero_title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}
.lazada_hero_description {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}
.lazada_hero_cta {
    margin-top: 1rem;
}

/* Info Lazada Section */
.info_lazada_section {
    padding: 2rem 0;
}

.info_grid {
    display: grid;
    grid-template-columns: 3fr 4fr;
    gap: 3rem;
    align-items: center;
    height: 552px;
}

.info_left_col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.info_title {
    font-size: 2rem;
    font-weight: 700;
    color: #002981;
    line-height: 1.3;
}

.info_description {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
}

.info_right_col {
    display: flex;
    gap: 1.5rem;
    height: 435px;
}

.video-container {
    width: 290px;
    aspect-ratio: 2 / 3;
    border-radius: 1rem;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info_features_wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature_card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature_card_header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature_icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #0148b9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature_title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0148b9;
    margin: 0;
}

.feature_card_body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-in-out, margin-top 0.6s ease-in-out;
}

.feature_desc {
    margin: 0;
    padding-top: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    border-top: 1px solid #eee;
}

/* Active state for feature card */
.feature_card.active {
    border-color: #0148b9;
    box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.1),
        0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.feature_card.active .feature_card_body {
    max-height: 200px;
    margin-top: 1rem;
}

/* Lazada Overview Section */
.overview_section {
    padding: 4rem 0;
}

.overview_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.overview_card {
    background-color: #f8f8f8;
    border-radius: 1rem;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview_card:hover {
    transform: translateY(-5px);
}

.overview_card_icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
}

.overview_card_icon img {
    width: 70px;
    height: 65px;
}

.overview_card_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    width: 80%;
    line-height: 1.5;
}

.overview_card_content ul {
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
    list-style: none;
}

.overview_card_content ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: #222222;
    font-size: 14px;
    font-weight: 400;
}

.overview_card_content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    background-color: #0148b9;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.overview_card_footer {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, #0148b9, #002981);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    width: 100%;
    max-width: 250px;
}

.btn-contact span {
    flex-grow: 1;
    text-align: center;
}

.overview_card_footer img {
    transition: transform 0.3s ease;
    margin-right: 1.75rem;
}

.overview_card:hover .overview_card_footer img {
    transform: translateX(10px);
}
.title_section_overview {
    margin-bottom: 2.5rem;
    color: #002981;
}
.contact-section {
    background-image: url('../../images/bg-contact-detail.jpg') !important;
    position: relative;
}
.form-submit-contact{
  display: flex;
  justify-content: end;
  align-items: center;
}
.contact-submit-btn {
  background-color: #0148B9 !important;
  color: #fff !important;
}
.contact-icon-wrapper {
  padding: 13px;
  background: rgba(255,255,255,0.9);
  border-radius: 20%;
}
.contact-title {
    font-size: 1.5rem;
}
/* Typography Responsive Classes */
.text-size-xl {
    font-size: 1.5rem;
    line-height: 1.33333;
}

.text-size-sm {
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive Text Sizes - SMALL (576px+) */
@media (min-width: 576px) {
    .text-size-sm-2xl {
        font-size: 1.5rem !important;
        line-height: 2rem !important;
    }

    .text-size-sm-base {
        font-size: 1rem !important;
        line-height: 1.5rem !important;
    }

    .pricing-table {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .pricing-table-header {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .pricing-table-category {
        white-space: nowrap;
    }
}

/* Responsive Text Sizes - MEDIUM (768px+) */
@media (min-width: 768px) {
    .text-size-md-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}
@media (min-width: 768px) {
    .contact-section::after {
        width: 100%;
        height: 50%;
        left: 0;
        right: 0;
        top: 50%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-description {
        font-size: 1.125rem;
    }

    .contact-airplane-icon svg {
        width: 160px;
        height: 160px;
    }

    .contact-form-container {
        padding: 3rem;
    }
}

/* Responsive Overflow - SMALL (576px+) */
@media (min-width: 576px) {
    .overflow-x-sm-auto {
        overflow-x: auto;
    }
}

/* Responsive Table Constraints */
@media (min-width: 576px) {
    .pricing-table-th-category {
        min-width: 200px;
    }
}

/* Shadow Enhancement */
.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Rounded Enhancement */
.rounded {
    border-radius: 0.5rem;
}

/* Additional Table Spacing for Better UX */
.pricing-table td,
.pricing-table th {
    vertical-align: middle;
}

/* Mobile Optimization */
@media (max-width: 575.98px) {
    .pricing-table-category {
        white-space: normal;
        word-wrap: break-word;
    }

    .pricing-table-description {
        hyphens: auto;
        word-break: break-word;
    }

    /* Ensure minimum readable text size on mobile */
    .pricing-table {
        font-size: 0.8125rem;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .pricing-table-border {
        border-width: 2px;
    }

    .pricing-table-row:hover {
        background-color: #e5e7eb !important;
        border-color: #374151 !important;
    }

    .pricing-table-highlight {
        color: #dc2626;
        font-weight: 700;
    }
}

/* Print Styles */
@media print {
    .pricing-table-border {
        border: 2px solid #000 !important;
    }

    .pricing-table-row:hover {
        background-color: white !important;
    }

    .transition-colors,
    .duration-300 {
        transition: none;
    }
}

/* Accessibility Enhancements */
.pricing-table:focus-within {
    outline: 2px solid #002980;
    outline-offset: 2px;
}

/* Loading State (if needed) */
.pricing-table.loading {
    opacity: 0.7;
    pointer-events: none;
}

.pricing-table.loading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Table Behavior */
@media (max-width: 767.98px) {
    .lazada_title_content {
        padding: 0 1rem;
        text-align: center;
    }
    .lazada_hero_subtitle p {
        font-size: 1rem;
    }
    .lazada_hero_title {
        font-size: 1.5rem;
    }
    .lazada_benefits_banner {
        height: 100vh;
    }
    .overflow-x-auto {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #002980 #f1f5f9;
    }

    .overflow-x-auto::-webkit-scrollbar {
        height: 6px;
    }

    .overflow-x-auto::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 3px;
    }

    .overflow-x-auto::-webkit-scrollbar-thumb {
        background: #002980;
        border-radius: 3px;
    }

    .overflow-x-auto::-webkit-scrollbar-thumb:hover {
        background: #001952;
    }
    /* Info Shopee Section */
    .info_grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .info_right_col {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .video-container {
        width: 100%;
        aspect-ratio: 3 / 2;
    }
    .info_title {
        font-size: 1.5rem;
    }
    /* Overview */
    .overview_section {
        padding: 2rem 0;
    }
    .overview_grid {
        grid-template-columns: 1fr;
    }
    .overview_card {
        padding: 1.5rem;
    }
    .overview_card_title {
        font-size: 1.25rem;
        width: 100%;
    }
    .btn-contact {
        max-width: 100%;
    }
    .overview_card_footer img {
        display: none;
    }
    .title_section_overview {
        margin-bottom: 1rem;
    }
}

/* Table Animation on Load */
.pricing-table {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effect for Interactive Elements */
.pricing-table-row {
    position: relative;
}

.pricing-table-row th::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #002980;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.pricing-table-row:hover th::before {
    transform: scaleY(1);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .pricing-table-border,
    .pricing-table-row,
    .transition-colors,
    .duration-300 {
        transition: none;
    }

    .pricing-table {
        animation: none;
    }

    .pricing-table-row::before {
        transition: none;
    }
}
