/* Wrapper & Tabs */
.dsm-tabs-wrapper {
    background: #fff;
    /* Optional: border or shadow container */
}

.dsm-ctab-bar {
    background: #fff;
    border-bottom: 2px solid #e8e4dd;
    display: flex;
    margin-bottom: 0;
    overflow-x: auto; /* Scrollable on small screens */
}

.dsm-ctab {
    padding: 16px 28px;
    font-size: 13px;
    font-weight: 600;
    color: #6e6860;
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-family: 'Instrument Sans', sans-serif;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.dsm-ctab:hover {
    color: #0d1f35;
}

.dsm-ctab.active {
    color: #0e7c6e;
    border-bottom: 2px solid #0e7c6e;
}

/* Panels */
.dsm-cpanel {
    display: none;
    grid-template-columns: 1fr 380px;
    animation: fadeIn 0.3s ease;
}

.dsm-cpanel.active {
    display: grid;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Main Content Area (Form) */
.dsm-cpanel-main {
    padding: 48px 56px;
    border-right: 1px solid #e8e4dd;
}

.dsm-form-title {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: #0d1f35;
    margin-bottom: 20px;
}

/* Sidebar Area */
.dsm-sidebar {
    padding: 48px 40px;
    background: #f7f4ef;
}

.dsm-sidebar-title {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    color: #0d1f35;
    margin-bottom: 20px;
}

/* Contact Items (Sidebar) */
.dsm-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e4dd;
}

.dsm-contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.dsm-icon-box {
    width: 38px;
    height: 38px;
    background: rgba(18, 160, 142, 0.13); /* #12a08e22 */
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.dsm-item-label {
    font-size: 12px;
    font-weight: 600;
    color: #0d1f35;
    margin-bottom: 3px;
    margin-top: 0;
}

.dsm-item-content {
    font-size: 12px;
}

/* Form Styles Override (Normalization) */
.dsm-cpanel-main input[type="text"],
.dsm-cpanel-main input[type="email"],
.dsm-cpanel-main input[type="tel"],
.dsm-cpanel-main textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    background-color: #f9f9f9;
    font-size: 14px;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.dsm-cpanel-main input[type="submit"] {
    padding: 12px 24px;
    background-color: #0D1F35;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dsm-cpanel-main input[type="submit"]:hover {
    background-color: #254D7A;
}

/* Responsive */
@media (max-width: 991px) {
    .dsm-cpanel, .dsm-cpanel.active {
        grid-template-columns: 1fr; /* Stack vertically on tablet/mobile */
        display: flex; /* Fallback/Override grid */
        flex-direction: column;
    }

    .dsm-cpanel-main {
        border-right: none;
        border-bottom: 1px solid #e8e4dd;
        padding: 32px 24px;
    }

    .dsm-sidebar {
        padding: 32px 24px;
    }
}
