.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-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%;
    }
}

.stm-visa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 30px 0;
}

.stm-visa-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-visa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.stm-visa-card-top {
    background: #002b66;
    padding: 18px 20px;
}

.stm-visa-country {
    display: inline-block;
    background: #ffb700;
    color: #000000;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
}

.stm-visa-card-body {
    padding: 22px;
}

.stm-visa-title {
    margin: 0 0 8px;
    color: #002b66;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.3;
}

.stm-visa-type {
    display: inline-block;
    background: #f4f6f8;
    color: #333333;
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.stm-visa-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.stm-visa-info-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px dashed #d9e2ec;
    padding-bottom: 8px;
    font-size: 14px;
}

.stm-visa-info-item strong {
    color: #002b66;
}

.stm-visa-info-item span {
    color: #444444;
    text-align: right;
}

.stm-visa-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stm-visa-btn {
    display: inline-block;
    padding: 11px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    line-height: 1;
}

.stm-visa-btn-primary {
    background: #002b66;
    color: #ffffff;
}

.stm-visa-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.stm-visa-btn:hover {
    opacity: 0.92;
    color: inherit;
}

.stm-no-visa-services,
.stm-visa-error {
    background: #fff8e5;
    border: 1px solid #ffe1a3;
    color: #6f4a00;
    padding: 18px;
    border-radius: 12px;
    margin: 25px 0;
}

.stm-visa-detail-wrap {
    max-width: 1120px;
    margin: 40px auto;
    padding: 0 15px;
}

.stm-visa-detail-hero {
    background: linear-gradient(135deg, #002b66, #004ba8);
    border-radius: 24px;
    padding: 38px;
    color: #ffffff;
    margin-bottom: 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.stm-visa-detail-country {
    display: inline-block;
    background: #ffb700;
    color: #000000;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 15px;
}

.stm-visa-detail-title {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 10px;
    font-weight: 900;
}

.stm-visa-detail-subtitle {
    color: #eaf2ff;
    font-size: 18px;
    margin: 0 0 24px;
}

.stm-visa-detail-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.stm-visa-detail-meta div {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    padding: 14px;
}

.stm-visa-detail-meta strong {
    display: block;
    font-size: 13px;
    color: #ffdd75;
    margin-bottom: 6px;
}

.stm-visa-detail-meta span {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.stm-visa-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.stm-visa-detail-btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 900;
    font-size: 15px;
}

.stm-visa-detail-btn-primary {
    background: #ffb700;
    color: #000000;
}

.stm-visa-detail-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.stm-visa-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-visa-detail-section h2 {
    font-size: 26px;
    color: #002b66;
    margin: 0 0 14px;
    font-weight: 800;
}

.stm-visa-detail-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444444;
}

.stm-visa-doc-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.stm-visa-doc-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 11px;
    font-size: 15px;
    line-height: 1.6;
    color: #444444;
}

.stm-visa-doc-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #149447;
    font-weight: 900;
}

@media (max-width: 1024px) {
    .stm-visa-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stm-visa-detail-meta {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .stm-visa-grid {
        grid-template-columns: 1fr;
    }

    .stm-visa-detail-hero {
        padding: 26px 20px;
        border-radius: 20px;
    }

    .stm-visa-detail-title {
        font-size: 30px;
    }

    .stm-visa-detail-meta {
        grid-template-columns: 1fr;
    }

    .stm-visa-detail-actions {
        flex-direction: column;
    }

    .stm-visa-detail-btn,
    .stm-visa-btn {
        width: 100%;
        text-align: center;
    }

    .stm-visa-info-item {
        flex-direction: column;
    }

    .stm-visa-info-item span {
        text-align: left;
    }
}

.stm-customer-dashboard-wrap {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 15px;
}

.stm-customer-dashboard-header {
    background: linear-gradient(135deg, #002b66, #004ba8);
    color: #ffffff;
    padding: 35px;
    border-radius: 22px;
    margin-bottom: 25px;
    text-align: center;
}

.stm-customer-dashboard-header h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 36px;
    font-weight: 900;
}

.stm-customer-dashboard-header p {
    margin: 0;
    color: #eaf2ff;
    font-size: 16px;
}

.stm-customer-booking-form {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid #edf2f7;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.stm-customer-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.stm-customer-form-field label {
    display: block;
    font-weight: 800;
    color: #002b66;
    margin-bottom: 8px;
}

.stm-customer-form-field input {
    width: 100%;
    height: 48px;
    border: 1px solid #d8e1ec;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 15px;
}

.stm-customer-submit {
    margin-top: 22px;
    background: #002b66;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 40px;
    font-weight: 900;
    cursor: pointer;
}

.stm-customer-error {
    background: #f8d7da;
    color: #842029;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #f5c2c7;
}

.stm-customer-booking-found {
    margin-top: 25px;
}

.stm-customer-booking-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid #edf2f7;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.stm-customer-booking-title h3 {
    margin: 0;
    color: #002b66;
    font-size: 26px;
}

.stm-customer-booking-title span {
    background: #ffb700;
    color: #000000;
    padding: 8px 14px;
    border-radius: 30px;
    font-weight: 900;
}

.stm-customer-summary-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 25px;
}

.stm-customer-summary-card {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-left: 5px solid #002b66;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.stm-customer-summary-card span {
    display: block;
    font-size: 13px;
    color: #64748b;
    font-weight: 800;
    margin-bottom: 8px;
}

.stm-customer-summary-card strong {
    display: block;
    font-size: 23px;
    color: #002b66;
}

.stm-customer-section {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.stm-customer-section h3 {
    margin: 0 0 18px;
    color: #002b66;
    font-size: 24px;
    font-weight: 900;
}

.stm-customer-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.stm-customer-info-grid div {
    background: #f8fafc;
    padding: 14px;
    border-radius: 12px;
}

.stm-customer-info-grid strong {
    display: block;
    color: #002b66;
    font-size: 13px;
    margin-bottom: 6px;
}

.stm-customer-info-grid span {
    display: block;
    color: #333333;
    font-size: 15px;
}

.stm-customer-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.stm-customer-table th,
.stm-customer-table td {
    border: 1px solid #e5e7eb;
    padding: 12px;
    text-align: left;
}

.stm-customer-table th {
    background: #002b66;
    color: #ffffff;
    font-weight: 800;
}

.stm-customer-table tr:nth-child(even) {
    background: #f8fafc;
}

.stm-customer-table a {
    color: #002b66;
    font-weight: 800;
    text-decoration: none;
}

.stm-customer-back {
    text-align: center;
    margin-top: 25px;
}

.stm-customer-back-btn {
    display: inline-block;
    background: #002b66;
    color: #ffffff;
    padding: 13px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 900;
}

.stm-customer-back-btn:hover {
    color: #ffffff;
    opacity: 0.92;
}

@media (max-width: 1024px) {
    .stm-customer-summary-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .stm-customer-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .stm-customer-dashboard-header {
        padding: 25px 18px;
    }

    .stm-customer-dashboard-header h2 {
        font-size: 28px;
    }

    .stm-customer-form-grid,
    .stm-customer-summary-cards {
        grid-template-columns: 1fr;
    }

    .stm-customer-booking-title {
        display: block;
    }

    .stm-customer-booking-title span {
        display: inline-block;
        margin-top: 12px;
    }

    .stm-customer-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

.stm-document-upload-wrap {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
}

.stm-document-upload-header {
    background: linear-gradient(135deg, #002b66, #004ba8);
    color: #ffffff;
    padding: 35px;
    border-radius: 22px;
    margin-bottom: 25px;
    text-align: center;
}

.stm-document-upload-header h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 900;
    margin: 0 0 10px;
}

.stm-document-upload-header p {
    margin: 0;
    color: #eaf2ff;
    font-size: 16px;
}

.stm-document-upload-form {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.stm-document-upload-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.stm-document-upload-field-full {
    grid-column: 1 / -1;
}

.stm-document-upload-field label {
    display: block;
    font-weight: 800;
    color: #002b66;
    margin-bottom: 8px;
}

.stm-document-upload-field input,
.stm-document-upload-field select,
.stm-document-upload-field textarea {
    width: 100%;
    border: 1px solid #d8e1ec;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
}

.stm-document-upload-field input,
.stm-document-upload-field select {
    height: 48px;
}

.stm-document-upload-field textarea {
    resize: vertical;
}

.stm-document-upload-note {
    font-size: 13px;
    color: #64748b;
    margin: 8px 0 0;
}

.stm-document-upload-submit {
    margin-top: 22px;
    background: #002b66;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 40px;
    font-weight: 900;
    cursor: pointer;
}

.stm-document-upload-submit:hover {
    opacity: 0.92;
}

.stm-document-upload-success {
    background: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.stm-document-upload-error {
    background: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .stm-document-upload-header {
        padding: 25px 18px;
    }

    .stm-document-upload-header h2 {
        font-size: 28px;
    }

    .stm-document-upload-grid {
        grid-template-columns: 1fr;
    }
}
