.stm-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 30px 0;
}

.stm-package-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stm-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.stm-package-image {
    height: 220px;
    overflow: hidden;
    background: #f6f7f9;
}

.stm-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stm-package-content {
    padding: 20px;
}

.stm-package-destination {
    display: inline-block;
    background: #fff6df;
    color: #b98200;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.stm-package-title {
    font-size: 21px;
    line-height: 1.3;
    margin: 0 0 12px;
    color: #002b66;
    font-weight: 700;
}

.stm-package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.stm-package-meta span {
    font-size: 13px;
    color: #444;
    background: #f4f6f8;
    padding: 6px 10px;
    border-radius: 20px;
}

.stm-package-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 14px;
}

.stm-package-price {
    margin-bottom: 16px;
}

.stm-offer-price {
    font-size: 22px;
    font-weight: 800;
    color: #002b66;
}

.stm-regular-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.stm-price-on-request {
    font-size: 18px;
    font-weight: 700;
    color: #002b66;
}

.stm-package-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stm-btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
}

.stm-btn-primary {
    background: #002b66;
    color: #ffffff;
}

.stm-btn-secondary {
    background: #ffb700;
    color: #000000;
}

.stm-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.stm-btn:hover {
    opacity: 0.9;
    color: inherit;
}

.stm-no-packages {
    background: #fff8e5;
    border: 1px solid #ffe1a3;
    padding: 18px;
    border-radius: 12px;
    color: #6f4a00;
}

@media (max-width: 1024px) {
    .stm-package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .stm-package-grid {
        grid-template-columns: 1fr;
    }

    .stm-package-image {
        height: 200px;
    }

    .stm-package-actions {
        flex-direction: column;
    }

    .stm-btn {
        text-align: center;
        width: 100%;
    }
}

.stm-package-detail-wrap {
    max-width: 1180px;
    margin: 40px auto;
    padding: 0 15px;
}

.stm-package-detail-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 28px;
}

.stm-package-detail-image {
    height: 430px;
    border-radius: 20px;
    overflow: hidden;
    background: #f4f6f8;
}

.stm-package-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stm-package-detail-content {
    padding: 10px;
}

.stm-package-detail-destination {
    display: inline-block;
    background: #fff6df;
    color: #b98200;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.stm-package-detail-title {
    font-size: 42px;
    line-height: 1.15;
    color: #002b66;
    margin: 0 0 16px;
    font-weight: 800;
}

.stm-package-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.stm-package-detail-meta span {
    background: #f4f6f8;
    color: #333;
    padding: 8px 13px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.stm-package-detail-price {
    margin-bottom: 20px;
}

.stm-detail-offer-price {
    font-size: 34px;
    color: #002b66;
    font-weight: 900;
}

.stm-detail-regular-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.stm-detail-price-request {
    font-size: 24px;
    color: #002b66;
    font-weight: 800;
}

.stm-package-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.stm-detail-btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
}

.stm-detail-btn-primary {
    background: #002b66;
    color: #ffffff;
}

.stm-detail-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.stm-detail-btn:hover {
    opacity: 0.92;
    color: inherit;
}

.stm-detail-section {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 26px;
    margin-bottom: 22px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.stm-detail-section h2 {
    font-size: 26px;
    color: #002b66;
    margin: 0 0 14px;
    font-weight: 800;
}

.stm-detail-section p,
.stm-detail-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.stm-detail-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.stm-list-yes,
.stm-list-no {
    margin: 0;
    padding: 0;
    list-style: none;
}

.stm-list-yes li,
.stm-list-no li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 11px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.stm-list-yes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #149447;
    font-weight: 900;
}

.stm-list-no li::before {
    content: "×";
    position: absolute;
    left: 0;
    top: 0;
    color: #d63638;
    font-weight: 900;
}

.stm-package-error {
    max-width: 900px;
    margin: 30px auto;
    background: #fff8e5;
    border: 1px solid #ffe1a3;
    color: #6f4a00;
    padding: 18px;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .stm-package-detail-hero {
        grid-template-columns: 1fr;
    }

    .stm-package-detail-title {
        font-size: 32px;
    }

    .stm-package-detail-image {
        height: 300px;
    }

    .stm-detail-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .stm-package-detail-wrap {
        margin: 25px auto;
    }

    .stm-package-detail-hero {
        padding: 15px;
        border-radius: 18px;
    }

    .stm-package-detail-title {
        font-size: 28px;
    }

    .stm-detail-section {
        padding: 20px;
    }

    .stm-package-detail-actions {
        flex-direction: column;
    }

    .stm-detail-btn {
        width: 100%;
        text-align: center;
    }
}

.stm-enquiry-form-wrap {
    max-width: 900px;
    margin: 35px auto;
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.stm-enquiry-form-wrap h2 {
    margin: 0 0 8px;
    color: #002b66;
    font-size: 30px;
    font-weight: 800;
}

.stm-enquiry-subtitle {
    color: #555;
    margin-bottom: 22px;
    font-size: 15px;
}

.stm-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.stm-form-field {
    display: flex;
    flex-direction: column;
}

.stm-form-field-full {
    grid-column: 1 / -1;
}

.stm-form-field label {
    font-size: 14px;
    font-weight: 700;
    color: #002b66;
    margin-bottom: 7px;
}

.stm-form-field input,
.stm-form-field textarea {
    width: 100%;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    color: #222;
    background: #ffffff;
    outline: none;
}

.stm-form-field input:focus,
.stm-form-field textarea:focus {
    border-color: #ffb700;
    box-shadow: 0 0 0 3px rgba(255, 183, 0, 0.16);
}

.stm-enquiry-submit {
    margin-top: 20px;
    background: #002b66;
    color: #ffffff;
    border: none;
    border-radius: 40px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.stm-enquiry-submit:hover {
    opacity: 0.92;
}

.stm-form-success {
    background: #e9f8ef;
    border: 1px solid #bde8cb;
    color: #176b35;
    padding: 13px 15px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-weight: 600;
}

.stm-form-error {
    background: #fff1f1;
    border: 1px solid #ffc9c9;
    color: #b42318;
    padding: 13px 15px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .stm-enquiry-form-wrap {
        padding: 20px;
        border-radius: 18px;
    }

    .stm-form-grid {
        grid-template-columns: 1fr;
    }

    .stm-enquiry-submit {
        width: 100%;
    }
}
.stm-enquiry-form-wrap {
    max-width: 900px;
    margin: 35px auto;
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.stm-enquiry-form-wrap h2 {
    margin: 0 0 8px;
    color: #002b66;
    font-size: 30px;
    font-weight: 800;
}

.stm-enquiry-subtitle {
    color: #555;
    margin-bottom: 22px;
    font-size: 15px;
}

.stm-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.stm-form-field {
    display: flex;
    flex-direction: column;
}

.stm-form-field-full {
    grid-column: 1 / -1;
}

.stm-form-field label {
    font-size: 14px;
    font-weight: 700;
    color: #002b66;
    margin-bottom: 7px;
}

.stm-form-field input,
.stm-form-field textarea {
    width: 100%;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    color: #222;
    background: #ffffff;
    outline: none;
}

.stm-form-field input:focus,
.stm-form-field textarea:focus {
    border-color: #ffb700;
    box-shadow: 0 0 0 3px rgba(255, 183, 0, 0.16);
}

.stm-enquiry-submit {
    margin-top: 20px;
    background: #002b66;
    color: #ffffff;
    border: none;
    border-radius: 40px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.stm-enquiry-submit:hover {
    opacity: 0.92;
}

.stm-form-success {
    background: #e9f8ef;
    border: 1px solid #bde8cb;
    color: #176b35;
    padding: 13px 15px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-weight: 600;
}

.stm-form-error {
    background: #fff1f1;
    border: 1px solid #ffc9c9;
    color: #b42318;
    padding: 13px 15px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .stm-enquiry-form-wrap {
        padding: 20px;
        border-radius: 18px;
    }

    .stm-form-grid {
        grid-template-columns: 1fr;
    }

    .stm-enquiry-submit {
        width: 100%;
    }
}