/* =========================================================
   WETRAVEL WIDGETS — Layout only, no typography hardcoded
   Typography diatur dari Elementor Style tab
   ========================================================= */

/* =========================================================
   1. FLIGHT BOOKING WIDGET
   ========================================================= */
.wt-flight-section {
    padding: 70px 20px 80px;
    background: #fff;
    text-align: center;
}
.wt-flight-heading {
    line-height: 1.2;
    margin: 0 0 18px;
}
.wt-flight-subtitle {
    line-height: 1.8;
    max-width: 660px;
    margin: 0 auto 55px;
}
.wt-flight-cards {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    max-width: 840px;
    margin: 0 auto;
}
.wt-flight-card {
    background: #fff;
    border-radius: 20px;
    width: 340px;
    box-shadow: 0 6px 35px rgba(0,0,0,0.10);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.wt-flight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 55px rgba(0,0,0,0.15);
}
.wt-flight-card-top {
    padding: 32px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
}
.wt-flight-card-top::before {
    content: '';
    position: absolute;
    bottom: -30px; right: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
}
.wt-flight-card-top::after {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.wt-flight-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
}
.wt-flight-icon img { object-fit: contain; filter: brightness(0) invert(1); }
.wt-flight-icon i { color: #fff; }
.wt-flight-card-top h3 {
    color: #fff;
    position: relative; z-index: 1;
    margin: 0;
}
.wt-flight-card-bottom {
    padding: 24px 28px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.wt-flight-card-bottom p {
    margin: 0;
    line-height: 1.6;
}
.wt-feature-bold {
    font-weight: 700;
}
.wt-flight-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 13px 38px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
}
.wt-flight-btn:hover { opacity: .88; transform: scale(1.04); color: #fff; }

@media (max-width: 760px) {
    .wt-flight-cards { flex-direction: column; align-items: center; }
    .wt-flight-card  { width: 100%; max-width: 380px; }
}


/* =========================================================
   2. PRICING CARDS WIDGET
   ========================================================= */
.wt-pricing-section {
    padding: 70px 20px 80px;
    background: #fff;
    text-align: center;
}
.wt-pricing-heading {
    margin: 0 0 50px;
}
.wt-pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1020px;
    margin: 0 auto;
}
.wt-price-card {
    background: #fff;
    border-radius: 20px;
    width: 300px;
    box-shadow: 0 6px 35px rgba(0,0,0,0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.wt-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 55px rgba(0,0,0,0.15);
}
.wt-price-header {
    padding: 22px 24px;
    position: relative;
    overflow: hidden;
}
.wt-price-header::before {
    content: '';
    position: absolute;
    top: -25px; right: -25px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.wt-price-header::after {
    content: '';
    position: absolute;
    bottom: -20px; left: 10px;
    width: 70px; height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
}
.wt-price-header h3 {
    margin: 0;
    position: relative; z-index: 1;
}
.wt-price-body {
    padding: 24px 26px 0;
    flex: 1;
    text-align: left;
}
.wt-price-body .wt-feature-list {
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wt-price-body .wt-feature-item {
    display: flex;
    align-items: center;
    gap: 9px;
    line-height: 1.45;
    padding: 0;
}
.wt-price-body .wt-feature-item::before,
.wt-price-body .wt-feature-item::after {
    display: none !important;
    content: none !important;
}
.wt-check-wrap {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.wt-price-footer {
    padding: 22px 26px 28px;
    text-align: center;
}
.wt-price-label {
    margin: 0 0 4px;
}
.wt-price-amount {
    margin: 0 0 18px;
    line-height: 1.2;
}
.wt-price-btn {
    display: inline-block;
    padding: 13px 36px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
}
.wt-price-btn:hover { opacity: .88; transform: scale(1.04); }

@media (max-width: 1000px) and (min-width: 601px) {
    .wt-pricing-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: 660px;
    }
    .wt-price-card { width: 100%; }
    .wt-price-card:last-child {
        grid-column: 1 / -1;
        max-width: 300px;
        justify-self: center;
    }
}
@media (max-width: 600px) {
    .wt-pricing-grid   { flex-direction: column; align-items: center; }
    .wt-price-card     { width: 100%; max-width: 360px; }
    .wt-pricing-heading { margin-bottom: 36px; }
}


/* =========================================================
   3. CORPORATE CARDS WIDGET
   ========================================================= */
.wt-corp-section {
    padding: 70px 20px 80px;
    background: #fff;
    text-align: center;
}
.wt-corp-heading {
    margin: 0 0 50px;
    font-style: italic;
}
.wt-corp-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1020px;
    margin: 0 auto;
}
.wt-corp-card {
    background: #fff;
    border-radius: 20px;
    width: 300px;
    box-shadow: 0 6px 35px rgba(0,0,0,0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.wt-corp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 55px rgba(0,0,0,0.15);
}
.wt-corp-header {
    padding: 22px 24px;
    position: relative;
    overflow: hidden;
    text-align: left;
}
.wt-corp-header::before {
    content: '';
    position: absolute;
    top: -25px; right: -25px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.wt-corp-header::after {
    content: '';
    position: absolute;
    bottom: -20px; left: 10px;
    width: 70px; height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
}
.wt-corp-header h3 {
    margin: 0 0 4px;
    position: relative; z-index: 1;
    line-height: 1.2;
}
.wt-corp-subtitle {
    margin: 0;
    position: relative; z-index: 1;
    opacity: 0.9;
}
.wt-corp-body {
    padding: 20px 24px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.wt-corp-price-block {
    margin-bottom: 14px;
}
.wt-corp-duration {
    margin: 0 0 2px;
}
.wt-corp-price {
    margin: 0;
    line-height: 1.1;
}
.wt-corp-price-suffix {
    /* ukuran relatif diatur lewat Elementor */
}
.wt-corp-feature-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
    margin-bottom: 0;
}
.wt-corp-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}
.wt-corp-feature-item::before,
.wt-corp-feature-item::after {
    display: none !important;
    content: none !important;
}
.wt-corp-icon {
    background: none !important;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}
.wt-corp-footer {
    padding: 20px 0 26px;
    text-align: center;
}
.wt-corp-btn {
    display: inline-block;
    padding: 13px 36px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
}
.wt-corp-btn:hover { opacity: .88; transform: scale(1.04); }

@media (max-width: 1000px) and (min-width: 601px) {
    .wt-corp-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: 660px;
    }
    .wt-corp-card { width: 100%; }
    .wt-corp-card:last-child {
        grid-column: 1 / -1;
        max-width: 300px;
        justify-self: center;
    }
}
@media (max-width: 600px) {
    .wt-corp-grid    { flex-direction: column; align-items: center; }
    .wt-corp-card    { width: 100%; max-width: 360px; }
    .wt-corp-heading { margin-bottom: 28px; }
}
